How can I simplify the folllowing equation

1 view (last 30 days)
2*x^2 - 2*x*(2*x^2 - 1) + 2*x*(2*x*(2*x^2 - 1) - 2*x^2 + 1) - 1

Accepted Answer

Star Strider
Star Strider on 22 Sep 2021
One approach —
syms x
Eqn = 2*x^2 - 2*x*(2*x^2 - 1) + 2*x*(2*x*(2*x^2 - 1) - 2*x^2 + 1) - 1
Eqn = 
Eqn = simplify(Eqn, 500)
Eqn = 
.

More Answers (0)

Categories

Find more on Symbolic Math Toolbox in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!