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 件のコメント

Fangjun Jiang
Fangjun Jiang 2018 年 10 月 5 日
編集済み: Fangjun Jiang 2018 年 10 月 5 日
come on, you can do it yourself, or a search will do
f(x)=(x^2 + 1)*(x^2 + 1)*(x^2 + 1)

サインインしてコメントする。

 採用された回答

Stephan
Stephan 2018 年 10 月 5 日

0 投票

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

1 件のコメント

gao peter
gao peter 2018 年 10 月 5 日
Thank you Stephan

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeEntering Commands についてさらに検索

質問済み:

2018 年 10 月 5 日

コメント済み:

2018 年 10 月 5 日

Community Treasure Hunt

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

Start Hunting!

Translated by