gpt4 book ai didi

wolfram-mathematica - "Not well-formed equation"使用 Mathematica 的求解

转载 作者:行者123 更新时间:2023-12-04 08:17:42 25 4
gpt4 key购买 nike

第一次使用 stackOverflow。 :)

我正在尝试使用 mathematica 来解决一些简单的多项式方程(假设在一个变量中)对变量有约束,例如 |x| < 1 .

当我尝试类似的事情时:

Solve[x^2 == 4 && x^2 < 1, x]

我收到一条错误消息,指出“x > 0 不是一个格式良好的方程”。

mathematica 求解页面甚至在倒数第二个示例中建议了这种语法,所以我很困惑。 (如果相关,我有第 7 版。)任何帮助将不胜感激。

谢谢!

最佳答案

Solve不应该解决不等式(M7)。您可以使用 Reduce要做到这一点:

In[2]:= Reduce[x^2 == 4 && x^2 < 1, x]

Out[2]= False

这是一个带有 Solve 的示例:
In[4]:= Solve[x^2 == 4 && x^4 == 16, x]

Out[4]= {{x -> -2}, {x -> 2}}

关于wolfram-mathematica - "Not well-formed equation"使用 Mathematica 的求解,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6282045/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com