how to simplify a algebra function

14 views (last 30 days)
Hi guys,
Could anyone help me on simplify this function? I wanna remove the brackets.
f(x)=(x^2 + 1)^3
Thank you
  1 Comment
Fangjun Jiang
Fangjun Jiang on 5 Oct 2018
Edited: Fangjun Jiang on 5 Oct 2018
come on, you can do it yourself, or a search will do
f(x)=(x^2 + 1)*(x^2 + 1)*(x^2 + 1)

Sign in to comment.

Accepted Answer

Stephan
Stephan on 5 Oct 2018
Hi,
syms f(x)
fun = f(x) == (x^2 + 1)^3
fun = collect(fun,x)
results in:
fun =
f(x) == (x^2 + 1)^3
fun =
f(x) == x^6 + 3*x^4 + 3*x^2 + 1

More Answers (0)

Community Treasure Hunt

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

Start Hunting!