Algebraic Formula — Definition, List, and Worked Examples

TL;DR
An algebraic formula is a general rule, written with letters and symbols, that lets you compute one quantity from others — like the quadratic formula $x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$. This article gives you a working definition, the standard formula list by topic, how a formula differs from an identity, six worked examples, and the mistakes that trip students up.
BT
Bhanzu TeamLast updated on July 1, 202611 min read

Algebraic Formula — Definition, List, and Worked Examples

Meta Title: Algebraic Formula — Definition, List, and Examples Meta Description: An algebraic formula is a general rule written in symbols. See the full list, how formulas differ from identities, and worked examples.

TL;DR

An algebraic formula is a general rule, written with letters and symbols, that lets you compute one quantity from others — like the quadratic formula $x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$. This article gives you a working definition, the standard formula list by topic, how a formula differs from an identity, six worked examples, and the mistakes that trip students up.

Why one wrong sign in a formula sank a $125 million spacecraft

A correct formula fed with the wrong units once destroyed a $125 million NASA spacecraft. In 1999, the Mars Climate Orbiter burned up over Mars because two teams plugged numbers into the same navigation formula using different units, pounds versus newtons. The formula was right; the way it was fed was not. That is the quiet truth about every algebraic formula: it is only as reliable as your grasp of what each symbol stands for.

A symbolic algebra formula sheet with the quadratic formula highlighted, surrounded by lettered expressions, on a clean grid background.
[IMAGE PROMPT: A clean, modern "formula sheet" graphic on a soft grid background. Center-stage, large and highlighted in a teal box, the quadratic formula x = (−b ± √(b²−4ac)) / 2a. Around it, smaller faded formulas: (a+b)² = a² + 2ab + b², area = length × width, d = rt. Each variable (a, b, c, x) in a distinct colour with a tiny label "constant" or "unknown". Flat vector style, no photoreal elements.]
Caption: An algebraic formula is a reusable rule — fixed structure, variable inputs.
Alt text: Algebra formula sheet with the quadratic formula highlighted among other lettered formulas.

What is an algebraic formula?

An algebraic formula is an equation that states a fixed relationship between quantities using letters (variables) and symbols, so the same rule can be reused for any valid set of inputs. The letters stand for numbers — some fixed (constants), some unknown (variables) — and the formula tells you how they combine.

Take the area of a rectangle: $A = l \times w$. The structure never changes — feed it a length and a width, and it returns the area. That reusability is the whole point. A formula is a packaged calculation you can carry from problem to problem.

Two words matter here, and students mix them up constantly:

  • A variable is a letter standing for a value that can change ($x$, $l$, $w$).

  • A constant is a fixed number, named or numeric ($\pi$, $2$, the coefficient in front of a term).

A coefficient is the number multiplying a variable — the $2$ in $2ab$. We define these now because every formula below leans on them.

Is an algebraic formula the same as an algebraic identity?

No, and this is the distinction worth getting right. An algebraic identity is a special kind of formula that is true for every value of its variables — the two sides are interchangeable. $(a+b)^2 = a^2 + 2ab + b^2$ holds whether $a$ is 3, $-7$, or $0.0001$.

A general algebraic formula need not hold for all values. The quadratic formula only "solves" $ax^2 + bx + c = 0$ — it is built for that equation, not a universal truth about all numbers. A speed formula $d = rt$ describes a physical relationship, not an identity.

So: every identity is a formula, but not every formula is an identity. The full identity family — $(a \pm b)^2$, $a^2 - b^2$, the cube expansions — gets its own treatment in our companion article on algebraic identities. This article is the wider net: identities plus the solving formulas, area formulas, and sequence formulas that make up a student's working toolkit.

The standard algebraic formula list, by topic

Rather than dump a wall of symbols, here is the working set grouped by where you meet it. Each row is a formula you will use repeatedly.

Topic

Formula

What it does

Square of a sum

$(a+b)^2 = a^2 + 2ab + b^2$

Expands a squared binomial

Square of a difference

$(a-b)^2 = a^2 - 2ab + b^2$

Expands a squared difference

Difference of squares

$a^2 - b^2 = (a+b)(a-b)$

Factors a difference of two squares

Sum of cubes

