My problem is to find all solutions to an equation with 2 variables between two values that define the range of my search. e.g., $(x+y-y²)/(1-y-x²)=0$ with solutions ${x,y} \in \mathbb{Z}$.
Tell me more
×
Mathematica Stack Exchange is a question and answer site for
users of Mathematica. It's 100% free, no registration required.
|
The following might be of use:
To ease things, we consider the numerator and denominator separately. Here, we are asking Mathematica for conditions on integer
is useful as well. If you need examples, you can use
Change |
|||
|
You can obtain all integer solutions with
which gives
If you also want to restrict to solutions satisfying $x<15$ and $y<42$ then this works
|
|||


