Basics of Algebra — Variables, Expressions, Equations

#Algebra
TL;DR
The basics of algebra are five objects — variables, constants, expressions, equations, and inequalities — combined by the four arithmetic operations under one balance rule. This article walks through each foundational concept with three worked examples, the most common beginner errors, and the 9th-century origin of the word algebra itself.
BT
Bhanzu TeamLast updated on May 27, 20269 min read

Around 820 CE, a scholar in Baghdad's House of Wisdom wrote a book whose Arabic title contained the word al-jabr — meaning "restoration" or "the reunion of broken parts." Twelve centuries later, that word names the entire branch of mathematics this article is about. The scholar was Muḥammad ibn Mūsā al-Khwārizmī, and his book Kitāb al-Jabr wa-l-Muqābala described exactly the procedures students still call algebra today — moving terms across an equals sign, balancing both sides, solving for the unknown.

The basics of algebra are the small set of objects (variables, constants) and operations (addition, subtraction, multiplication, division, exponents, equals) you use to write down relationships involving unknown quantities and solve for them. Everything from a Grade 6 word problem to differential calculus is built on these five ideas.

What Is Algebra?

Algebra is the branch of mathematics that uses letters and symbols to represent numbers, quantities, and the relationships between them. Where arithmetic answers "what is $3 + 5$?", algebra answers "if $x + 5 = 12$, what is $x$?"

The five concepts that make up the basics of algebra:

  1. Variables — letters that stand in for unknown numbers ($x$, $y$, $n$).

  2. Constants — fixed numerical values ($7$, $-\tfrac{1}{2}$, $\pi$).

  3. Expressions — combinations of variables and constants joined by operations ($3x + 5$, $\tfrac{a}{b} - 2$).

  4. Equations — statements that two expressions are equal ($3x + 5 = 14$).

  5. Inequalities — statements that one expression is greater or less than another ($2x + 1 \leq 9$).

To "do algebra" is to apply legal moves — adding the same thing to both sides, factoring, distributing — that preserve the truth of the statement until the unknown stands alone.

The Building Blocks in Detail

Variables And Constants

A variable holds a value you don't yet know — or a value that can change. In $x + 3 = 10$, $x$ is the unknown; you do work to discover that $x = 7$. In the formula $A = \pi r^2$, the radius $r$ is a variable because it varies from circle to circle.

A constant does not change. In $3x + 5$, the 3 and the 5 are constants (specifically, 3 is the coefficient of $x$, and 5 is a free constant term).

Expressions vs Equations

An expression is a phrase: $3x + 5$. No equals sign, so you can't "solve" it — only evaluate it (when given a value for $x$) or simplify it (combine like terms).

An equation is a sentence: $3x + 5 = 14$. The equals sign asserts that the two sides are the same number. Solving the equation means finding the value (or values) of $x$ that make this assertion true.

Operations And The Order They Follow

Algebra inherits the four arithmetic operations — addition, subtraction, multiplication, division — and adds exponents and roots. The order of operations (PEMDAS in the US, BODMAS in the UK) tells you what to evaluate first: parentheses, exponents, multiplication and division (left to right), addition and subtraction (left to right).

For Grade 6–8 students at Bhanzu, the order-of-operations rule is reinforced in the first 12 minutes of every algebra session — because almost every error in the next 40 minutes traces back to a step taken out of order.

The Five Algebra Rules Every Student Needs

Rule

What it says

Example

Commutative

Order doesn't matter for $+$ and $\times$

$3 + 7 = 7 + 3$; $2x \cdot 5 = 5 \cdot 2x$

Associative

Grouping doesn't matter for $+$ and $\times$

$(2 + 3) + 4 = 2 + (3 + 4)$

Distributive

Multiplication distributes over $+$ and $-$

$3(x + 4) = 3x + 12$

Identity

Adding 0 or multiplying by 1 changes nothing

$x + 0 = x$; $x \cdot 1 = x$

Inverse

Every $a$ has $-a$ and (if $a \neq 0$) $1/a$

$5 + (-5) = 0$; $5 \cdot \tfrac{1}{5} = 1$

These five rules — together with "whatever you do to one side, do to the other" — are the entire grammar of school algebra.

Three Worked Examples — Quick, Standard, Stretch

