Polynomial Equation

Download as PDF

Ever wondered what makes an equation 'polynomial'? This guide breaks it all down. You'll learn how to identify, classify, and, most importantly, solve these powerful algebraic expressions, from simple linear equations to more complex quadratics and cubics. Let's start solving!

What Is a Polynomial Equation?

A polynomial equation is an equation that sets a polynomial equal to zero. At its core, a polynomial is an expression made up of variables (like x or y), coefficients (the numbers multiplied by the variables), and exponents that are non-negative integers (0,1,2,3,...). When you take an expression like this and set it equal to 0, you create a puzzle to solve: what value(s) of the variable make the statement true?

The general form of a polynomial is anxn+an1xn1++a2x2+a1x+a0. The a values are the coefficients, x is the variable, and the n values are the exponents. To make it an equation, we simply add an equals sign:

anxn+an1xn1++a1x+a0=0

Here are some key characteristics:

  • Variables: The letters in the equation, like x.
  • Coefficients: The numbers in front of the variables. In 3x27x+2=0, the coefficients are 3, 7, and 2.
  • Exponents: The powers the variables are raised to. They must be whole numbers (0,1,2,...).
  • Terms: The parts of the polynomial separated by plus or minus signs, like 3x2, 7x, and 2.

Examples of polynomial equations:

  • 5x10=0
  • x2+4x+3=0
  • y38=0

NOT polynomial equations:

  • 3x2+2x1=0 (because of the negative exponent)
  • 4x+7=0 (because x is the same as x1/2, which is a fractional exponent)
  • 2x+15=0 (because this involves division by a variable)

How Do You Classify Polynomials by Degree and Terms?

Polynomials are classified in two primary ways: by their degree and by their number of terms. Understanding these labels helps you predict how an equation will behave and what methods you might use to solve it.

The degree of a polynomial is the value of its highest exponent. This is the most important classification because it tells you the maximum number of solutions (or 'roots') the equation can have.

The number of terms is simply how many pieces are being added or subtracted. A polynomial with one term is a monomial, two terms is a binomial, and three terms is a trinomial.

Here’s a handy table to help you classify them:

DegreeName by DegreeExample EquationNumber of TermsName by Terms
0Constant7=0 (no solution)1Monomial
1Linear2x6=02Binomial
2Quadraticx25x+6=03Trinomial
3Cubicx38=02Binomial
4Quarticx4+2x23=03Trinomial
5Quintic3x5x3+4x=03Trinomial

For example, the polynomial equation 4x32x+11=0 is a cubic trinomial. Its degree is 3 (from the x3 term), meaning it can have up to three distinct solutions, and it has three terms (4x3, 2x, and 11).

What Are Standard Form and 'Roots' of an Equation?

Before you can solve most polynomial equations, you need to arrange them into standard form. Standard form makes it easier to identify coefficients and apply solving techniques like factoring or the quadratic formula.

An equation is in standard form when:

  1. All terms are on one side of the equals sign, and the other side is 0.
  2. The terms are written in descending order of their exponents, from highest to lowest.

For example, to write 3x+5=2x2 in standard form, you would move all terms to the left side and order them: 2x2+3x+5=0.

Once an equation is in standard form, your goal is to find its roots. The words roots, solutions, and zeros all mean the same thing: they are the specific values of the variable that make the equation true. For the equation x4=0, the root is x=4 because 44=0.

A huge idea in algebra, the Fundamental Theorem of Algebra, tells us something powerful about roots. In simple terms, it states that the degree of a polynomial equation tells you the maximum number of roots it can have. A quadratic (degree 2) equation will have at most two real roots, a cubic (degree 3) will have at most three real roots, and so on. This helps you know how many solutions you should be looking for.

How Do You Solve Simple Linear Equations?

Linear equations are polynomials of degree 1. They have the form ax+b=0. These are the most straightforward polynomial equations to solve because your goal is simply to isolate the variable (get x by itself) using inverse operations.

The process is usually two steps:

  1. Add or subtract the constant term from both sides of the equation.
  2. Multiply or divide to remove the coefficient in front of the variable.

Let's walk through an example.

Example 1

Solve the linear equation 5x8=12.

Step 1: Get the variable term by itself.

The constant term on the same side as x is 8. The inverse operation of subtracting 8 is adding 8. We'll add 8 to both sides to keep the equation balanced.

5x8+8=12+85x=20

Step 2: Isolate the variable.

The variable x is being multiplied by 5. The inverse operation is dividing by 5. Divide both sides by 5.

5x5=205x=4

Step 3: Check your answer.

Substitute x=4 back into the original equation to make sure it's true.

5(4)8=12208=1212=12

The check works! The solution is x=4.

What Are the Main Ways to Solve Quadratic Equations?

Quadratic equations (degree 2) are a major focus in algebra. They are written in the standard form ax2+bx+c=0, where a is not zero. Because of the x2 term, we can't just isolate x like we do in linear equations. Instead, we use more advanced methods.

There are three primary methods for solving quadratics:

  1. Factoring: This method involves rewriting the quadratic as a product of two linear binomials. It relies on the Zero Product Property, which states that if AB=0, then either A=0 or B=0 (or both). Factoring is fast and efficient, but it only works when the quadratic is easily factorable.
  2. Completing the Square: This is a powerful technique that can solve any quadratic equation by turning one side of it into a perfect square trinomial. It is often used to derive the quadratic formula itself.
  3. The Quadratic Formula: This is the universal solver. It works for every quadratic equation, whether it factors or not. All you need to do is identify the coefficients a, b, and c from the standard form and plug them into the formula.
x=b±b24ac2a

The ± symbol means you will perform the calculation once with a plus sign and once with a minus sign, which is how you get the two potential solutions.

Example 2

Solve 2x2+5x3=0 using the quadratic formula.

Step 1: Identify a, b, and c.

The equation is already in standard form ax2+bx+c=0. By comparing them, we find:

  • a=2
  • b=5
  • c=3

Step 2: Substitute the values into the formula.

Be very careful with parentheses and signs, especially when b or c are negative.

x=(5)±(5)24(2)(3)2(2)

Step 3: Simplify the expression.

Work from the inside out. First, calculate the value under the square root (this part is called the discriminant).

x=5±25(24)4x=5±25+244x=5±494

Now, take the square root of 49.

x=5±74

Step 4: Calculate the two separate solutions.

First, use the plus sign:

x1=5+74=24=12

Next, use the minus sign:

x2=574=124=3

The two roots of the equation are x=12 and x=3.

How Can Factoring Help Solve Higher-Degree Equations?

For polynomial equations with a degree of 3 or higher, like cubics (x3) and quartics (x4), there are no simple formulas like the quadratic formula. At this level, the primary method for solving them is factoring.

The strategy is to break down the complex polynomial into a product of simpler linear or quadratic factors and then use the Zero Product Property. Here's a general approach:

  1. Set the Equation to Zero: Make sure the equation is in standard form (equal to 0).
  2. Factor out the Greatest Common Factor (GCF): This is always the first step. If every term shares a common factor, pull it out front. For example, in x34x=0, the GCF is x, so you can write it as x(x24)=0.
  3. Look for Patterns: Can you factor what's left? Look for special cases like a difference of squares (a2b2=(ab)(a+b)) or sum/difference of cubes.
  4. Factor by Grouping: If you have four terms, try factoring by grouping. This involves pairing up terms and factoring out the GCF from each pair.
Example 3

Solve the cubic equation x32x29x+18=0.

Step 1: Check standard form.

The equation is already set to 0 and there is no GCF for all four terms.

Step 2: Try factoring by grouping.

Group the first two terms and the last two terms. Be careful with the minus sign in front of the 9x.

(x32x2)+(9x+18)=0

Step 3: Factor the GCF from each group.

In the first group, the GCF is x2. In the second group, the GCF is 9. Factoring out a negative helps make the remaining binomials match.

x2(x2)9(x2)=0

Step 4: Factor out the common binomial.

Notice that both parts now share the binomial factor (x2). We can factor this out.

(x29)(x2)=0

Step 5: Factor completely.

The first factor, (x29), is a difference of squares. It can be factored further.

(x3)(x+3)(x2)=0

Step 6: Use the Zero Product Property.

