I want to use Solve to find symbolic solutions of the following set of equations and get simplified or factorised symbolic solutions. The equations are
L1 = α a - (a + b) u - a v - a w - c u w L2 = b u - γ v + c u v + h u v L3 = γ v - h v w - e w sol1 = Solve[L1 == 0 && L2 == 0 && L3 == 0 && Element[{u, v, w}, Reals], {u, v, w}, Method -> Reduce] // Simplify - If I use
Method -> Reduce, it takes forever. - If I specify
Element[{u, v, w}, Reals], it returns no solution{}. - If I don't use
Element[{u, v, w}, Reals]andMethod -> Reduce, the answer is{...1...}.
Mathematica turned off after running few minutes.
How should I correct the command to get simplified/factored symbolic solutions?
Solve[L1 == 0 && L2 == 0 && L3 == 0]works. Why is this an unsatisfactory answer for you? $\endgroup$Element[{u,v,w},Reals]as an "equation" to solve. It is a condition. See the documentation. $\endgroup$ByteCount[ ]is 144990736 ("14.2.1 for Mac OS X ARM (64-bit) (March 16, 2025)"). This means that the "solution" obtained in this way is too complicated to be useful. $\endgroup$