$a^3 + b^3 = (a+b)(a^2 - ab + b^2)$

Factors a sum of cubes

Difference of cubes

$a^3 - b^3 = (a-b)(a^2 + ab + b^2)$

Factors a difference of cubes

Quadratic formula

$x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$

Solves $ax^2 + bx + c = 0$

Distance, rate, time

$d = rt$

Relates distance to speed and time

Slope of a line

$m = \frac{y_2 - y_1}{x_2 - x_1}$

Measures steepness between two points

nth term of an AP

$a_n = a + (n-1)d$

Finds any term of an arithmetic progression

The cube formulas connect to the broader expansion family in cube of a binomial, and the general expansion of $(a+b)^n$ is handled by the binomial theorem. The sequence row links forward to arithmetic progressions.

Examples of Algebraic Formula

Six worked problems, easier to harder. Each one chooses the right formula first, then substitutes carefully.

Example 1

Expand $(x + 5)^2$ using the square-of-a-sum formula.

Match the pattern: here $a = x$ and $b = 5$.

$(x+5)^2 = x^2 + 2(x)(5) + 5^2$

$= x^2 + 10x + 25$

Final answer: $x^2 + 10x + 25$.

Example 2

Factor $49 - m^2$ using the difference-of-squares formula.

A common first move is to write $49 - m^2 = (7 - m)^2$, treating it like a perfect square.

Why that is wrong. $(7-m)^2$ expands to $49 - 14m + m^2$ — a middle term appears, and the sign on $m^2$ is positive, not negative. That cannot match $49 - m^2$.

The correct method. Difference of squares factors into two different brackets, a sum and a difference:

$49 - m^2 = 7^2 - m^2 = (7 + m)(7 - m)$

Final answer: $(7+m)(7-m)$. The two-bracket form, not the squared form, is what difference of squares produces.

Example 3

Use the quadratic formula to solve $x^2 - 5x + 6 = 0$.

Identify $a = 1$, $b = -5$, $c = 6$.

$x = \frac{-(-5) \pm \sqrt{(-5)^2 - 4(1)(6)}}{2(1)}$

$x = \frac{5 \pm \sqrt{25 - 24}}{2}$

$x = \frac{5 \pm 1}{2}$

So $x = 3$ or $x = 2$.

Final answer: $x = 3$ or $x = 2$.

Example 4

A car travels at $60$ km/h for $2.5$ hours. Use $d = rt$ to find the distance.

$d = r \times t = 60 \times 2.5 = 150$

Final answer: $150$ km. Notice the formula does no thinking about units for you — keep hours with hours and km/h with km/h.

Example 5

Find the 12th term of the sequence $3, 7, 11, 15, \dots$ using $a_n = a + (n-1)d$.

First term $a = 3$; common difference $d = 7 - 3 = 4$; term number $n = 12$.

$a_{12} = 3 + (12 - 1)(4)$

$a_{12} = 3 + 44 = 47$

Final answer: $47$.

Example 6

Factor $8x^3 + 27$ using the sum-of-cubes formula.

Rewrite each piece as a cube: $8x^3 = (2x)^3$ and $27 = 3^3$. So $a = 2x$, $b = 3$.

$a^3 + b^3 = (a+b)(a^2 - ab + b^2)$

$8x^3 + 27 = (2x + 3)\big((2x)^2 - (2x)(3) + 3^2\big)$

$= (2x + 3)(4x^2 - 6x + 9)$

Final answer: $(2x+3)(4x^2 - 6x + 9)$.

Where algebraic formulas earn their keep

The real value of a formula is that it lets you stop re-deriving and start solving. Before symbolic algebra, every problem was argued out in words or geometry — slow, error-prone, and impossible to reuse.

  • Engineering and physics run on formulas: stress, current, projectile range. Each is a packaged relationship an engineer trusts so they can build on top of it.

  • Finance uses compound-interest and annuity formulas to price loans and savings without recomputing from scratch each time.

  • Everyday estimation leans on $d = rt$ and percentage formulas more than most people notice — figuring out arrival times, tips, and discounts.

