So What Actually Is Algebra?

Algebra is the part of math where letters and symbols stand in for numbers inside formulas and equations. Regular arithmetic deals with specific numbers you already know; algebra deals with general relationships that stay true no matter what value the variable takes on.

It underpins nearly everything that comes after it in math - calculus, statistics, physics, you name it. Once algebra clicks, you can turn a real situation into an equation and work through it methodically instead of guessing.

The name traces back to the Arabic word "al-jabr," which showed up in a 9th-century math text describing how to move a term from one side of an equation to the other while keeping things balanced. That's still, word for word, what solving an equation means today - you're keeping both sides equal while you isolate the variable.

How Is Algebra Different From Arithmetic?

Arithmetic and algebra both rely on numbers and the same four operations, but they're really answering two different kinds of questions:

ArithmeticAlgebra
Works withSpecific, known numbersVariables standing in for unknown or changing numbers
Typical questionWhat is 4 + 7?If x + 7 = 11, what is x?
Answer applies toJust that one calculationAny situation that fits the same pattern
GoalCompute a valueFind - or describe a rule for - an unknown value

Underneath it all, algebra is really just arithmetic with structure added on top - every step of solving an equation is still addition, subtraction, multiplication, or division. Algebra simply organizes those operations around a variable instead of chasing a single fixed answer.

Why Bother Learning Algebra?

You'll bump into algebra constantly: figuring out a discount or an interest rate, writing code, decoding a scientific formula, working through an engineering problem. Even if you never factor another polynomial after your last exam, the way of thinking algebra builds sticks around and pays off.

More to the point, algebra trains you to split a problem into what you know and what you don't, describe how those pieces relate, and then work backward to pin down the unknown. That skill - turning a real situation into an equation and solving it - is really why schools spend years on this subject, way more than any one formula you'll ever memorize.

Words You Need to Know First

A big chunk of algebra confusion isn't about the math at all - it's about not knowing what the vocabulary means yet. Here are the terms that show up on every topic page in this section:

TermWhat it meansExample
VariableA letter (often x, y, or n) standing in for a number that's unknown or changeable.x in x + 5
ConstantA fixed number that never changes value.5 in 3x + 5
CoefficientThe number sitting in front of, and multiplying, a variable.7 in 7x
TermA single number, variable, or product of numbers and variables.3x, or -2y²
ExpressionA math phrase built from terms, with no equals sign.3x + 5
EquationTwo expressions connected by an equals sign, which you can solve.3x + 5 = 20
PolynomialAn expression made up of several terms added or subtracted together.x² + 3x - 4
InequalityTwo expressions connected by <, >, ≤, or ≥ instead of an equals sign.2x + 3 > 11

Bookmark this table for the first few topic pages you read - most of the explanations here assume you already know these words rather than re-explaining them each time.

Cracking Word Problems

Word problems feel tougher than an equation that's already written out for you, but really the hard part is translating the words, not doing the math. The same process works every time:

  1. Figure out what's unknown and give it a variable name.
  2. Spot the relationship hidden in the wording - watch for phrases like "more than," "total," "twice," or "split evenly."
  3. Turn that relationship into an equation.
  4. Solve it the same way you'd solve any other equation.
  5. Sanity-check your answer against the original question, not just the algebra.

Worked example: "Sarah has $15 more than twice what Ben has. Together they have $60. How much does Ben have?"

Let b = amount Ben has
Sarah has: 2b + 15
Together: b + (2b + 15) = 60
3b + 15 = 60
3b = 45
b = 15

Ben has $15, which makes Sarah's amount 2(15) + 15 = $45. Checking it: 15 + 45 = 60, which matches the total from the problem - so the answer holds up.

"More than" tacks on to whatever number came right before it in the sentence, and "twice" or "double" just means multiply by 2. Keeping a running list of these translation phrases as you meet them makes setting up future word problems noticeably quicker.

The Main Types of Algebraic Equations

Different equations call for different solving methods. Recognizing the type up front tells you which approach to use:

