An algebraic equation is a math statement where two expressions sit on either side of an equals sign, with at least one unknown number (a variable) to find. Examples: 3x + 5 = 17, x² − 5x + 6 = 0, x³ + 2x² − x − 2 = 0. This guide covers the four main types by degree, the key formulas, a decision framework for picking the right solving method, and the mistakes students make most often.
What Is an Algebraic Equation?
A Balanced Scale — The Idea Behind Every Equation
Say you have a two-pan balance. On the left pan: a closed box with some candies inside, plus three loose candies. On the right pan: ten candies. The beam is level. How many candies are in the box?
You'd figure it out by subtracting three from ten. Seven candies in the box. Done.
What you just did was solve the algebraic equation x + 3 = 10.
An algebraic equation is a statement that two expressions have the same value. Written with an = sign, containing at least one variable — the missing number you want to find. The general form is P = 0 or P = Q, where P and Q are polynomials.
The scale does more than illustrate the idea. It sets up the one rule every solving method follows: whatever you do to one side, you must do to the other. Add five candies to the left? Add five to the right. Otherwise the scale tips and the equation stops being true.
Expression vs. Equation — The Distinction That Trips Everyone Up
Expression | Equation | |
|---|---|---|
What it contains | Variables, coefficients, constants, operations — no equals sign | Two expressions joined by an equals sign |
What you can do | Simplify or evaluate | Solve — find the value of the variable |
Example | 3x + 7 | 3x + 7 = 22 |
I've watched students freeze when told to "solve 3x + 7." Nothing to solve. It's half a sentence. About four in ten students in a first algebra session make some version of this mistake — they treat an expression like an equation, or vice versa. The fix isn't complicated. An expression is a phrase. An equation is a complete sentence with a verb: the equals sign.
Anatomy of an Algebraic Equation
Take 5x² − 3x + 7 = 0. Every part of this equation has a name, and each name tells you something useful.
[Visual — labelled equation diagram]The equation 5x² − 3x + 7 = 0 centered. Colour-coded arrows point to each element with labels: "variable (x)", "coefficients (5 and −3)", "constant (7)", "degree (highest exponent = 2)", "operator (=)", "LHS (left-hand side)", "RHS (right-hand side)". Each element visually distinct.
Alt text: Labelled anatomy of the algebraic equation 5x² − 3x + 7 = 0 showing variable, coefficients, constant, degree, operator, and left- and right-hand sides.
The variable (x) is the unknown you're solving for.
The coefficients (5 and −3) are the numbers multiplying the variable.
The constant (7) stands alone — no variable attached.
The degree is the highest exponent on any variable — here, 2. This single number tells you what type of equation you're dealing with and how many solutions to expect.
The operator (=) is what makes it an equation rather than just an expression.
Everything before the equals sign is the LHS. Everything after is the RHS.
Quick check before you keep reading. Given 2x³ − 7x + 1 = 9, what's the variable? The degree? The constant on the LHS? (Answers: x, 3, 1.)
Types of Algebraic Equations — By Degree
Look at these three equations:
3x + 5 = 17
x² − 5x + 6 = 0
x³ + 2x² − x − 2 = 0
What changes from one to the next? The highest power of x goes up. 1, then 2, then 3. That single number — the degree — is what splits algebraic equations into types.
Linear Equations (Degree 1)
A linear equation has the variable raised to the power of 1. No squares, no cubes. Just x, sitting there plainly.
General form: ax + b = 0 (one variable) or ax + by + c = 0 (two variables).
The name comes from the graph. Plot every solution of a linear equation and you get a straight line. That's literally where "linear" comes from.
Students in India meet linear equations in Class 7 (NCERT Chapter 4 — Simple Equations) and Class 8. In the US, the standard is CCSS 7.EE.1 through 7.EE.4. In the UK, they appear in Key Stage 3.
Example: Solve 3x + 7 = 22.
Subtract 7 from both sides: 3x = 15.
Divide both sides by 3: x = 5.
Check: 3(5) + 7 = 22. ✓
For two variables, you need two equations — actually, more precisely, you need as many equations as variables. This is where simultaneous equations come in (substitution and elimination). The same logic underpins linear programming and most regression models in data science.
Quadratic Equations (Degree 2)
Degree 2. The variable is squared somewhere.
General form: ax² + bx + c = 0, where a ≠ 0.
Plot a quadratic and you get a parabola — a U-shape or ∩-shape, depending on whether a is positive or negative.
Why does degree 2 show up everywhere in the real world? Projectile motion. When Galileo dropped objects from the Leaning Tower of Pisa, he discovered that distance fallen is proportional to time squared, not time itself. Every time you throw a ball, the height of that ball through the air is described by a quadratic equation.
Students meet quadratic equations in Class 10 (NCERT Chapter 4) and CCSS HSA-REI.B.4. In the UK, they appear in GCSE.
Example: Solve x² + x − 6 = 0 using the quadratic formula.
a = 1, b = 1, c = −6.
x = [−1 ± √(1 − 4·1·(−6))] / 2 = [−1 ± √25] / 2 = [−1 ± 5] / 2.
x = 2 or x = −3.
Cubic Equations (Degree 3)
Degree 3. At least one term has the variable cubed.
General form: ax³ + bx² + cx + d = 0, a ≠ 0.
The graph is an S-shape — it curves one way, straightens briefly, then curves the other. A cubic can have up to three real solutions (the points where the curve crosses the x-axis).
The general solution for cubics was a closely-guarded secret in 16th-century Italy. Mathematicians duelled over it publicly for prize money. (More on that in the history box below.)
Example: Solve x³ − 6x² + 11x − 6 = 0.
Test x = 1: 1 − 6 + 11 − 6 = 0. ✓ So (x − 1) is a factor.
Divide: x³ − 6x² + 11x − 6 = (x − 1)(x² − 5x + 6) = (x − 1)(x − 2)(x − 3).
Solutions: x = 1, 2, 3.
Higher-Order Polynomial Equations (Degree 4 and Beyond)
Quartic (4), quintic (5), sextic (6), and so on.
Honest admission here. For quintic equations and higher, Niels Henrik Abel proved in 1824 that there's no general formula using radicals — no equivalent of the quadratic formula. For most problems you'll see in school or early college, factoring or numerical methods (like Newton's iteration) do the job. The "there's a clean formula for everything" idea breaks down past degree 4.
Higher-order equations show up in JEE prep, Olympiad problems, and early university math.
How Many Solutions Does Each Type Have?
Degree | Name | General Form | Max Real Solutions | Typical Grade |
|---|---|---|---|---|
1 | Linear | ax + b = 0 | 1 | Class 7 / Grade 7 / KS3 |
2 | Quadratic | ax² + bx + c = 0 | 2 | Class 10 / Grade 9 / GCSE |
3 | Cubic | ax³ + bx² + cx + d = 0 | 3 | Class 11 / High School |
n | Polynomial | aₙxⁿ + … + a₀ = 0 | up to n | Advanced / JEE |
The rule: a polynomial of degree n has at most n real solutions. This is the part of the Fundamental Theorem of Algebra that students actually use regularly.
The Three Faces of an Equation — Conditional, Identity, Inconsistent
Three equations that look deceptively similar:
2x + 3 = 11
2(x + 3) = 2x + 6
x + 3 = x + 7
Which one can you solve? Look at them before reading on.
The first has exactly one solution: x = 4.
The second has infinite solutions. Expand the left side: 2x + 6. Compare to the right side: 2x + 6. Identical. Every value of x works.
The third has no solution. Subtract x from both sides: 3 = 7. That's never true.
Three different outcomes, three different names:
Type | Example | How to Spot It | What "Solving" Means |
|---|---|---|---|
Conditional equation | 2x + 3 = 11 | Simplifies to isolate the variable | True only for specific value(s) of x |
Identity | 2(x + 3) = 2x + 6 | Simplifies to a statement like 0 = 0 | True for every value of x |
Inconsistent | x + 3 = x + 7 | Simplifies to a false statement like 3 = 7 | True for no value of x |
Most textbooks blur the line between these three. I'll be honest — I had to look up the formal distinction between an identity and a conditional equation the first time I taught this, because most curriculum material just calls them all "equations" without flagging that they behave differently.
Knowing the difference saves real trouble. If you're working on what turns out to be an identity, you'll spin your wheels trying to isolate x when the answer is "x can be anything." If you hit 3 = 7, don't panic. That is the answer: there is no solution.
Key Formulas and Identities for Algebraic Equations
Memorising these saves time. Understanding why they work prevents errors. Here are the ones you'll reach for most.
Square identities
(a + b)² = a² + 2ab + b²
(a − b)² = a² − 2ab + b²
a² − b² = (a + b)(a − b)
(a + b + c)² = a² + b² + c² + 2ab + 2bc + 2ca
Cube identities
(a + b)³ = a³ + 3a²b + 3ab² + b³
(a − b)³ = a³ − 3a²b + 3ab² − b³
a³ + b³ = (a + b)(a² − ab + b²)
a³ − b³ = (a − b)(a² + ab + b²)
Quadratic tools
Quadratic formula: x = [−b ± √(b² − 4ac)] / 2a
Discriminant: b² − 4ac
If > 0: two distinct real roots
If = 0: one repeated real root
If < 0: no real roots (two complex roots instead)
Vieta's formulas (sum and product of roots — underused, incredibly helpful for checking work). For ax² + bx + c = 0 with roots α and β:
α + β = −b/a
αβ = c/a
Solved x² − 5x + 6 = 0 and got roots 2 and 3? Sum should be 5. Product should be 6. Vieta's says −b/a = 5 and c/a = 6. Matches. You're right. This quick sanity check catches more arithmetic errors than re-solving the equation from scratch, and most competitor articles mention it once and move on. It deserves more attention.
How to Solve Algebraic Equations — A Decision Framework
Which Method Should You Use?
Before you reach for any method, look at the degree of the equation. That alone tells you 80% of what you need to know.
[Visual — decision flowchart]A clean decision tree. Start node: "You have an algebraic equation." First branch on degree. Degree 1 → "Isolate the variable using inverse operations." Degree 2 → "Does it factor in about 30 seconds?" If yes → factor. If no → quadratic formula. Degree 3 or higher → "Try the rational root theorem to find one root, then divide and solve the remaining equation." Each endpoint labelled cleanly, one-screen readable.
Alt text: Decision flowchart for choosing the right method to solve algebraic equations based on degree.
Degree 1? Isolate the variable using inverse operations. Done.
Degree 2? Try factoring first. If you can't factor in 30 seconds, use the quadratic formula.
Degree 3 or higher? Use the rational root theorem to find one root, then synthetic division to reduce the degree. Solve the leftover equation.
The Golden Rule — Whatever You Do to One Side, Do to the Other
Back to the balance scale. Add something to one pan, you must add the same thing to the other. Multiply one side by 3, multiply the other side by 3 too.
Add, subtract, multiply, divide, square, take a root — all allowed. Just do them to both sides.
Solving Linear Equations
Steps, with one example carried through. Solve 5x − 8 = 2x + 7.
Move all variable terms to one side. Subtract 2x from both sides: 3x − 8 = 7.
Move all constants to the other side. Add 8 to both sides: 3x = 15.
Isolate the variable. Divide both sides by 3: x = 5.
Check by substituting back. 5(5) − 8 = 17. 2(5) + 7 = 17. Both sides equal 17. ✓
For two variables, use substitution or elimination. That's a full topic on its own.
Solving Quadratic Equations
Four methods. The main ones you'll use day-to-day are factoring and the quadratic formula — for most Grade 9 and 10 problems, those two cover it. You'll meet completing the square and graphing when they matter.
Wrong approach first, so you can see why the right one exists. Suppose you try to solve x² − 5x + 6 = 0 by plugging in random numbers. Try x = 1: 1 − 5 + 6 = 2. Not zero. Try x = 4: 16 − 20 + 6 = 2. Not zero. Try x = 10: 100 − 50 + 6 = 56. Very not zero. You could guess forever.
This is why factoring exists. Look for two numbers that multiply to give c (here, 6) and add to give b (here, −5). The numbers are −2 and −3. So x² − 5x + 6 = (x − 2)(x − 3) = 0. Either x − 2 = 0 or x − 3 = 0. Solutions: x = 2 and x = 3.
If factoring isn't obvious in 30 seconds, use the quadratic formula. It works every time. For ax² + bx + c = 0, x = [−b ± √(b² − 4ac)] / 2a.
Completing the square gets used less often for pure solving, but it's essential for understanding why the quadratic formula exists. The formula itself is derived by completing the square on the general form ax² + bx + c = 0.
Graphing means plotting the parabola and reading off where it crosses the x-axis. Those crossings are the solutions. Useful for quick visualisation, not precise for messy numbers.
Solving Cubic and Higher-Order Equations
Two moves you'll rely on.
The rational root theorem says: if a polynomial with integer coefficients has a rational root p/q (in lowest terms), then p divides the constant term and q divides the leading coefficient. For x³ − 6x² + 11x − 6 = 0, the possible rational roots are ±1, ±2, ±3, ±6. Test each one.
Once you find a root, synthetic division (or polynomial long division) knocks the degree down by one. A cubic becomes a quadratic. A quartic becomes a cubic. And you already know how to handle those.
For everything else, numerical methods — Newton's iteration, or a graphing calculator.
Common Mistakes Students Make — And How to Spot Them
Certain patterns repeat across hundreds of first-session students. If you recognise any of these in a child's work, the fix is usually targeted, not "more practice."
The sign-flip miss. A student moves a term across the equals sign but forgets to flip its sign. Writes 3x + 5 = 11 → 3x = 11 + 5 = 16 → x = 16/3. Wrong. Should have been 3x = 11 − 5 = 6, so x = 2. This is the single most common error in Grade 7 and Grade 8. It comes from thinking of "moving a term" as picking it up and setting it down — instead of as subtracting (or adding) the same amount from both sides.
The expression-equation mix-up. Tries to "solve" 3x + 7 and comes back saying "I can't find the answer." No equals sign means nothing to solve for. We covered this in the Expression vs. Equation section above — worth restating because it shows up in homework constantly.
The formula-over-thinking trap. Applies the quadratic formula to x² − 4 = 0 when they could've just said x = ±2. I watched a 9th-grader do this for an entire homework set once — not because he couldn't factor, but because he didn't trust himself to spot the factors. Close to three in ten students default to the quadratic formula when factoring would take five seconds.
The negative-square slip. Computes (−3)² as −9 instead of 9. Messes up the discriminant, which then cascades through the whole problem. (−3)² = 9. Always. A negative times a negative is positive. This one catches even strong students because it's a tiny slip that corrupts a long calculation.
Where Algebraic Equations Show Up in Real Life
Physics. Projectile motion is a quadratic in time. The range of a thrown ball, the height of a rocket, the trajectory of a basketball — all quadratic equations.
Engineering. Bridge load distribution, beam deflection, circuit behaviour. Ohm's law (V = IR) is linear. An RLC circuit involves second-order differential equations, which are quadratic cousins.
Economics. Break-even analysis (when revenue equals cost), supply-demand intersections, compound interest over time. A lot of financial planning collapses into solving one or two equations.
Computer science. Public-key cryptography leans on high-degree polynomial equations over finite fields. Every secure message you send involves solving — or not being able to solve — an algebraic equation of some kind.
Everyday life. Figuring out when two buses from different cities will meet. Calculating how long to save for something specific. Splitting an unevenly-sized bill when one person skipped dessert. These are algebraic equations you solve in your head without labelling them.
📜 A Short History of Algebra
The word "algebra" comes from al-jabr, an Arabic term meaning "reunion of broken parts." It was coined by the 9th-century Persian mathematician al-Khwarizmi, working in Baghdad, whose book on solving equations gave the field its name.
The equals sign (=) wasn't invented until 1557, when Welsh mathematician Robert Recorde wrote that no two things could be more alike than two parallel lines — so that is what "equal" would look like.
The general solution to cubic equations was a closely-guarded secret in 16th-century Italy. Mathematicians staged public duels over it for prize money, until Gerolamo Cardano published it in 1545, breaking a promise of secrecy he'd made to a rival.
FAQs
1. What is an algebraic equation in simple words?
A math statement that says two things are equal, with at least one unknown number you need to find. Like x + 5 = 12.
2. What's the difference between an algebraic equation and an expression?
An expression is a phrase (3x + 7). An equation is a complete sentence with an equals sign (3x + 7 = 22). You simplify expressions. You solve equations. We went into this in detail in the section above — the key point is that if there's no equals sign, there's nothing to solve.
3. What are the main types of algebraic equations?
Linear (degree 1), quadratic (degree 2), cubic (degree 3), and higher-order polynomial (degree 4 and above). The degree — the highest power of the variable — decides the type.
4. Can an algebraic equation have no solution?
Yes. Example: x + 3 = x + 7. Subtract x from both sides and you get 3 = 7, which is never true. These are called inconsistent equations.
5. Can an algebraic equation have infinite solutions?
Yes. Example: 2(x + 3) = 2x + 6. Both sides simplify to the same thing. Any value of x works. These are identities.
6. How many solutions does a polynomial of degree n have?
At most n real solutions.
7. What's the easiest way to solve a quadratic equation?
Try factoring first — it's fast when it works. If you can't factor in about 30 seconds, switch to the quadratic formula: x = [−b ± √(b² − 4ac)] / 2a. The formula works every time, even when factoring doesn't. Completing the square and graphing are useful in specific situations but slower as default methods.
8. In which grade do students learn algebraic equations?
Linear equations start in Class 7 (NCERT Chapter 4) or Grade 7 (CCSS 7.EE). Quadratics appear in Class 10 (NCERT Chapter 4) or Grade 9 (CCSS HSA-REI.B.4). In the UK, linear equations show up in Key Stage 3 and quadratics in GCSE.
Was this article helpful?
Your feedback helps us write better content