level 2
12.2以前的版本吧?我这里运行出来的是这样的,12.3
In[1]:= Solve[{153.8229*x*y == x*y*z, 101.8218*x*z == x*y*z,
7.9535*(x*y + x*z + z*y) == x*y*z}, {x, y, z}]
\:6B63\:5728\:8BA1\:7B97In[1]:= Solve::ratnz: Solve was unable to solve the system with inexact coefficients. The answer was obtained by solving a corresponding exact system and numericizing the result.
\:6B63\:5728\:8BA1\:7B97In[1]:= Solve::svars: Equations may not give solutions for all "solve" variables.
Out[1]= {{x -> 0., y -> 0.}, {x -> 0., z -> 0.}, {y -> 0.,
z -> 0.}, {x -> 9.14004, y -> 101.822, z -> 153.823}}
第一个报错是说你写小数了,小数在mma中是inexactform,不过无伤大雅。
而且在数学意义上这个方程有两个未知量为一组特定值的时候第三个解随便取的情况,这就是第二个报错
2022年09月12日 14点09分

