Polynomial Equation Solutions
Introduction
This section covers solving polynomial equations with real coefficients, focusing on finding real solutions. A polynomial equation of degree $n$ can have up to $n$ real solutions. These solutions can be found algebraically or numerically.
Key Concepts
- Polynomial Equation: An equation of the form $P(x) = 0$, where $P(x)$ is a polynomial.
- Degree of a Polynomial: The highest power of $x$ in the polynomial.
- Real Coefficients: The coefficients of the terms in the polynomial are real numbers.
- Real Solutions (Roots): Values of $x$ that satisfy the equation $P(x) = 0$ and are real numbers.
- Numerical Solutions: Approximate solutions obtained using numerical methods (e.g., calculators, software).
Methods for Solving Polynomial Equations
1. Factorisation
- Linear Factors: If $x = a$ is a solution, then $(x - a)$ is a factor of the polynomial.
- Quadratic Factors: Sometimes, polynomials can be factored into quadratic factors, which can then be solved using the quadratic formula.
- Factor Theorem: If $P(a) = 0$, then $(x - a)$ is a factor of $P(x)$.
-
Remainder Theorem: When $P(x)$ is divided by $(x - a)$, the remainder is $P(a)$.
Example: Given $P(x) = x^3 - 6x^2 + 11x - 6$, test factors of the constant term (-6).
$P(1) = 1 - 6 + 11 - 6 = 0$, so $(x - 1)$ is a factor.
2. Rational Root Theorem
- Helps identify potential rational roots of a polynomial equation with integer coefficients.
-
If a polynomial $P(x) = a_n x^n + a_{n-1} x^{n-1} + … + a_1 x + a_0$ has a rational root $\frac{p}{q}$ (in lowest terms), then $p$ must be a factor of $a_0$ and $q$ must be a factor of $a_n$.
Example: Consider $2x^3 + 3x^2 - 8x + 3 = 0$. Possible rational roots are $\pm 1, \pm 3, \pm \frac{1}{2}, \pm \frac{3}{2}$.
3. Polynomial Division
- After finding one factor (e.g., using the factor theorem), divide the polynomial by that factor to reduce the degree of the polynomial.
-
Can use long division or synthetic division.
Example: If $(x-1)$ is a factor of $x^3 - 6x^2 + 11x - 6$, divide $x^3 - 6x^2 + 11x - 6$ by $(x-1)$ to obtain $x^2 - 5x + 6$.
4. Numerical Methods
- When algebraic methods are difficult or impossible, numerical methods can be used to approximate solutions.
- Technology Use: CAS calculators are essential for solving polynomial equations numerically.
- Graphing: Plotting the polynomial function $y = P(x)$ and finding the x-intercepts (roots).
- Newton’s Method: An iterative method to find successively better approximations to the roots of a real-valued function.
$$x_{n+1} = x_n - \frac{f(x_n)}{f’(x_n)}$$
Where:
* $x_{n+1}$ is the next approximation of the root.
* $x_n$ is the current approximation of the root.
* $f(x_n)$ is the value of the function at $x_n$.
* $f'(x_n)$ is the derivative of the function at $x_n$.
5. Solving Cubics
- A cubic polynomial has the general form: $ax^3 + bx^2 + cx + d = 0$.
- Steps:
- Use the Rational Root Theorem to test for rational roots.
- If a root is found (e.g., $x = r$), then $(x - r)$ is a factor.
- Divide the cubic by $(x - r)$ to obtain a quadratic.
- Solve the quadratic using the quadratic formula or factorisation.
6. Solving Quartics
- A quartic polynomial has the general form: $ax^4 + bx^3 + cx^2 + dx + e = 0$.
- Strategies:
- Look for easy factorisations (e.g., difference of squares).
- Attempt to find two quadratic factors.
- Use numerical methods if algebraic methods are too complex.
Examples
Example 1: Factorisation
Solve $x^3 - 4x^2 + x + 6 = 0$.
- By trial and error, $x = -1$ is a solution: $(-1)^3 - 4(-1)^2 + (-1) + 6 = -1 - 4 - 1 + 6 = 0$.
- Divide $x^3 - 4x^2 + x + 6$ by $(x + 1)$ to get $x^2 - 5x + 6$.
- Factorise $x^2 - 5x + 6 = (x - 2)(x - 3)$.
- Solutions: $x = -1, 2, 3$.
Example 2: Numerical Solution
Find the solutions to $x^3 + 2x^2 - 5x - 6 = 0$ using a calculator.
- Graph $y = x^3 + 2x^2 - 5x - 6$.
- Use the calculator’s root-finding function to find the x-intercepts: approximately $x = -3, -1, 2$.
Important Notes
- A polynomial of degree $n$ has exactly $n$ roots, counting multiplicity (Fundamental Theorem of Algebra). However, some roots may be complex numbers.
- For VCE Mathematical Methods, the focus is on finding real roots.
- Understanding the relationship between roots and factors is crucial.
- Technology is essential for solving complex polynomial equations.