Possibility of solving a certain 4D system with 4 equations with certain methods

quadraticssystems of equations

Can the system
\begin{align}
x+y& =a\\
x^2+b& =z^2\\
y^2+c&=w^2\\
dzy&=wx
\end{align}

(with $x,y,z,w,a,b,c,d >0$) be solved for $x, y, w$ and $z$ by hand without cubics (which I could solve… but yikes) or quartics, and using only elementary functions? I was challenged to find a simple solution but after alot of manipulating I'm starting to think it's not possible. I know that once you solve for one variable you can use one of the first three equations to isolate another easily with only roots and etc., and then do that again with the variable you just found until you have them all. The trouble is in getting just one of these variables.

I've tried squaring both sides of the fourth equation and writing in terms of x and y, then using the first equation to get just x, by that left me with a bad quartic. I also though because of the elegance of the second and third equation I'd try some hyperbolic trig subs with two auxilarily variables but that didn't get anything new either. Neither did adding some of these equations, as I assume this is because you're using inputs and information from the same two equations.

I don't mind if Galois theory or anything is used in the answer, but I probably won't understand it (at least, not yet ;)).

Best Answer

As you didn't show your results, I'll redo the computation.

Let us substitue the RHS of the two middle equations in the fourth, squared:

$$d^2(x^2+b)y^2=(y^2+c)x^2,$$ or

$$(d^2b-x^2)y^2=(c-d^2)x^2.$$

Then, from the first equation,

$$y^2=(a-x)^2$$

and finally, eliminating $y$,

$$(c-d^2)x^2=(d^2b-x^2)(a-x)^2.$$

This confirms that the problem is of the quartic degree and has an analytical solution, but the formulas are terrible and hardly manageable by hand.

And as the polynomial has three independent coefficients, there is no reason that any simplification occurs and you won't find any simpler analytical resolution (otherwise, you would revolutionize the Galoi's theory).


The other option is to resort to numerical methods, but whether this is feasible by hand is unsure, and it is only doable for particular values of the parameters $a,b,c,d$.

Related Question