Find the largest number of five different digits such that , , and are prime numbers.
Gives in response
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
a b , b c , c d and d e , are all prime. Since all prime numbers greater than 2 end in 1 , 3 , 7 , 9 , ( b , c , d , e ) = ( 1 , 3 , 7 , 9 ) in some order. Note that 0 2 cannot be one of the prime numbers, since this would make the previous prime number end in 0 which is impossible. Another possibility is that a b = 0 2 , but this would produce a number with 4 digits, and since we can find a greater example, this is not the case.
Now, since ( b , c , d , e ) = ( 1 , 3 , 7 , 9 ) , we want to maximise a in order to find the largest number. The largest possible value of a is 8 , and placing the other digits in descending order to maximise the number, we get the number 8 9 7 3 1 . By checking, this satisfies the rules, and since it is the upper bound, the answer is 8 + 9 + 7 + 3 + 1 = 2 8