Three primes, represented by p , q , and r , satisfy the equation below:
p q + q p = r p − q
Find the minimum value of p + q + r .
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.
How can you be sure that for other values of p , q , say p = 3 , q = 5 , we can't have a small r like r = 7 that makes the sum smaller? (Of course, ( p , q , r ) = ( 3 , 5 , 7 ) doesn't satisfy, but you get the idea.)
Log in to reply
r ⩾ 2 ⇒ p > q
First : If q > 2
q p is odd & p q is odd too → 2 q p + p q ∈ N → r=2 → p q + q p = 2 p − q but q p > 2 p − q ⇒ p q + q p > 2 p − q
second : If q = 2
p = 3 ⇒ r = 1 7
p > 3 then p= n ± 1 (n: 3 n ∈ N ) , p 2 + 2 p = ( n ± 1 ) 2 + 2 p = n 2 ± 2 n + 1 + 2 p , 3 2 p + 1 ∈ N ( p is prime greater than 2 ) → 3 n 2 ± 2 n + 1 + 2 p ∈ N → r = 3 this gives two statements:
1 . p = 5 ⇒ 5 2 + 2 5 = 3 5 − 2
2 . p > 5 ⇒ p 2 + 2 p < 3 p − 2
∴ Hence: p = 3 , q = 2 and r = 1 7 is the only solution
The left side is powered to two numbers while the right is powered to their difference; q and p ramp up much faster than p-q, so r gets bigger the bigger numbers you use
You're welcome to check, but I just didn't include that in my short solution. :D
Hey its just an instinct @Finn Hulse
Problem Loading...
Note Loading...
Set Loading...
Notice the other side of the equation r p − q . We can't have this equal to zero, because that would evaluate to one, which can't be expressed as the sum of prime powers. Also, it can't be negative, thus q < p . Now let us examine the smallest possible cases. The two smallest primes are two and three. If we set these two values as p and q , then their difference is one, and r becomes seventeen, which is prime. The answer is therefore 1 7 + 3 + 2 = 2 2 .