How are polynomials represented in computers? Write an algorithm/flowchart to evaluate polynomial
p(x) = aₙxⁿ + aₙ₋₁xⁿ⁻¹ + …… + a₁x + a₀
A. Compare the efforts in multiplication numbers and additions of brute force method with recurrence relation method.
B. Write the recurrence relation of dividing this polynomial by (x − r).