I am trying to find rational points on this surface
$$ \left( \left( 1-x \right) ^{2}+{y}^{2} \right) \left( \left( 1+x \right) ^{2}+{y}^{2} \right) ={z}^{2}$$
I am actually only interested in points where both $x$ and $y$ are in the range of $\left(0..1\right)$.
There are trivial rational points at $\left(0,0,1\right)$, $\left(0,1,2\right)$, $\left(1,0,0\right)$, but I cannot figure out how to generalize a parameterization. Of particular interest are rational points in the interior of the surface and not the boundary anyways. It may also be the case that there actually are not any rational points on the interior of the surface in the range of interest, as well.
Is it possible to actually compute a solution to this, or even possible (tractable) to just prove that no rational solutions exist in the domain of interest?
I've taken a first stab at tagging this under algebraic geometry and rational numbers, but if anyone who can edit tags knows of better ones to use for this kind of problem, please feel free to update that information.
[edit]
I've flagged one of the answers below as helpful, because it most definitely is, and I will have to investigate it more deeply to determine if it helps me find out if using the formulation can ever reveal any solutions to the original rational problem where both $x$ and $y$ are in the $(0..1)$ range. Since that range is part of my original problem, I cannot actually say at this time that the helpful answer is my accepted answer until I have either found such an answer, or used that formulation to determine that no answers in the range of interest exist. I haven't investigated it very thoroughly yet, and it may take me a few hours to do so (I will provide an update on this question once I have done so), but I wanted to give an explanation for why I have not flagged what I must agree is the most informative answer as an accepted one at this time. Just to clear things up in advance, however, if no solutions in the range of interest can be found with the diophantine representation provided, is it possible that there may be another form that does have such solutions?
[edit2]
The good news is that using the diophantine formula seems good for solving the problem as I had phrased it... the bad news is that it turns out that there's a single additional algebraic requirement in the problem which I had completely forgotten to mention.
The single additional requirement is that $x^2+y^2$ must be the square of a rational number. I imagine this makes the problem probably many times harder than how I had originally phrased it and I apologize profusely for forgetting to mention this requirement initially. I can offer no excuse for this oversight beyond that this requirement was simply not at the forefront of my mind while I was typing a description of the problem here.
So given the additional requirement, is it still possible to compute a general rational expression for each of x, y, and z, or is it somehow possible (tractable) to determine that no rational points exist other than on the aforementioned boundary?
That is definitely all of the requirements, by the way... there really aren't any more. I feel genuinely embarrassed for not fully describing all of the algebraic requirements initially, and I again apologize for forgetting to mention this detail initially.


Is it possible to actually compute a solution to this? Maybe - it would be done by going through very small increments of x and for each one going through very small increments of y and calculating z as the square root of the LHS. This would be given to a fixed precision and so by default would be rational. However, if the decimal expansion terminated or repeated you would have found a rational point. If it failed you could do it again with smaller increments. Project Euler 26 is relevant to this.