如何提供仅引用方程而不是整个方程的 Matematica Solve 函数?
即假设我有多个方程式,例如:
eq1 = {x + y == 0}
eq2 = {x y - 2 == 0}
但是,当我尝试将它们放入 Solve 时,Matematica 会引发错误:
Solve[{eq1 && eq2}, {x, y}]
Solve::naqs: {x+y==0}&&{-2+x y==0} is not a quantified system of equations and inequalities.
同时,重写整个方程有效
Solve[x + y == 0 && x y - 1 == 0, {x, y}]
{{x->-I,y->I},{x->I,y->-I}}
但是当方程的数量和复杂性增加时,它很快就会变得很麻烦。