Prime Product

The sum of two prime numbers is 85. What is the product of these two prime numbers?

Image Credit: Wikimedia Prime Rectangles Fredrik Johansson
115 115 91 91 133 133 85 85 166 166

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.

4 solutions

Danish Ahmed
Mar 15, 2015

85 85 must equal an odd plus even . The only even prime is 2 2 , so that means the other prime must be 85 2 = 83 85-2=83 . Therefore, the product is 83 2 = 166 83*2=166 .

Moderator note:

Nice use of parities.

Brock Brown
Mar 17, 2015

Python 2.7:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
def prime(n):
    if n <= 1:
        return False
    if n == 2:
        return True
    for test in xrange(2,n/2):
        if n % test == 0:
            return False
    return True
primes = []
for i in xrange(1,85):
    if prime(i):
        primes.append(i)
for m in primes:
    for n in primes:
        if m + n == 85:
            print "Answer:", m*n

you didn't have to do all that!

Aditya Pappula - 6 years, 2 months ago
Gamal Sultan
Mar 21, 2015

The only even prime number is 2 .

since the sum of two prime numbers is 85 (odd) .

Then one of the two prime numbers is even and the other is odd

so the two prime numbers are 2 , 83

Their product = 166

Chew-Seong Cheong
Mar 21, 2015

All primes less than 85 85 are odd numbers accept 2 2 . When 85 85 minus an odd number the result is an even number which is not a prime. Therefore, one of the two primes that add up to 85 85 must be 2 2 and the other 83 83 ; and their product 2 × 83 = 166 2\times 83 = \boxed{166} .

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...