I am going through the above topic from CLRS(CORMEN) (page 834) and I got stuck at this point.
Can anybody please explain how the following expression,
A(x)=A^{[0]}(x^2) +xA^{[1]}(x^2)
follows from,
n-1 `
Σ a_j x^j
j=0
Where,
A^{[0]} = a_0 + a_2x + a_4a^x ... a_{n-2}x^{\frac{n}{2-1}}
A^{[1]} = a_1 + a_3x + a_5a^x ... a_{n-1}x^{\frac{n}{2-1}}
The polynomial
A(x)is defined asTo start the divide-and-conquer strategy of polynomial multiplication by the FFT, CLRS introduces two new polynomials: one of the coefficients of the even-powers of
xcalledA[0]and one of the coefficients of the odd-powers ofxcalledA[1]Now if we substitute
x^2intoA[0]andA[1], we haveand if we multiply
A[1](x^2)byx, we haveNow if we add
A[0](x^2)andx A[1](x^2), we haveQ.E.D.