how to simplify a algebra function

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

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

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)

Categories

Asked:

on 5 Oct 2018

Commented:

on 5 Oct 2018

Community Treasure Hunt

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

Start Hunting!