As some of you might know,this is Brahmagupta's equation . How to find solution for this ? I mean integral solution? How to solve it using programming ?
I tried something like $x^2=1+92y^2$
$x=\sqrt{1+92y^2}$
Use brute force approach to check for every y ? Is there any better answer ?
As for the programming part, I thought I'd put up some simple brute force Python just as an example.
This outputs the first solution
Of course, as a brute force solution this code won't get you very far if, for example, you replaced 92 with larger numbers (or even if you replaced it by 61, for that matter).