Quick. Solve $x + 7 = 12$.

Subtract 7 from both sides: $x = 12 - 7 = 5$.

Final answer: $x = 5$.

Standard (The Mistake Worth Making Once). Solve $3x - 4 = 2x + 11$.

The wrong path. A student thinks "I'll move the 4 over first" and writes $3x = 2x + 11 + 4 = 2x + 15$, then divides everything by $x$: $3 = 2 + \tfrac{15}{x}$, which gives $\tfrac{15}{x} = 1$ and $x = 15$. Plug back in: $3(15) - 4 = 41$ on the left and $2(15) + 11 = 41$ on the right. The number happens to be right, but the reasoning was broken — dividing both sides by $x$ assumed $x \neq 0$ without checking, and the algebra was three steps longer than it had to be.

The rescue. Collect the variable terms on one side and the constants on the other. Subtract $2x$ from both sides: $x - 4 = 11$. Add 4 to both sides: $x = 15$. Same answer, half the work, no hidden assumption.

Final answer: $x = 15$.

Stretch. Solve the literal equation $a x + b = c$ for $x$, where $a, b, c$ are constants and $a \neq 0$.

Subtract $b$ from both sides: $ax = c - b$.

Divide both sides by $a$: $x = \tfrac{c - b}{a}$.

Final answer: $x = \tfrac{c - b}{a}$, valid for any $a \neq 0$. This is the general solution of a linear equation in one variable — every specific Grade 7 problem is a numerical instance of this formula.

Why Algebra Matters — The Real-World Pay-Off

Algebra is the language every quantitative field speaks. The substance of algebra — using a symbol to stand for an unknown so you can reason about it — is what makes science, engineering, and economics possible.

  • Physics. Newton's second law $F = ma$ is an algebraic equation. Solving for any one of $F$, $m$, or $a$ given the other two is daily work for engineers.

  • Economics. Demand and supply curves intersect at a price solved by an algebraic system — exactly what Adam Smith described qualitatively a century before economists wrote it as equations.

  • Computer science. Every programming language uses variables — the algebraic idea of a named placeholder for a value. Recursion, complexity analysis, and cryptography are downstream of algebraic reasoning.

  • Medicine. Drug dosing scales an effective adult dose to a child's body weight by an algebraic ratio — the same proportion logic that drives Grade 6 worksheets.

"Whatever you do to one side, you do to the other." — the entire procedural heart of algebra, in eleven words.

Algebra also moved mathematics from describing numbers we already know to reasoning about quantities we haven't yet found. That shift — from arithmetic to algebra — is what made analytic geometry possible in the 1600s, and analytic geometry made calculus possible. Take away algebra and the entire chain collapses.

Slip-Ups That Cost Marks on Basics of Algebra

Mistake 1: Treating the equals sign as a "do this now" command.

Where it slips in: Younger students see $3 + 4 = $ as a prompt to compute, then in algebra carry that habit to $3 + 4 = x - 2$, treating the left side as the "answer" and the right side as something to evaluate next.

Don't do this: Read $3 + 4 = x - 2$ as "compute $3 + 4$, then $x$ equals that minus 2."

The correct way: The equals sign is a balance, not an arrow. $3 + 4$ and $x - 2$ are two names for the same number. Solving means finding the $x$ that makes them name the same number: $x = 9$.

Mistake 2: Distribution errors with negative signs.

Where it slips in: A student expanding $-(2x - 5)$ writes $-2x - 5$, missing the second sign flip.

Don't do this: $-(2x - 5) = -2x - 5$.

The correct way: $-(2x - 5) = -2x + 5$. The negative sign distributes across every term inside the parentheses. The "rusher" archetype gets caught by this almost every time a Bhanzu Grade 7 cohort works through their first multi-step equation.

Mistake 3: Combining unlike terms.

Where it slips in: A student simplifying $3x + 5y - 2x + 4$ combines all four terms without checking variable matches.

Don't do this: Report $3x + 5y - 2x + 4 = 10xy$.

The correct way: Like terms share the same variable to the same power. $3x$ and $-2x$ combine to $x$; $5y$ stands alone; $4$ stands alone. Final form: $x + 5y + 4$.

