Example 2.
Factorize a polynomial 25x
3 + 35x
2 - 24x - 36.
Solution.
Divisors of the free term: ±1, ±2, ±3, ... .
Divisors of the leading coefficient: ±1, ±5, ±25.
This means that we will look for the roots of the original polynomial among the numbers: ±1, ±2, ±3, ... , ±1/2, ±1/5; ... .
Again, by simple substitution we verify that 1 is the root of the polynomial. Using the Horner's scheme, we divide the original polynomial by x - 1:

Thus, 25x
3 + 35x
2 - 24x - 36= (x + 1)(25x
2 + 60x + 36). But a square trinomial 25x
2 + 60x + 36 = (5x + 6)
2.
Answer: 25x
3 + 35x
2 - 24x - 36= (x - 1)(5x + 6)
2.
Example 3.
Factorize a polynomial 6x
3 + x
2 - 11x - 6.
Solution.
A simple substitution shows that -1 is a root of the polynomial. Using Horner's scheme, we divide the original polynomial by x + 1:

Solving a quadratic equation 6x
2 - 5x - 6 = 0, we get,

Hence, 6x
2 - 5x - 6 = 6(x - 2/3)(x - 3/2).
Thus, 6x
3 + x
2 - 11x - 6 = 6(x + 1)(x - 2/3)(x - 3/2).
Answer: 6x
3 + x
2 - 11x - 6 = (x + 1)(3x - 2)(2x - 3).