Difference between revisions of "2008 JBMO Problems/Problem 3"

(Created page with "==Problem== Find all prime numbers <math> p,q,r</math>, such that <math> \frac{p}{q}-\frac{4}{r+1}=1</math> == Solution == The given equation can be rearranged into the be...")
 
(Solution)
 
Line 53: Line 53:
 
So, <math>q = 3k</math>
 
So, <math>q = 3k</math>
 
<math>=> k = 1 => q = 3, p = 5</math> and <math>r = 5</math>
 
<math>=> k = 1 => q = 3, p = 5</math> and <math>r = 5</math>
 
  
 
Thus we have the following solutions: <math>(7, 3, 2), (3, 2, 7), (5, 3, 5)</math>
 
Thus we have the following solutions: <math>(7, 3, 2), (3, 2, 7), (5, 3, 5)</math>
Line 59: Line 58:
  
 
<math>Kris17</math>
 
<math>Kris17</math>
 +
 +
== Solution 2 (similar to Solution 1, credit to dskull16) ==
 +
 +
The equation can be rearranged into this form
 +
 +
<math>\frac{p(r+1)-4q}{q(r+1)} = 1</math>
 +
<math>\implies p(r+1)-4q = q(r+1)</math>
 +
<math>\implies (p-q)(r+1) = 4q</math>
 +
 +
By the nature of primes this means that either q divides (p-q) or (r+1) and if q divides (p-q) then that means that q divides p which is a contradiction since any two primes have a GCD of 1 meaning that q divides <math>(r+1)</math>. We can easily deal with the case where r is 2 but this gives a contradiction since we get that <math>p=6</math> where it needs to be prime.
 +
 +
<math>(r+1) = kq, k \in \mathbb{N}</math>
 +
<math>\implies (p-q)(kq) = 4q</math>
 +
<math>\implies (p-q)k = 4</math>
 +
 +
In the case k is 4, we get that p and q have a difference of 1 meaning that <math>p=3, q=2</math> and therefore <math>r=7</math> which clearly works.
 +
 +
In the case that k is 2, we get that p and q have a difference of 2 meaning that <math>p=5, q=2</math> and therefore <math>r=3</math> which also works.
 +
 +
In the case that k is 1, we get that p and q have a difference of 4 meaning that <math>p=7, q=3</math> and therefore <math>r=5</math> which works too and is our final solution.

Latest revision as of 17:40, 3 March 2024

Problem

Find all prime numbers $p,q,r$, such that $\frac{p}{q}-\frac{4}{r+1}=1$


Solution

The given equation can be rearranged into the below form:

$4q = (p-q)(r+1)$


$Case 1: 4|(p-q)$

then we have

$q = ((p-q)/4)(r+1)$ $=> (p-q)/4 = 1$ and $q = r + 1$ $=> r = 2, q = 3$ and $p = 7$


$Case 2: 4|(r+1)$

then we have

$q = (p-q)((r+1)/4)$ $=> (p-q) = 1$ and $q = (r + 1)/4$ $=> p = q + 1 => q = 2, p = 3$ and $r = 7$

note that if $(r+1)/4 = 1$, then $q = (p-q) => p = 2q$ which is a contradiction.


$Case 3: 2|(p-q)$ and $2|(r+1)$

then we have

$q = ((p-q)/2)((r+1)/2)$ $=> (p-q)/2 = 1$ and $q = (r+1)/2$ $=> p = q + 2$ and $r = 2q - 1$ We have that exactly one of $q, q + 1, q + 2$ is a multiple of $3$.


$q + 1$ cannot be a multiple of $3$ since $q + 1 = 3k => q = 3k - 1$. Since $r = 2q - 1$ is prime, then we have $2(3k - 1) - 1 = 3(2k-1)$ is a prime. $=> k = 1 => q = 2 => p = 4$ contradiction.


Also, $q + 2$ cannot be a multiple of $3$ since, $q + 2 = 3k => p = 3k => k = 1 => q = 1$ contradiction.


So, $q = 3k$ $=> k = 1 => q = 3, p = 5$ and $r = 5$

Thus we have the following solutions: $(7, 3, 2), (3, 2, 7), (5, 3, 5)$


$Kris17$

Solution 2 (similar to Solution 1, credit to dskull16)

The equation can be rearranged into this form

$\frac{p(r+1)-4q}{q(r+1)} = 1$ $\implies p(r+1)-4q = q(r+1)$ $\implies (p-q)(r+1) = 4q$

By the nature of primes this means that either q divides (p-q) or (r+1) and if q divides (p-q) then that means that q divides p which is a contradiction since any two primes have a GCD of 1 meaning that q divides $(r+1)$. We can easily deal with the case where r is 2 but this gives a contradiction since we get that $p=6$ where it needs to be prime.

$(r+1) = kq, k \in \mathbb{N}$ $\implies (p-q)(kq) = 4q$ $\implies (p-q)k = 4$

In the case k is 4, we get that p and q have a difference of 1 meaning that $p=3, q=2$ and therefore $r=7$ which clearly works.

In the case that k is 2, we get that p and q have a difference of 2 meaning that $p=5, q=2$ and therefore $r=3$ which also works.

In the case that k is 1, we get that p and q have a difference of 4 meaning that $p=7, q=3$ and therefore $r=5$ which works too and is our final solution.