The person who first pushed algebra toward this kind of general, symbolic rule was the Persian scholar al-Khwarizmi, whose 9th-century work on balancing equations gave us the word algebra itself. You can read more about him at MacTutor. The leap from "solve this specific problem" to "here is a rule for all problems of this shape" is the leap a formula represents.

Common Mistakes With Algebraic Formulas

Mistake 1: Treating every formula as an identity

Where it slips in: Students apply the quadratic formula to an equation that is not in $ax^2 + bx + c = 0$ form, or assume a formula holds for inputs outside its valid range.

Don't do this: Plug $2x^2 + 3x = 5$ straight into the quadratic formula with $c = 5$.

The correct way: First rearrange to standard form $2x^2 + 3x - 5 = 0$, so $c = -5$. A formula has a required input shape — meet it before substituting. The habit that fixes this: always write the equation in the formula's standard form before reading off $a$, $b$, $c$.

Mistake 2: Dropping the middle term when squaring

Where it slips in: Expanding $(a+b)^2$. The first instinct is to write $a^2 + b^2$.

Don't do this: $(x+4)^2 = x^2 + 16$.

The correct way: $(x+4)^2 = x^2 + 8x + 16$. The first thing most students reach for when squaring a binomial is to square each term and stop — the cross term $2ab$ is what gets dropped, every time. Picture a square of side $a+b$: it splits into an $a^2$ tile, a $b^2$ tile, and two $ab$ rectangles. Those two rectangles are the $2ab$.

Mistake 3: Sign errors when constants are negative

Where it slips in: The quadratic formula, when $b$ is negative. The rusher copies $b$ into $-b$ without changing its sign; the second-guesser changes it twice and cancels the fix.

Don't do this: For $x^2 - 5x + 6 = 0$, write $-b = -5$.

The correct way: $-b = -(-5) = +5$. Substitute the whole value of $b$, including its sign, inside the brackets.

This same class of error has real-world cost. The Mars Climate Orbiter loss in 1999 was, at root, a substitution-with-wrong-input failure — the right formula fed values in the wrong system. You can read NASA's account of the Mars Climate Orbiter mishap. A formula never checks your inputs for you.

Conclusion

  • An algebraic formula is a general, reusable rule written in symbols — supply the inputs and it returns the output.

  • Every identity is a formula, but not every formula is an identity; identities hold for all values, solving formulas hold only for their target equation.

  • Group your formulas by topic (squares, cubes, quadratic, sequences) rather than memorising a flat list.

  • The most common errors are dropping the $2ab$ middle term, mishandling negative inputs, and applying a formula before the equation is in its required standard form.

  • Get the squared-binomial and quadratic formulas solid first — most of later algebra builds on them.

Sharpen Your Algebra — Three Practice Problems

Work through these, then check the linked sections if you stall.

  1. Expand $(2y - 3)^2$. (If stuck, revisit Example 1 and Mistake 2.)

  2. Solve $x^2 + 4x - 12 = 0$ with the quadratic formula. (Revisit Example 3.)

  3. Factor $x^3 - 64$. (Revisit Example 6 and switch to the difference-of-cubes form.)

To take formula fluency further with a teacher, explore Bhanzu's algebra tutor sessions or browse help with algebra — both walk through this exact substitution discipline step by step. Want a live Bhanzu trainer to work through more formula problems? Book a free demo class.

Read More

Was this article helpful?

Your feedback helps us write better content

Frequently Asked Questions

What is the most important algebraic formula to learn first?
The square-of-a-sum and difference-of-squares formulas. They appear inside factoring, completing the square, and the quadratic formula's derivation — almost everything later leans on them.
Is the quadratic formula an identity?
It is a solving formula built specifically for equations of the form $ax^2 + bx + c = 0$. An identity, like $(a+b)^2 = a^2 + 2ab + b^2$, is true for all values of its variables.
How many algebra formulas do I actually need to memorise?
Fewer than the lists suggest. Memorise the squared-binomial and difference-of-squares identities, the quadratic formula, and the sequence formulas. The cube and factoring formulas can be re-derived from these or looked up until they stick.
What is the difference between a formula and an expression?
An expression ($3x + 5$) has no equals sign and states no relationship — it is just a quantity. A formula is an equation that relates quantities and can be evaluated once you supply the inputs.
✍️ 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 →