求解R中的方程解

时间:2014-06-14 23:27:01

标签: r solution equations

我需要R给我这种非数字解决方案:

2*x = 2*y
solution { x = y }

你知道是否有一些包那样做? 提前谢谢!

1 个答案:

答案 0 :(得分:2)

试试这个:

> library(Ryacas)
> x <- Sym("x"); y <- Sym("y")
> Simplify(Solve(2*x == 2*y, x))
expression(list(x - y == 0))