TypeLooks likeHow you solve it
Linear equation3x + 5 = 20Isolate the variable with inverse operations - gives one solution.
Quadratic equationx² - 5x + 6 = 0Factoring, completing the square, or the quadratic formula - up to two solutions.
System of equationsx + y = 10, x - y = 2Substitution or elimination - solves two variables at the same time.
Inequality2x + 3 > 11Handled like an equation, except you flip the inequality sign when multiplying or dividing by a negative.

This page dives into linear equations, polynomials, and factoring. Systems of equations and inequalities are close cousins that lean on the exact same balancing idea.

A Quick Order-of-Operations Refresher

Before you can solve any equation, you need to evaluate expressions in the correct order. Algebra sticks to the same order of operations as regular arithmetic, usually remembered through the acronym PEMDAS:

LetterStands forExample
PParenthesesHandle what's inside ( ) first
EExponentsThen powers, like x²
M / DMultiplication / DivisionLeft to right, equal priority
A / SAddition / SubtractionLeft to right, equal priority

Worked example: evaluating 3 + 2 × (4 + 1)² means solving the parentheses first (4 + 1 = 5), then the exponent (5² = 25), then the multiplication (2 × 25 = 50), and finally the addition (3 + 50 = 53). Do a step out of order and you'll get the wrong answer even if every individual calculation was done correctly.

Common Symbols You'll See in Algebra

A small set of symbols pops up constantly once equations get a bit more advanced. Here's what each one is telling you:

SymbolMeaning
=Equals - both sides have the same value
Not equal to
<  /  >Less than / greater than
≤  /  ≥Less than or equal to / greater than or equal to
±Plus or minus - both a positive and negative solution apply
Square root
Approximately equal to

Worked Examples, Step by Step

Reading about a method is one thing, actually applying it is another. Here are four common problem types worked out in full.

Example 1: A one-step equation

Solve for x: x + 9 = 14

x + 9 = 14
x + 9 - 9 = 14 - 9  (subtract 9 from both sides)
x = 5

Example 2: A two-step equation

Solve for x: 3x - 4 = 11

3x - 4 = 11
3x - 4 + 4 = 11 + 4  (add 4 to both sides)
3x = 15
3x / 3 = 15 / 3  (divide both sides by 3)
x = 5

Example 3: Simplifying an expression

Simplify: 4x + 7 - 2x + 3

4x + 7 - 2x + 3
(4x - 2x) + (7 + 3)  (group the like terms)
2x + 10

Example 4: Factoring a simple trinomial

Factor: x² + 5x + 6

Find two numbers that multiply to 6 and add to 5 → 2 and 3
x² + 5x + 6 = (x + 2)(x + 3)

You can verify any factoring result by multiplying it back out: (x + 2)(x + 3) = x² + 3x + 2x + 6 = x² + 5x + 6. Since that matches the original, the factoring checks out.

Try These Practice Problems

Work through these on paper before clicking to reveal the answer, so you actually get the practice.

1. Solve for x: x - 6 = 13
x = 19 (add 6 to both sides)
2. Solve for x: 5x + 2 = 22
x = 4 (subtract 2, then divide both sides by 5)
3. Simplify: 6x + 2 - 3x + 5
3x + 7 (combine the x terms, then combine the constants)
4. Evaluate: 4 + 3 × (2 + 3)²
79 (parentheses first: 2+3=5, then exponent: 5²=25, then multiply: 3×25=75, then add: 4+75=79)
5. Factor: x² + 7x + 10
(x + 2)(x + 5) - two numbers that multiply to 10 and add to 7

Algebra Formulas Worth Keeping Handy

A condensed version of the formulas covered at length on the Basic Algebra Formulas page:

FormulaUsed for
x = -b / aSolving a linear equation ax + b = 0
x = (-b ± √(b² - 4ac)) / 2aSolving a quadratic equation ax² + bx + c = 0
y = mx + cEquation of a straight line (m = slope, c = y-intercept)
aᵐ · aⁿ = aᵐ⁺ⁿMultiplying powers that share a base
(a + b)² = a² + 2ab + b²Expanding a squared binomial
a² - b² = (a + b)(a - b)Difference of squares

