x^8+x^6+x^4+x^2+1因式分解
问题描述:
x^8+x^6+x^4+x^2+1因式分解
要有详细步骤.
答
syms x
>> factor(x^8+x^6+x^4+x^2+1)
ans =
(x^4-x^3+x^2-x+1)*(x^4+x^3+x^2+x+1)
MATLAB编程所得结果!