Polynomials are the next step up from quadratics β they can have any degree. In competition math, you won't often need to solve a degree-5 polynomial directly, but you will need to factor them, multiply them, and use key theorems like the Factor Theorem and Remainder Theorem.
A polynomial in $x$ has the form:
\[ a_nx^n + a_{n-1}x^{n-1} + \cdots + a_1x + a_0 \]
Special names by degree: linear (1), quadratic (2), cubic (3), quartic (4), quintic (5)
Combine like terms (same power of $x$).
Example: $ (3x^2 + 2x - 1) + (x^2 - 4x + 5) = 4x^2 - 2x + 4 $
For subtraction, distribute the negative sign first: every term in the second polynomial flips sign.
\(Distribute each term of the first polynomial through the second (FOIL is just the 2 \\times 2 case).\)
These save you enormous time. Every competition has problems that become trivial if you recognize the pattern.
Always follow this order when factoring:
Remainder Theorem: When polynomial $P(x)$ is divided by $(x - a)$, the remainder equals $P(a)$.
Factor Theorem: $(x - a)$ is a factor of $P(x)$ if and only if $P(a) = 0$.
These are huge for competition problems. To test if $(x - a)$ divides a polynomial, just plug in $x = a$ and see if you get zero.
Rational Root Theorem: Any rational root $\frac{p}{q}$ of $P(x) = 0$ has $p$ dividing the constant term and $q$ dividing the leading coefficient.
Recognize: This is a difference of squares: $ a^2 - b^2 = (a+b)(a-b) $
Step 1: Identify $a$ and $b$.
$ 16x^2 = (4x)^2 $, so $ a = 4x $
$ 81 = 9^2 $, so $ b = 9 $
Step 2: Apply the formula.
\[ 16x^2 - 81 = (4x + 9)(4x - 9) \]
Step 3: The constant terms are +9 and -9.
Sum = $ 9 + (-9) = 0 $
Check (FOIL): $(4x+9)(4x-9) = 16x^2 - 36x + 36x - 81 = 16x^2 - 81$. β
Answer: 0
Remainder Theorem: Remainder = $ P(3) $
Plug in $x = 3$:
\[ P(3) = 3^3 - 4(3)^2 + 2(3) + 5 \\ = 27 - 4(9) + 6 + 5 \\ = 27 - 36 + 6 + 5 \\ = -9 + 11 \\ = 2 \]
The remainder is 2.
Note: Since the remainder is not 0, $(x - 3)$ is NOT a factor of $P(x)$.
Answer: 2
Strategy: Factor by grouping \((4 terms \\to group in pairs).\)
Step 1: Group first two and last two terms.
\[ (x^3 + 3x^2) + (2x + 6) \]
Step 2: Factor out GCF from each group.
$ x^2(x + 3) + 2(x + 3) $
Step 3: Factor out the common binomial $(x + 3)$.
\[ (x + 3)(x^2 + 2) \]
Step 4: Check if we can factor further.
$(x + 3)$ is already linear. $x^2 + 2$ is a sum of squares β doesn't factor over integers.
So there are 2 factors with integer coefficients: one linear ($x + 3$) and one quadratic ($x^2 + 2$).
The question asks for linear factors: only $(x + 3)$ is linear. Wait β let me re-read.
"How many linear factors with integer coefficients?" \(\\to Only\) $(x + 3)$ is linear. That would be 1.
Hmm, let me reconsider. The answer should be 2 total factors (one linear, one quadratic). But the question specifically says "linear factors."
Correction: Only $(x + 3)$ is linear. $x^2 + 2$ is quadratic and doesn't factor further over integers.
Number of linear factors with integer coefficients = 1
Answer: 1