Horners Form

Purpose: to minimize the amount to mul calls in a program.

Examples
BeforeTotal Mul callsAfterTotal Mul calls
5x^3 + 4x^2 + 3x + 26((5x + 4)x + 3)x + 23
6x^4 + 3x^2 + 8x + 17((6x^2 + 3)x + 8)x + 14
6x^4 + 2x^3 + 3x^2 + 8x + 110((6x + 2)x + 3)x + 8)x + 14