如何用Mathematica解不等式
问题描述:
如何用Mathematica解不等式
例如解x^2>5x
Solve[x^2>5x,x]
答
不对.要用Reduce函数.
In[1]:= Reduce[x^2 > 5x,x]
Out[1]= x 5
其中,“||”表示“或者”,“&&”表示“而且”.