I have a question related to writing a polynomial using powers of binomial of form $(x-a).$
I found an example: polynomial $P(x) = x^4 + 2x^3-3x^2-4x+1$ can be written as $ (x+1)^4-2(x+1)^3-3(x+1)^2+4(x+1)+1$ using powers of $(x+1)$ and Horner's Method. How do we obtain this representation of polynomial? How is Horner's Method used for that?