To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

Ruffini's rule

From Wikipedia, the free encyclopedia

In mathematics, Ruffini's rule is a method for computation of the Euclidean division of a polynomial by a binomial of the form x – r. It was described by Paolo Ruffini in 1809.[1] The rule is a special case of synthetic division in which the divisor is a linear factor.

YouTube Encyclopedic

  • 1/5
    Views:
    7 661
    6 891
    1 983
    31 553
    1 439
  • Factorizing a polynomial using Ruffini's technique
  • Evaluating a polynomial (Ruffini's Rule)
  • Horner's Method 3: Why it works for polynomial long division
  • Nested Scheme - Horner’s Method - Evaluating Polynomials
  • AulaUE- How to apply Ruffini's rule

Transcription

Algorithm

The rule establishes a method for dividing the polynomial:

by the binomial:

to obtain the quotient polynomial:

The algorithm is in fact the long division of P(x) by Q(x).

To divide P(x) by Q(x):

  1. Take the coefficients of P(x) and write them down in order. Then, write r at the bottom-left edge just over the line:
  2. Pass the leftmost coefficient (an) to the bottom just under the line.
  3. Multiply the rightmost number under the line by r, and write it over the line and one position to the right.
  4. Add the two values just placed in the same column.
  5. Repeat steps 3 and 4 until no numbers remain.

The b values are the coefficients of the result (R(x)) polynomial, the degree of which is one less than that of P(x). The final value obtained, s, is the remainder. The polynomial remainder theorem asserts that the remainder is equal to P(r), the value of the polynomial at r.

Example

Here is an example of polynomial division as described above.

Let:

P(x) will be divided by Q(x) using Ruffini's rule. The main problem is that Q(x) is not a binomial of the form xr, but rather x + r. Q(x) must be rewritten as

Now the algorithm is applied:

  1. Write down the coefficients and r. Note that, as P(x) didn't contain a coefficient for x, 0 is written:
         |     2     3     0  |  -4
         |                    |               
      -1 |                    |               
     ----|--------------------|-------
         |                    |               
         |                    |               
    
  2. Pass the first coefficient down:
         |     2     3     0  |  -4
         |                    |               
      -1 |                    |               
     ----|--------------------|-------
         |     2              |               
         |                    |               
    
  3. Multiply the last obtained value by r:
         |     2     3     0  |  -4
         |                    |               
      -1 |          -2        |                
     ----|--------------------|-------
         |     2              |               
         |                    |               
    
  4. Add the values:
         |     2     3     0  |  -4
         |                    |
      -1 |          -2        |
     ----|--------------------|-------
         |     2     1        |
         |                    |               
    
  5. Repeat steps 3 and 4 until it's finished:
         |     2     3     0   | -4
         |                     |
      -1 |          -2    -1   |  1
     ----|----------------------------
         |     2     1    -1   | -3
         |{result coefficients}|{remainder}
    

So, if original number = divisor × quotient + remainder, then

, where
and

Application to polynomial factorization

Ruffini's rule can be used when one needs the quotient of a polynomial P by a binomial of the form (When one needs only the remainder, the polynomial remainder theorem provides a simpler method.)

A typical example, where one needs the quotient, is the factorization of a polynomial for which one knows a root r:

The remainder of the Euclidean division of by r is 0, and, if the quotient is the Euclidean division is written as

This gives a (possibly partial) factorization of which can be computed with Ruffini's rule. Then, can be further factored by factoring

The fundamental theorem of algebra states that every polynomial of positive degree has at least one complex root. The above process shows the fundamental theorem of algebra implies that every polynomial p(x) = anxn + an−1xn−1 + ⋯ + a1x + a0 can be factored as

where are complex numbers.

History

The method was invented by Paolo Ruffini, who took part in a competition organized by the Italian Scientific Society (of Forty). The challenge was to devise a method to find the roots of any polynomial. Five submissions were received. In 1804 Ruffini's was awarded first place and his method was published. He later published refinements of his work in 1807 and again in 1813.

See also

References

  1. ^ Cajori, Florian (1911). "Horner's method of approximation anticipated by Ruffini" (PDF). Bulletin of the American Mathematical Society. 17 (8): 389–444. doi:10.1090/s0002-9904-1911-02072-9.

External links

This page was last edited on 11 December 2023, at 10:54
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.