I have this line of numbers:
xy + z = xz + y = yz + x
I need to find out all the possible values of x, y and z in this equation.
Thank you!:)
My usual problem when guessing this:
x = 1
y = 2
z = 2
1 * 2 + 2 = 1 * 2 + 2 != 2 * 2 + 1
And it is like so with any values I try that first 2 equations are true, but the last one isn't.
Taking cue from the results of @user133281, we have
$xy+z=xz+y$ implies $x(y-z) = y-z$, hence $y=z$ or $x=1$
$xz+y=yz+x$ implies $z(x-y) = x-y$, hence $x=y$ or $z=1$
$xy+z=yz+x$ implies $y(x-z) = x-z$, hence $x=z$ or $y=1$
So $x=y=z=1,2,3,4,...$ are the solutions.
However if one of the equalities does not hold, then
Hence the final solutions are $(x,y,z),(x,1,1),(1,y,1),(1,1,z)$ where $x,y,z$ are arbitrary..