I have four order-2 polynomial equations in four unknowns. Call the unknowns x1,x2,x3,x4. I want only x1, and am not at all interested in the values of x2,x3,x4.
Obviously Solve[{…,…,…,…}, {x1,x2,x3,x4}] should give the answer and more. But takes a long time of CPU whirring: indeed, it hasn’t finished. Is there a way to tell Solve (or another function) that x2,x3,x4 are not to appear in the solution for x1, but that there is no need to solve for them? If so, please, how?
Indeed, I would much rather that Solve return the coefficients of the polynomial for x1, rather than returning the solution to that (perhaps high-order) polynomial. Can Solve also be instructed to do that?
Thank you.
Eliminatehelp speed up the computation? I have the following in mind:Solve[Eliminate[{…,…,…,…}, {x2,x3,x4}],x1]. Perhaps you could give us a working example? $\endgroup$GroebnerBasis[{equations}, x1, {x2, x3, x4}]? $\endgroup$