Understanding Horner's Method
Horner's method is a more efficient and simpler way to perform polynomial division, especially when the divisor is linear, like . This method can be considered a simplification of long division because it only involves writing coefficients and more concise multiplication and addition operations.
Comparison with Long Division
To see how Horner's method simplifies the process, let's compare the division of (or ) by using both methods:
Long Division:
Horner's Method:
Notice how Horner's method only focuses on the coefficients and the value . The bottom row in Horner's method directly gives the coefficients of the quotient , and the last number is the remainder.
This is much more concise than writing out all the variables and powers as in long division.
This method can only be directly used if the divisor is a linear polynomial of degree one, i.e., in the form or (which can be transformed).
Preparing to Use Horner's Method
Before performing division with Horner's method, there are several preparation steps:
-
Identify Coefficients of the Dividend ():
Write down all coefficients of the polynomial to be divided in order, starting from the term with the highest power down to the constant. Ensure no power is skipped. If a term with a certain power is missing, its coefficient is written as 0.
Example:
For , the coefficient of the term is 0. So, the coefficients we write in order are: .
-
Identify the Value from the Divisor ():
Determine the value of from the divisor polynomial. Remember, if the divisor is , the value used is . If the divisor is , it is equivalent to , so the value used is .
Example:
If the divisor is , then , so .
-
Set Up the Horner Scheme:
Draw the Horner scheme or diagram. Place the value on the left and write the coefficients of in the top row.
Division Process with Horner's Method
Here are the steps to perform division using the Horner scheme:
- Bring Down the First Coefficient: Bring down the first coefficient () directly to the result row (the bottom row).
- Multiply and Place: Multiply the coefficient just brought down by the value . Place the result under the second coefficient ().
- Add: Add the second coefficient () to the result from the previous step. Write the sum in the result row, directly below it.
- Repeat: Repeat step 2 (multiply by ) and step 3 (add to the coefficient above it) for all remaining coefficients.
- Final Result: The last number in the result row is the remainder (). The other numbers in the result row, from left to right, are the coefficients of the quotient polynomial (), starting from the power .
Using Horner's Method
Let's divide by using both methods.
Long Division:
Horner's Method:
-
Preparation:
- Coefficients of : (for ), (constant).
- The divisor is , so , thus .
-
Horner Process:
-
Scheme Explanation:
- Bring down the number 2 (coefficient of ).
- . Place -6 under 5.
- . Write -1 in the result row.
- . Place 3 under 0.
- . Write 3 in the result row.
- . Place -9 under 6.
- . Write -3 (remainder) in the result row on the far right.
-
Result:
- The last number in the result row is . This is the Remainder ().
- The other numbers are 2, -1, 3. These are the coefficients of the Quotient (). Since is degree 3, is degree 2.
- Thus, .
-
Writing in Division Algorithm Form:
Exercise
Find the quotient and remainder from the division of by using Horner's method and long division.
State the result in the form .
Answer Key
- Dividend: .
- Divisor: , so .
Long Division:
Horner's Method:
Result:
- Quotient: .
- Remainder: .
Writing in Division Algorithm Form: