AOS3 Topic 7: Solutions to Complex Polynomials
Complex Polynomials
Complex polynomials are polynomials in which the coefficients and/or the variables can take complex values. A complex polynomial is an algebraic expression consisting of terms involving complex numbers. These polynomials can have both real and imaginary parts.
For example, a complex polynomial might look like this:
\[ P(z) = a_n z^n + a_{n-1} z^{n-1} + \ldots + a_1 z + a_0 \]
where \( z \) is a complex variable, and \( a_n, a_{n-1}, \ldots, a_1, a_0 \) are complex coefficients.
Polynomial Equations
Polynomial equations are equations in which a polynomial expression is set equal to a constant or to another polynomial expression. A polynomial equation typically involves variables raised to non-negative integer powers and can have one or more solutions.
For example, \(2x^2 + 3x - 5 = 0\) and \(x^3 - 4x^2 + x + 6 = 0\) are polynomial equations. In these equations, the variables \(x\) are raised to non-negative integer powers (2, 1, and 0 in the first equation; 3, 2, 1, and 0 in the second equation), and the coefficients are constants.
Completing the Square:
For a quadratic equation \( ax^2 + bx + c = 0 \), you can complete the square by following these steps:
- Move the constant term \( c \) to the other side of the equation.
- Divide all terms by the coefficient of \( x^2 \) if it's not already 1.
- Take half of the coefficient of \( x \), square it, and add it to both sides of the equation.
- Factor the left side of the equation as a perfect square trinomial.
- Solve for \( x \) using square root.
- Factoring by Grouping (Rearranging):
This method is applicable when you can rewrite the middle term (bx) by grouping the terms and finding two values that add up to b and multiply to c.
- Using the Quadratic Formula (Direct Formula):
This method provides a direct formula to find the roots (solutions) of the quadratic equation, and the factors can be obtained from the roots.
Formula:
x = (-b ± √(b2 - 4ac)) / (2a)
where a, b, and c are the coefficients of the quadratic expression (ax2 + bx + c).
Conjugate Root Theorem
Let P(z) be a polynomial with real coefficients. If a + bi is a solution of the equation P(z) = 0, with a and b real numbers, then the complex conjugate a − bi is also a solution.
Factoring Quadratic Expressions
There are several methods for factoring quadratic expressions (ax2 + bx + c) where a, b, and c are constants and a ≠ 0. Here are three common approaches:
Example 1
Example 2
\[ x^2 + 7x + 10 = (x^2 + 2x) + (5x + 10) = x(x + 2) + 5(x + 2) = (x + 2)(x + 5) \]