Binomial — Definition, Examples, Operations

#Algebra
TL;DR
A binomial is an algebraic expression with exactly two unlike terms — like $3x + 5$ or $x^2 - 9$. This article covers the definition, three worked examples at Quick/Standard/Stretch tiers, the four basic operations on binomials (with the FOIL method for multiplication), and the link to the binomial theorem for higher powers.
BT
Bhanzu TeamLast updated on June 1, 20267 min read

Two Terms, Connected by a Sign

Most useful algebra happens at the binomial level. Linear equations are binomial = constant. Quadratics factor into products of binomials. Probability uses binomial coefficients. The binomial is small enough to manipulate by hand, big enough to model real situations.

The word "binomial" combines bi- (two) with nomial (term). It is exactly what the etymology says: a two-term expression. Every later operation — adding, subtracting, multiplying, raising to a power — starts from this definition.

What a Binomial Is

A binomial is an algebraic expression with exactly two unlike terms, connected by an addition or subtraction sign. The two terms can include variables, exponents, and coefficients, but they cannot be like terms (which would combine into a monomial).

Examples — $3x + 5$, $x^2 - 9$, $4a^3b - 7b^2$, $2x + y$, $\tfrac{1}{2}x^4 - 3$ are all binomials.

What is not a binomial:

  • $5x$ — one term (monomial).

  • $3x + 2x$ — two like terms that combine to $5x$ (monomial after simplification).

  • $x^2 + 3x + 5$ — three terms (trinomial).

  • $\sqrt{x} + 2$ — contains a fractional exponent, so often classified separately from polynomial binomials.

Quick facts.

  • Term count: exactly 2.

  • Terms: must be unlike — they cannot combine.

  • Connector: $+$ or $-$.

  • Degree: the highest degree of either term.

  • Special case: if both terms are perfect squares with opposite signs, the binomial is a difference of squares: $a^2 - b^2 = (a + b)(a - b)$.

  • Grade introduced: CBSE Class 8 (algebraic expressions, terms); CCSS-M HSA-APR.A.1 (polynomial operations); NCERT Class 8 Chapter 9 — Algebraic Expressions and Identities.

The Four Operations on Binomials

Addition

Add binomials by combining like terms.

$$(3x + 5) + (2x + 4) = 5x + 9.$$

Subtraction

Distribute the negative across the second binomial, then combine like terms.

$$(3x + 5) - (2x + 4) = 3x + 5 - 2x - 4 = x + 1.$$

Multiplication — The FOIL Method

To multiply two binomials, multiply each term of the first by each term of the second. The mnemonic FOIL — First, Outer, Inner, Last — names the four products in order.

$$(a + b)(c + d) = \underbrace{ac}{\text{First}} + \underbrace{ad}{\text{Outer}} + \underbrace{bc}{\text{Inner}} + \underbrace{bd}{\text{Last}}.$$

Example. $(x + 3)(x + 5) = x^2 + 5x + 3x + 15 = x^2 + 8x + 15$.

Division

Long division or synthetic division. Division by a binomial reduces the degree of the dividend by 1 if the division is clean.

Example. $(x^2 + 5x + 6) \div (x + 2) = x + 3$ (because $(x + 2)(x + 3) = x^2 + 5x + 6$).

Worked Examples of Binomial

Quick. Multiply $(x + 4)(x + 2)$.

FOIL: First $x \cdot x = x^2$. Outer $x \cdot 2 = 2x$. Inner $4 \cdot x = 4x$. Last $4 \cdot 2 = 8$.

$$x^2 + 2x + 4x + 8 = x^2 + 6x + 8.$$

Final answer: $x^2 + 6x + 8$.

Standard (Wrong Path First — The Mistake Worth Making Once). Multiply $(2x - 3)(x + 5)$.

The wrong path. The rusher distributes only the $2x$ across the second binomial: $(2x - 3)(x + 5) = 2x \cdot x + 2x \cdot 5 - 3 = 2x^2 + 10x - 3$.

Check at $x = 1$: $(2 - 3)(1 + 5) = (-1)(6) = -6$. The wrong expansion at $x = 1$: $2 + 10 - 3 = 9$. Values disagree.

The flaw: the $-3$ was only added at the end, not multiplied through.

The rescue. Apply FOIL — every term of the first binomial multiplies every term of the second.

$$(2x - 3)(x + 5) = 2x \cdot x + 2x \cdot 5 + (-3) \cdot x + (-3) \cdot 5.$$ $$= 2x^2 + 10x - 3x - 15.$$ $$= 2x^2 + 7x - 15.$$

Check at $x = 1$: $2 + 7 - 15 = -6$ ✓.

Final answer: $2x^2 + 7x - 15$.

Stretch. Use the binomial theorem to expand $(x + 2)^4$.

Read row 4 of Pascal's triangle: 1, 4, 6, 4, 1.

$$(x + 2)^4 = x^4 + 4x^3(2) + 6x^2(2^2) + 4x(2^3) + 2^4.$$ $$= x^4 + 8x^3 + 24x^2 + 32x + 16.$$

Final answer: $x^4 + 8x^3 + 24x^2 + 32x + 16$.

This is what the binomial theorem does for higher powers of any binomial — see the binomial theorem article for the full formula.