Mistakes That Trip People Up

Only applying an operation to one side. Subtract 4 from the left side of an equation and you have to subtract 4 from the right side too, or the two sides stop being equal.
Combining terms that aren't actually alike. 3x and 3x² aren't the same kind of term, so they can't be merged into 6x or 6x². You can only combine terms that share the exact same variable and exponent.
Losing a negative sign while distributing. -2(x - 5) works out to -2x + 10, not -2x - 10. Carry the negative through every term inside the parentheses, sign included.
Getting PEMDAS order wrong. Multiplication and division share the same priority and run left to right - multiplication doesn't automatically go first, and the same holds for addition and subtraction.
Forgetting to flip the inequality sign. Multiply or divide both sides of an inequality by a negative number and the < or > has to flip direction. This is probably the single most common inequality slip-up.
Squaring a sum the wrong way. (a + b)² does not equal a² + b² - that skips the middle term entirely. The correct expansion is a² + 2ab + b², as shown in the formula table above.

Tips for Getting It Right the First Time

Write out every single step. Doing steps in your head is where most mistakes sneak in. Writing each line down, even on "easy" problems, makes errors much easier to catch.
Always check your work. Plug your solution back into the original equation. If both sides come out equal, you're done - no need to second-guess it.
Let the calculator confirm, not replace, your understanding. Once you've worked through the algebra by hand, use the calculator to double-check the arithmetic - doing both together catches mistakes fastest.

Where Algebra Shows Up in Everyday Life

Algebra stops feeling like an abstract school subject the moment you notice it's already how you solve everyday problems:

  • Splitting a bill. Three friends splitting a $45 pizza evenly means solving 3x = 45 for x - a one-step equation in disguise.
  • Planning a road trip. Distance = speed × time is an algebra formula. Know the distance and your average speed, and you can solve for how long the drive takes.
  • Saving toward a goal. Saving $8 a week toward a $120 goal means solving 8x = 120, which works out to 15 weeks.
  • Discounts and sales tax. A 20% discount on a $60 item is the expression 60 - (0.20 × 60) - the same order-of-operations logic covered earlier on this page.
  • Video game stats. Damage-per-second numbers, leveling curves, and crafting ratios in most games are algebraic formulas wearing different variable names.
  • Cooking and baking. Doubling a recipe that calls for 3/4 cup of flour per batch means working out 2 × (3/4) - the same fraction-and-multiplication skill used throughout algebraic expressions.
  • Comparing phone or streaming plans. "Plan A costs $10 plus $2 per gigabyte, Plan B is a flat $25" describes two linear equations - set them equal to each other and you'll know exactly when one plan starts beating the other.

Terms People Often Mix Up

A handful of word pairs trip students up simply because they sound alike but mean different things:

Termvs.Difference
SolveSimplify"Solve" finds the value of a variable in an equation. "Simplify" rewrites an expression in a shorter form without pinning down a specific value.
FactorMultiplyFactoring breaks an expression down into a product of simpler pieces. Multiplying (expanding) reverses that - combining the factors back into one expression.
TermFactorA term is one piece of an expression, separated by + or -. A factor is one piece of a term, separated by multiplication - like the 3 and the x in 3x.
CoefficientExponentThe coefficient multiplies a variable (the 4 in 4x²). The exponent tells you how many times the variable multiplies itself (the 2 in 4x²).

A Sensible Order to Learn These Topics In

If you're starting this section from zero, working through it in this order tends to build cleanly on what came before, instead of throwing you into a topic that assumes knowledge you don't have yet:

  1. Vocabulary first. Get comfortable with variable, term, coefficient, expression, and equation before touching any formulas - see the table further up this page.
  2. Algebraic Expressions. Learn to build, simplify, and evaluate expressions before trying to solve anything.
  3. Basic formulas and one/two-step equations. This is where the balancing method from the worked examples above gets real practice.
  4. Polynomials. Once equations feel comfortable, learn to spot degree, standard form, and how to add, subtract, and multiply polynomial expressions.
  5. Factoring. The most advanced stop here - reversing multiplication to break a polynomial into simpler pieces, building directly on everything before it.

