Lowest prime number

150 Views Asked by At

Find a number greater than $3$ such that, divided by $8$, its diminished square of $1$ yields a prime for quotient.

I set up this equation: $\frac{(k^2 - 1)} {8} = p$, which would fall into a diophantine equation, at the end being $k = 7$ and $p = 6$. But that's not it.

2

There are 2 best solutions below

0
On BEST ANSWER

Using the equation that you found

$$\frac{k^2 - 1}{8} = p$$

multiply both sides by $8$ to form

$$k^2 - 1=8p$$

then consider the context of the question. You need to find a $k>3$ such that $k^2-1=8p$ for some prime number $p$. Testing $k=4$ would produce

$$15=8p \implies p=\frac{15}{8}$$

where $p=\frac{15}{8}$ isn't a prime number. Testing $k=5$ forms

$$24=8p \implies p=3$$

where $p=3$ is a prime number. As the question asked to find the smallest prime $p$ such that

$$k^2 - 1=8p$$

it is clear that testing higher values of $k$ would increase $p$. Therefore, the correct answer is $p=3$ and $k=5$.

0
On

If $k$ is odd, using the equation $$\frac{(k^2 -1)}{8}=p$$ we can write, $k^2=8p+1$. Now $k$ is an integer whose square is of the form $8p+1$. One useful fact to note here is that , any integer of the form $8q+1$ is a square number if $q$ is a triangular number. Using this fact we can conlude that the quotient of $\frac{(k^2-1)}{8}$ is a triangular number and there is only one triangular number which is also a prime and that is $3$. So $p=3$ is not only the least but also the only prime quotient of $\frac{(k^2 -1)}{8}$. Substituting $p=3$ in the above equation you get $k=5$.

We do not consider the case of $k$ being even. Because then $k^2-1$ is not divisible by $8$ and $\frac{(k^2 -1)}{8}$ is not an integer.