2

Find all positive integer solutions $(a,b)$ such that $a^2=b^3+23$

I think there is no solution, yet I don't know how to prove it

Cis
  • 71

1 Answers1

5

This, again, is a special case of Mordell's equation. Some questions never die, do they?

$$y^2 = x^3 + 23$$

If $y$ is odd, then $x$ is $2 \pmod 4$, which is impossible as there is no such cube element in $\Bbb Z/4 \Bbb Z$, hence $y$ is even, and $x$ is odd. Precisely, $x$ is $1 \pmod 4$.

The general trick (after a lot of searching and fining no such tuple) is to make the right hand side factor on $\Bbb Z[x]$ :

$$y^2 = x^3 + 23$$

$$\Rightarrow y^2 + 4 = x^3 + 27 = (x + 3)(x^2 - 3x + 9)$$

The factor $x^2 - 3x + 9$ is obviously $3 \pmod 4$, and thus it has a prime factor of $3 \pmod 4$. But then $y^2 = -4 \pmod p$, which is impossible$(*)$

Sorry, but a necessary addition to convince myself I am not homework helping someone :

Exercise : Prove $(*)$

Balarka Sen
  • 13,910