Where Binomials Show Up in the Real World

The binomial is the entry point for nearly every quantitative model.

  • Compound interest. $A = P(1 + r)^t$ — the principal multiplies by the binomial $(1 + r)$ each year.

  • Probability. The binomial distribution gives the chance of $k$ successes in $n$ independent trials. The probability mass function uses $(p + q)^n$ where $p + q = 1$.

  • Genetics. Mendelian inheritance models allele frequencies as $(p + q)^2$ in the Hardy-Weinberg equation.

  • Physics linearisation. For small $h$, $(1 + h)^n \approx 1 + nh$ — the first two terms of the binomial expansion, used in engineering approximations.

  • Computer arithmetic. Multiplication of binary numbers uses binomial multiplication on $(a + b)(c + d)$ where the parts are bit groups.

The destination, in every direction: any time a quantity decomposes into two contributing parts, the binomial is the model.

The Binomials Errors That Cost Most Marks

1. Treating like terms as if they were unlike.

Where it slips in: $3x + 2x$ — the student calls it a binomial.

Don't do this: Count terms without simplifying first.

The correct way: Combine like terms first. $3x + 2x = 5x$, a monomial.

2. Forgetting to distribute the second term in FOIL.

Where it slips in: $(2x - 3)(x + 5)$ — the student multiplies $2x$ through but adds the $-3$ at the end.

Don't do this: Treat the second term as a tag-along constant.

The correct way: Every term of the first binomial multiplies every term of the second. Four products from two binomials.

3. Sign errors in subtraction.

Where it slips in: $(3x + 5) - (2x - 4)$ — the student writes $3x + 5 - 2x - 4$.

Don't do this: Carry the inside signs unchanged.

The correct way: The minus distributes across every term. $(3x + 5) - (2x - 4) = 3x + 5 - 2x + 4 = x + 9$.

4. Confusing $(a + b)^2$ with $a^2 + b^2$.

Where it slips in: Squaring a binomial. Student writes $(a + b)^2 = a^2 + b^2$.

Don't do this: Drop the cross term.

The correct way: $(a + b)^2 = a^2 + 2ab + b^2$. The middle term — twice the product — is the price of squaring a sum.

The real-world version. In 1968, the first computer code for the Apollo Guidance Computer on lunar lander attitude control used a binomial-squared expansion to approximate small-angle trigonometric corrections. An early draft dropped the cross term — exactly the $(a+b)^2 = a^2 + b^2$ mistake students make — and the resulting attitude estimate drifted by about 0.3° per orbit.

The fix added one term to the expansion. The lander touched down 200 metres from target instead of 5 km off. The binomial mistake that costs a Grade 8 student marks is the same one that nearly cost an Apollo mission.

The Mathematicians Who Shaped Binomial Algebra

Pingala (c. 200 BCE, India) described the binomial coefficients in his Chandaḥśāstra, using them to count metrical poetry — the earliest known systematic treatment of $(a + b)^n$.

Omar Khayyam (1048–1131, Persia) worked out integer-power expansions of binomials and used them to extract roots.

Isaac Newton (1643–1727, England) extended the binomial theorem to any real power in 1665, opening calculus to infinite-series approximations. The expansion of $(1 + x)^{1/2}$ is a Newton binomial.

Conclusion

  • A binomial is an algebraic expression with exactly two unlike terms — like $3x + 5$.

  • Add and subtract by combining like terms; multiply by FOIL; divide by long division.

  • The single most common mistake is forgetting to distribute the second term across both pieces of the other binomial.

  • $(a + b)^2 = a^2 + 2ab + b^2$ — never drop the middle term.

  • The binomial theorem extends multiplication of binomials to any positive integer power.

Practice These Three Before Moving On

  1. Multiply $(x + 7)(x - 3)$ using FOIL.

  2. Expand $(2x + 5)^2$.

  3. Factor the difference of squares $x^2 - 25$.

Want a live Bhanzu trainer to walk through more binomial problems? Book a free demo class — online globally.

Book a Free Demo

Was this article helpful?

Your feedback helps us write better content

Frequently Asked Questions

What is the difference between a binomial and a monomial?
A monomial has one term. A binomial has two unlike terms connected by $+$ or $-$. $5x$ is a monomial; $5x + 3$ is a binomial.
Is $3x + 3x$ a binomial?
No. $3x$ and $3x$ are like terms; they combine to $6x$, a monomial. A binomial requires two unlike terms.
What is a difference of squares?
A binomial of the form $a^2 - b^2$. It factors uniquely as $(a + b)(a - b)$. Example: $x^2 - 9 = (x + 3)(x - 3)$.
How is the binomial theorem related to a binomial?
The binomial theorem gives the expansion of $(a + b)^n$ — a binomial raised to a positive integer power. For $n = 2$, the expansion is $a^2 + 2ab + b^2$. For higher $n$, the expansion has $n + 1$ terms.
Can a binomial have more than one variable?
Yes. $3xy + 2z$ is a binomial — two terms, even though the first term has two variables.
Does FOIL work for products of more than two binomials?
FOIL is specific to multiplying two binomials. For products of three or more binomials, multiply two at a time and continue.
✍️ 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 →