The real-world version. When NASA's Mars Climate Orbiter was lost in 1999, one team's numbers were in pound-force-seconds and the other's were in newton-seconds. The teams "combined" unlike terms — quantities that looked similar (impulse) but were in different units. The result wasn't a bad answer; it was a destroyed spacecraft.

The People Behind Algebra

  • Muḥammad ibn Mūsā al-Khwārizmī (Persia/Baghdad, c. 780–850) wrote Kitāb al-Jabr wa-l-Muqābala around 820 CE. The word algebra comes from his title. His procedures for solving linear and quadratic equations are still recognisable in today's textbooks.

  • François Viète (France, 1540–1603) introduced the convention of using letters from the end of the alphabet for unknowns ($x, y, z$) and letters from the start for parameters ($a, b, c$). Modern algebraic notation starts with him.

  • René Descartes (France, 1596–1650) standardised exponent notation ($x^2$ instead of $xx$) in La Géométrie (1637) and connected algebra to geometry through coordinates — the move that ultimately made calculus possible.

Why it matters: every notation in a modern algebra textbook is a hand-me-down from one of these three.

Conclusion

  • The basics of algebra are variables, constants, expressions, equations, and inequalities — five objects that combine to describe quantitative relationships.

  • The equals sign is a balance, not a command — every legal move applies to both sides at once.

  • Most beginner errors trace to negative-sign distribution or combining unlike terms — slow the algebra down at those two steps.

  • The word algebra comes from al-Khwārizmī's 820 CE treatise; modern notation is owed to Viète and Descartes.

  • Algebra is the entry point to every other quantitative field — physics, economics, computer science, medicine all run on it.

Sharpen Your Algebra — Three Practice Problems

  1. Solve $5x - 8 = 3x + 12$.

  2. Simplify $4(2x - 3) - 2(x + 5)$.

  3. Solve the literal equation $V = \pi r^2 h$ for $h$.

If you get stuck on Problem 2, return to the negative-distribution mistake above — that's where most students lose the sign on the $-2(x + 5)$ term.

Want a live Bhanzu trainer to walk your child through the foundations of algebra? Book a free demo class — online globally, or in person at our McKinney, TX center.

Book a Free Demo

Was this article helpful?

Your feedback helps us write better content

Frequently Asked Questions

What are the basics of algebra?
Variables, constants, expressions, equations, and the operations that link them — plus the rule that whatever you do to one side of an equation, you do to the other.
Is algebra hard for beginners?
It feels hard at first because the equals sign means something different from arithmetic. Once that shift clicks — equals as balance, not as "compute this" — most of algebra follows.
What grade does algebra start in?
Pre-algebra (variables, simple equations) starts around Grade 5–6. Formal algebra typically begins in Grade 7–8 and is required through high school. Both CCSS Grade 6 EE and NCERT Class 6 Chapter 11 introduce algebraic expressions at the same age.
What's the difference between an expression and an equation?
An expression has no equals sign; you simplify or evaluate it. An equation has an equals sign; you solve it.
How do I know which side to move a term to?
It doesn't matter — both work. Convention is to keep variable terms on the left and constants on the right, but algebra doesn't care which side ends up holding $x$.
Do I need to memorise formulas to learn algebra?
No. The whole point of algebra is that you can derive formulas from the basic moves. Memorising helps speed, but understanding the moves is what makes the formulas survive in your memory.
What comes after the basics of algebra?
Linear equations in two variables, factoring, quadratic equations, functions, and eventually pre-calculus. Each step uses the same five building blocks; the problems just get more layered.
✍️ Written By
BT
Bhanzu Team
Content Creator and Editor
Bhanzu’s editorial team, known as Team Bhanzu, is made up of experienced educators, curriculum experts, content strategists, and fact-checkers dedicated to making math simple and engaging for learners worldwide. Every article and resource is carefully researched, thoughtfully structured, and rigorously reviewed to ensure accuracy, clarity, and real-world relevance. We understand that building strong math foundations can raise questions for students and parents alike. That’s why Team Bhanzu focuses on delivering practical insights, concept-driven explanations, and trustworthy guidance-empowering learners to develop confidence, speed, and a lifelong love for mathematics.
Related Articles
Book a FREE Demo ClassBook Now →