Long story short I am curious if there is a way to find all the cube roots that will result into square root when I add the number $7$ to the cube root. Or with simple example:
$5^3$ is $125$ but when I add $7$ to $125,$ the result is $132$...which doesn't have a square root (not integer...). So if $5$ doesn't work, then what number once put to $3$rd $n$ will give number that once added by $7$ will give square root?
Here is the motivation behind my question: This one (Elliptic curve equation example...):
$y^2 = x^3 +0x + 7$
or better:
$y^2 = x^3 + 7$
Has a solution: $y = \sqrt{x^3 + 7}$
And if x = any integer number without remainder (1,2,3,4,5,6...), how can I find all the values of y where y is also integer?
In other words: the "Square root" of $x^3 + 7$ should be really a square root (e.q. $16,25,49...$) and not decimal?
I am looking for a simple solution, possibly with the help of modulo/primes since $7$ is a prime (and I'm also hoping to use this programically later in python).
Also if such integer exists at all it seems to be a very big number. I just tried to see if I can modulo $y$ to $2$ and it seems that no integer solutions can be found (well on wolframalpha...) even with $2$ as modulo.
Paste the following two lines to this website and press "Evaluate".
You'll get the result that there is no integral point on this curve (or better, for this integral model).
This also appears in GTM 106, "The Arithmetic of Elliptic Curves" by Silverman, page 266, Proposition 7.1.
You'll find the proof there.