Advertisement
Guest User

Untitled

a guest
Oct 30th, 2014
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. One of the four primes must be 2. This is because the sum of four odd positive integers is
  2. even and bigger than 2, so cannot be prime. Similarly, 2 must be used in the pair. But 2 must
  3. not be used in the triple, otherwise its sum would be even and greater than 2.
  4. The triple must sum to a prime that is also 2 smaller than a prime, so that the four chosen
  5. numbers sum to a prime. The sum of the three smallest odd primes is ,
  6. which is not prime, and so the sum of the triple must be greater than 15. The possible sums
  7. are therefore 17, 29, 41, . . .. In order to have sum 17, one of the numbers 3, 5 or 7 must be
  8. increased by 2. However, 3 and 5 cannot be increased by 2 as this would mean the primes in
  9. the triple are not all different, and 7 cannot be increased by 2 as 9 is not prime. Thus the
  10. triple cannot have sum 17. It is possible, however, to find three primes that sum to 29. For
  11. example, 5, 7 and 17.
  12. 3 + 5 + 7 = 15
  13. Therefore the smallest possible sum of the four primes is 29 + 2 = 31. (And an example
  14. of four primes with all of the desired properties is ; the pair could then be
  15. and the triple .)
  16. {2, 5, 7, 17}
  17. {2, 5} {5, 7, 17}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement