Cant simplify an algebraic equation

1 次查看(过去 30 天)
Hello,
I can't simplify this equation:
g(x) = (A*(x + 1)^3 + C*(x + 1)^3 + B*(x - 1)*(x + 1)^2)/((x - 1)*(x + 1)^3)
I tried to use
simplify(g(x))
But It doesn't work.

采纳的回答

Star Strider
Star Strider 2018-10-24
It seems to slimplify nicely for me:
syms A B C x
g(x) = (A*(x + 1)^3 + C*(x + 1)^3 + B*(x - 1)*(x + 1)^2)/((x - 1)*(x + 1)^3);
g = simplify(g, 'Steps', 20)
g(x) =
A/(x - 1) + B/(x + 1) + C/(x - 1)
Do you want something different?

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Number Theory 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by