如何用参数求解多项式方程?

时间:2017-10-23 19:25:33

标签: r equation-solving

我在x中有一个多项式方程,其中有一个附加参数。我的目标是用R解决它,使得我在一侧有x,而在另一侧有参数项。这是一个简化的例子:

enter image description here

现在,我想让R提出来:

enter image description here

怎么做?

1 个答案:

答案 0 :(得分:1)

你可以使用Ryacas软件包,如下所示:

require("Ryacas")
x <- Sym("x")
t <- Sym("t")
yacas("Solve(4*x^2*t == 3, x)")

this link了解有关此软件包的更多信息。