标签: r solution equations
我需要R给我这种非数字解决方案:
2*x = 2*y solution { x = y }
你知道是否有一些包那样做? 提前谢谢!
答案 0 :(得分:2)
试试这个:
> library(Ryacas) > x <- Sym("x"); y <- Sym("y") > Simplify(Solve(2*x == 2*y, x)) expression(list(x - y == 0))