Now that the polynomial is fully factored, set each factor equal to zero to find the roots.

  • x3=0x=3
  • x+3=0x=3
  • x2=0x=2

This cubic equation has three roots: x=3, x=3, and x=2.

What Are Common Mistakes When Solving Polynomial Equations?

Solving polynomial equations involves many steps, which means there are many places to make a small error. Being aware of these common pitfalls can help you double-check your work and improve your accuracy.

  • Forgetting to Set the Equation to 0: The Zero Product Property only works if the product equals zero. If you have (x4)(x+1)=5, you cannot assume x4=5. You must first multiply it out, subtract 5 from both sides to set it to zero, and then re-factor.
  • Sign Errors: A misplaced negative sign is one of the most frequent mistakes, especially when using the quadratic formula. Be extra careful when calculating b if b is already negative, or when calculating b24ac if c is negative.
  • Dividing by a Variable: It can be tempting to simplify an equation like x2=5x by dividing both sides by x to get x=5. However, this makes you lose a solution! The correct method is to set it to zero (x25x=0), factor (x(x5)=0), and find both roots: x=0 and x=5. Never divide by a variable unless you know it cannot be zero.
  • Incomplete Factoring: After factoring once, always check if any of the remaining factors can be factored further. Forgetting to factor a difference of squares like x29 is a common oversight.
  • Square Root Errors: When solving an equation like x2=16 by taking the square root, remember that there are two solutions: x=4 and x=4. It's easy to forget the negative root.

Quick Summary: Key Concepts

Here is a quick reference guide to the most important ideas about polynomial equations:

  • Polynomial Equation: An equation with variables raised to non-negative integer exponents, set equal to zero.
  • Degree: The highest exponent in the equation. It determines the equation's name (Linear, Quadratic, Cubic) and its maximum number of solutions.
  • Standard Form: Arranging terms in descending order of exponents on one side of the equation, with the other side being 0. Example: ax2+bx+c=0.
  • Roots / Solutions: The values of the variable that make the equation a true statement.

Solving Strategy by Degree:

  • Degree 1 (Linear): Isolate the variable using inverse operations.
  • Degree 2 (Quadratic): Put in standard form. Solve by factoring if possible. If not, use the Quadratic Formula: x=b±b24ac2a.
  • Degree 3+ (Cubic, etc.): Put in standard form. Solve by factoring (look for GCF, use grouping, or identify special patterns) and then apply the Zero Product Property.

Frequently Asked Questions

What's the difference between a polynomial expression and a polynomial equation?

A polynomial expression is a collection of terms with variables, coefficients, and exponents, like 5x23x+7. A polynomial equation takes an expression like that and sets it equal to something, usually zero, such as 5x23x+7=0. The equation is a complete mathematical sentence that you can solve for the variable.

Can a polynomial have a negative exponent?

No, by definition, the exponents in a polynomial must be non-negative integers (0, 1, 2, 3, ...). An expression with a negative exponent, like x2, is not a polynomial; it's a rational expression because x2=1x2.

Does the degree of a polynomial always tell you the exact number of solutions?

The degree tells you the *maximum* number of possible real solutions. A quadratic equation (degree 2) can have two, one, or even zero real solutions. For example, x24=0 has two solutions (2 and -2), but x2+4=0 has no real solutions.

Why is setting the equation to zero so important for solving?

Setting the equation to zero is crucial for methods that use factoring. It allows you to use the Zero Product Property, which states that if a product of factors equals zero, at least one of the factors must be zero. This property doesn't work for any other number.

What is the easiest way to solve a quadratic equation?

The easiest method depends on the equation. If the quadratic is simple and easy to factor, that is usually the fastest way. However, the quadratic formula is the most reliable method because it works for every single quadratic equation, even when factoring is difficult or impossible.

Can a polynomial equation have zero real solutions?

Yes. For example, the quadratic equation x2+1=0 has no real solutions because there is no real number that becomes negative when squared. To get a solution, you would need to use imaginary numbers, which are typically studied in Algebra 2.

What does GCF stand for and why is it important?

GCF stands for Greatest Common Factor. Factoring out the GCF is always the best first step when solving a polynomial because it simplifies the remaining expression. This makes it much easier to apply other factoring techniques like grouping or recognizing patterns.