top of page

Finding the zeroes of an equation means finding the x-values for which the function is equal to 0.
​
Let us set the function's value to 0 and rewrite the equation.
0 = x³ - 9x² + 23x - 15
​
Finding divisors of our constant term
​
1, 3, 5, 15
​
Brute Force
​
0 = 1 - 9 + 23 - 15 YEP
​
(x - 1) can be factored out
​
​

0 = (1)³ - 9(1)² + 23(1) - 15
(x³ - 9x² + 23x - 15) / (x - 1)
Ruffini's method

(x² - 8x + 15)(x - 1)
x² - 8x + 15 = 0
(x - 5)(x - 3) = 0
ZEROES
x = 1
x = 5
x = 3
(x - 5)(x - 3)(x - 1)
x - 1 = 0
x - 5 = 0
x - 3 = 0

prompt was x=1
bottom of page