I want to solve this system but I can't
Solve[(1 - x^2) (-W - 3 x + Sqrt[6] Sqrt[z])
==
-W^4 x (-1 + x^2) y +
3 W y (W^3 (-1 + x^2) (-1 + Sqrt[1 - x^2] y) -
6 Sqrt[6] (y + Sqrt[1 - x^2] (-1 + z))^2 Sqrt[z] +
W^3 (-1 + x^2) z)
==
9 Sqrt[6] (y + Sqrt[1 - x^2] (-1 + z))^2 (1 - 2 z) Sqrt[z]
-1/3 W^3 (-1 + x^2) z (Sqrt[6] W x
- 9 (-1 + Sqrt[1 - x^2] y + z))
==
3 W (W^3 (-1 + x^2) (-1 + Sqrt[1 - x^2] y) -
6 Sqrt[6] (y + Sqrt[1 - x^2] (-1 + z))^2 Sqrt[z] +
W^3 (-1 + x^2) z)
== 0, {x, y, z, W}]
Equalsigns.Consider breaking up the successive equalities into their corresponding parts ie transformx==y==zinto{x==y,y==z,x==z}– user42582 Oct 26 '16 at 07:59LogicalExpand.) I believe that reason whySolveis so slow that after eliminating all the square roots it ends up with a high order polynomial system of equations with complicated coefficients. It is simply too slow to work with such large expressions. This also means that the solution would look uselessly complicated, so it's not worth computing the exact symbolic result. – Szabolcs Oct 26 '16 at 08:52Solve. On my machine it keeps hovering around 1 GB (going up and down) after running for a couple of minutes. – Szabolcs Oct 26 '16 at 08:54NSolve. It also took a long time but it finished and found 967 solutions. I don't know if this solution set is exhaustive. – Szabolcs Oct 26 '16 at 10:10W? see if you get any solutions if you divide eq 2&4 byW.. ( You must have a better computer than me! ) – george2079 Oct 26 '16 at 15:07NSolvemight not recognize that it has an infinite solution set with one and two dimensional components. – Daniel Lichtblau Oct 26 '16 at 16:34