Tools Worth Having While You Practice

SolverCalc's calculator includes a few features built specifically with algebra practice in mind, not just plain arithmetic:

  • Code Mode lets you type expressions like sqrt(16) or 2^10 straight from your keyboard instead of clicking through buttons, which speeds up checking a multi-step problem considerably.
  • The Equation Solver walks through solving a linear equation one step at a time, handy for confirming your method matches the standard approach, not just that your final answer happens to be right.
  • The Exponent Calculator and Fraction Calculator take care of the smaller arithmetic steps - powers, fractions - that show up constantly inside bigger algebra problems, so an arithmetic slip doesn't get mistaken for an algebra mistake.

A Few More Terms Coming Up Soon

These aren't covered in detail on this page, but they show up shortly after the basics above, so it's worth recognizing them early:

TermWhat it means
FunctionA rule that assigns exactly one output to every input, usually written f(x).
SlopeHow steep a line is - how much y changes for every 1 unit x changes, written as m in y = mx + c.
Y-interceptWhere a line crosses the vertical axis - the value of y when x = 0.
DomainThe complete set of valid input values (x-values) a function can accept.
Root / ZeroA value of x that makes an equation equal zero - the solutions to a quadratic equation are also called its roots.

Getting the Most Out of This Section

Each topic page above covers one area in depth, with a clear definition, worked examples, and the mistakes to watch for. Use the calculator on the home page to check your work as you move through the examples.

Algebra rewards steady practice in small doses far more than cramming it all in one sitting. Nail the vocabulary, work through the practice problems above without peeking at the answers first, then move through the topic pages one at a time in the order suggested. It really does click once you've written out enough worked examples yourself - and every formula on this page will still be here whenever you need to look one up again.

Frequently Asked Questions

What is the easiest way to learn algebra?
Nail the vocabulary first - actually know what a variable, term, and coefficient are - then work through one-step equations before two-step ones. Most of the confusion people run into comes from jumping to factoring or quadratics before the basics feel second nature.
What grade do you learn algebra in?
Pre-algebra usually kicks off around grade 6-7 in most school systems, with Algebra 1 landing in grade 8 or 9. Everyone moves through it at their own speed though, so if you're tackling this earlier or later than that timeline, you're fine.
What is the difference between an expression and an equation?
An expression is just a math phrase - no equals sign - like 3x + 5. You can simplify it, but there's nothing to "solve" since it never claims two things are equal. An equation, like 3x + 5 = 20, does have an equals sign, which means you can solve it for the variable.
Why do we use letters like x and y in algebra?
Letters (variables) hold the place of a number that's either unknown or able to change. Writing a letter instead of a specific number lets you express one general rule - say, the area of a rectangle - that stays true no matter what actual numbers get plugged in.
Do I need algebra if I am not going into a math career?
Pretty much, yes - just not in the form of factoring polynomials. Splitting a check, comparing interest rates on a loan, scaling a recipe up or down, and figuring out a percentage discount all lean on the exact same reasoning algebra trains.
What is the fastest way to check if I solved an equation correctly?
Plug your answer back into the original equation wherever the variable was. If both sides land on the same value, you got it right. This quick check catches nearly every arithmetic slip before it becomes a bigger problem.
What comes after Algebra 1?
Most school tracks run Algebra 1 → Geometry → Algebra 2 → Pre-Calculus → Calculus, although the exact order shifts depending on the school or country. Algebra 2 circles back through everything from Algebra 1 in more depth and layers on functions, matrices, and tougher polynomial work.
Can I use a calculator while learning algebra?
Sure, for double-checking arithmetic - but work the algebra steps out yourself first. A calculator can confirm 3 × 7 = 21 in an instant, but it won't tell you which operation to reach for next, and that reasoning is really what algebra is trying to teach you.