Horner's method
Horner’s method is an efficient algorithm for evaluating polynomials. It rewrites a polynomial in a nested form to minimize the number of multiplications required.
This nested form allows the polynomial to be evaluated using only multiplications and additions, making it more efficient than the standard form, which requires multiplications, or with incremental powers.