Mathematica:保留为常数

时间:2019-05-09 18:31:58

标签: wolfram-mathematica

我打算使用Mathematica简化具有三个变量(s,a,b)的方程式:

In[3]:= f[s_] := ((1/4)*(s + s^2 + s^3 + s^4)*[a*(s^3 - s) + 
  b*(s^3 - s^2)])/(s^3 - (1/4)*(s + s^2 + s^3 + s^4))

In[4]:= Simplify[f[s_]]
Out[4]:= s_ (1 + s_ + s_^2)

如您所见,在简化版本中没有'a'和'b'。我确信在简化过程中不应删除它们。我想知道我在想什么...

预先感谢您!

1 个答案:

答案 0 :(得分:0)

方括号在Mathematica中具有非常精确的含义,不能代替括号。同样,下划线只能以非常特定的方式使用。

尝试一下

f[s_] := (1/4*(s+s^2+s^3+s^4)*(a*(s^3-s)+b*(s^3-s^2)))/(s^3-1/4*(s+s^2+s^3+s^4));
Simplify[f[s]]

这给你这个

-((s*(a + a*s + b*s)*(1 + s + s^2 + s^3))/(-1 - 2*s + s^2))