The Remainder and Factor Theorems, plus Vieta's formulas — tools that extract information about a polynomial's roots without ever solving for them.
Remainder and Factor Theorems
If you divide a polynomial f(x) by (x−a), the remainder is just f(a)— no long division required:
f(x)=(x−a)q(x)+f(a)
A direct consequence is the Factor Theorem: (x−a) is a factor of f(x) exactly when f(a)=0. This is the fastest way to test a candidate root — plug it in, and if you get zero, you know (x−a) divides out cleanly.
Vieta's formulas
Vieta's formulas relate a polynomial's coefficients directly to sums and products of its roots, without requiring you to find the roots themselves. For a quadratic ax2+bx+c with rootsr,s:
r+s=−ab,rs=ac
For a cubic ax3+bx2+cx+d with roots r,s,t:
r+s+t=−ab,rs+st+tr=ac,rst=−ad
These are especially powerful when a problem asks for a symmetric combination of the roots (like r2+s2 or r1+s1) — you can often express the answer purely in terms of the sum and product, skipping the roots entirely.
Worked example
Problem: If r and s are the roots of 2x2−7x+3=0, find r2+s2.
Solution: By Vieta's, r+s=27 and rs=23. Use the identity r2+s2=(r+s)2−2rs:
r2+s2=(27)2−2(23)=449−3=437
No need to ever compute r and s individually (which aren't even rational here).
Practice problems
1.Is (x−2) a factor of f(x)=x3−3x2−4x+12?
2.If the roots of x2−9x+14=0 are r and s, find r+s and rs without solving for the roots.
3.What is the remainder when x4+2x3−x+5 is divided by x+1?
4.If r,s are the roots of x2−5x+2=0, find r1+s1.