12347 - 65393 ++-- [solution next - omitted for spoiler reasons] I was more surprised about how little trial and error I needed to find primes than about how few guesses it actually took...
Same, I was so surprised to get it solved at the second row, after ~8 attempts to find a prime without the numbers that had not matched. 12347 - [solved]
Primel – guess a 5 digit prime number – each guess must be a prime
31–40 of 139 posts
Re: Primel – guess a 5 digit prime number – each guess must be a prime
#32So are people just really good with numbers? I don't know any 5 digit primes nor do I know a way to calculate them on the fly.
apparently 9.3% of all '5 digit' numbers are prime, so random guessing isn't a bad strategy - you'll find one in 10.75 totally randomly chosen numbers to be prime. Being a little smarter, prime number can only end in a 1, 3, 7 or 9 - (ending in 0, 2, 4, 6, 8 would be even, ending in 5 would be odd), so in fact it's more like 25% of 'likely' guesses.
Does work _much_ better in this range than at crypto sizes though.
Re: Primel – guess a 5 digit prime number – each guess must be a prime
#33 45677
56779 (Didn't read the instructions, the 5 should have stayed from 1st)
15809
35869
65839 (Solved)
EDIT: I'm slow today, just realized they are both the same primes.Re: Primel – guess a 5 digit prime number – each guess must be a prime
#34Earlier quoted context omitted.
Same, I was so surprised to get it solved at the second row, after ~8 attempts to find a prime without the numbers that had not matched. 12347 - [solved]
It seems a lot of us came up with 12347 for the first line.
Edit: I checked, it's 9 vs 8 primes. But nearby prefixes also have more and there's a lot of variance. Still, there are overall more primes among the same range of smaller numbers (1000-5499 has ~4400 primes, 5500-99999 has ~4000).
Note that, despite this, you probably shouldn't include 0 in the starting guess (e.g. 10247) because 0 will be in the solution less frequently (can't be the leading digit), meaning you gain less info on average.
Re: Primel – guess a 5 digit prime number – each guess must be a prime
#35Re: Primel – guess a 5 digit prime number – each guess must be a prime
#36Also, might want to disable text selection via css because I kept selecting the numbers on the button on my phone.
Re: Primel – guess a 5 digit prime number – each guess must be a prime
#37So are people just really good with numbers? I don't know any 5 digit primes nor do I know a way to calculate them on the fly.