KEVOS
ArticlesServicesCase studiesAboutContact
ArticlesServicesCase studiesAboutContact
← ArticlesCommon Algebraic Errors and How to Avoid ThemEngineering · Engineering MathematicsLesson 2/4← PrevNext →
GuidePublished 15 Aug 20265 min readBy Kevin Jogincommon errorsalgebra mistakeschecking workcounterexamples
On this page

Ask about this page

KEVOS AICommon Algebraic Errors and How to Avoid Them

KEVOS knowledge first · trusted web sources when needed

Reference and Synthesis

Common Algebraic Errors and How to Avoid Them

The errors that recur across every topic in this collection, why each is tempting, and a counterexample or check that settles each one in seconds.

Category Engineering / MathematicsStream Reference and SynthesisLevel CoreReading 5 minSource Whole source

What this page covers

  • Recognise the standard error patterns before making them
  • Apply a numerical test to settle a doubtful step
  • Understand why each error is tempting
  • Build habits that prevent whole classes of mistake
On this page
  1. Assuming something distributes
  2. Sign errors
  3. Cancelling what cannot be cancelled
  4. Losing or gaining solutions
  5. Even powers and even roots
  6. Index law errors
  7. Errors specific to the later topics
  8. Three habits worth building
  9. Frequently asked questions

Assuming something distributes

Multiplication distributes over addition. Almost nothing else does, and this single over-generalisation accounts for more errors than any other cause.

What does not distribute
WrongRightCounterexample
(a + b)2 = a2 + b2a2 + 2ab + b2a = b = 1: 4, not 2
√a + b = √a + √bNo simplification√9 + 16 = 5, not 7
1a + b = 1a + 1baba+b inverteda = b = 1: 12, not 2
sin(u + v) = sin u + sin vsin ucos v + cos usin vu = v = π2: 0, not 2
|a + b| = |a| + |b|≤, with equality only for matching signs|5 - 7| = 2, not 12
(ab)n = an + bnanbna = b = 2, n = 2: 16, not 8
The habit that prevents all of these

Whenever tempted to split an operation across a sum, substitute a = b = 1 and compare. It takes three seconds and settles every row above.

Sign errors

Where signs go missing
WrongRightWhy it happens
-(a - b) = -a - b-a + bThe minus was applied to one term only
1 - (-3) = -2= 4Double negative not resolved
(-x)2 = -x2= x2The bracket was ignored
b2 = -25 when b = -5= 25The square of a negative is positive
-4ac with c < 0 taken as negative-4(2)(-2) = +16Two negatives were not combined
(5i)2 = 25= -25i2 = -1 was forgotten
The rule that prevents most of these

Whenever a minus sign stands in front of a bracket, expand it on a separate line before doing anything else. The extra line costs seconds and eliminates the entire category.

Cancelling what cannot be cancelled

Cancellation removes a factor common to the whole numerator and the whole denominator. It never removes a term.

Terms against factors
WrongRightTest
x + 2x = 2No simplificationAt x = 2 it is 2; at x = 1 it is 3
x2 + 1x + 1 = xNo simplificationAt x = 1: 22 = 1, not 1... and at x = 2: 53, not 2
a + ba = b1 + baThe numerator is a sum
The test

Ask: can the numerator be written as (the thing to cancel) times something? If not, nothing cancels.

Losing or gaining solutions

Operations that change the solution set
OperationRiskRemedy
Dividing by a variableLoses solutionsFactor instead: x2 = 3x gives x(x - 3) = 0
Squaring both sidesGains solutionsCheck every candidate in the original
Taking a square rootLoses oneInclude the ±
Multiplying by an expressionMay gainCheck the multiplier is non-zero
Cancelling a common factor from an equationLosesSet the factor to zero as a separate case

The first two are the important ones. Dividing x2 = 3x by x discards x = 0; squaring √x + 2 = x - 4 introduces x = 2, which fails on substitution.

Even powers and even roots

Where absolute values appear unexpectedly
WrongRightTest
√x2 = x|x|At x = -3: 3, not -3
(x6)1/2 = x3|x3|At x = -2: 8, not -8
x2 = 9 gives x = 3x = ±3Both squares give 9
(-16)1/4 = -2Not a real number(-2)4 = 16
√4 = ±2= 2The symbol names the principal root
Two rules that look contradictory but are not

√4 = 2 (one value), but x2 = 4 gives x = ±2 (two values). The symbol names a number; the equation asks which numbers satisfy it.

Index law errors

Confusing the three laws
WrongRightCounterexample
aman = amnam+n22 · 23 = 32, not 64
(am)n = am+namn(22)3 = 64, not 32
a0 = 0a0 = 1Otherwise Law 1 fails
a-m = -am1am2-3 = 18
4y-2 = 14y24y2The exponent attaches to y only
23 · 34 = 67No simplificationDifferent bases do not combine

Errors specific to the later topics

Trigonometry, vectors and matrices
WrongRightNote
cos(u+v) = cos ucos v + sin usin vThe sign is minusCheck at u = v = π2: must give -1
x = sin t, y = cos tThe other way roundAt t = 0 the point is (1, 0)
sec t = 1sin t1cos tThe co in cosecant pairs it with sine
AB = BA for matricesGenerally falseCompute both and compare
a21 read as row 1, column 2Row index firsta21 is row 2, column 1
Adding vector magnitudesAdd components|u + v| ≠ |u| + |v|
Multiplying out a variable denominator in an inequalityUse a sign diagramIts sign may reverse the inequality

Three habits worth building

  1. Substitute a number. Test any doubtful identity at x = 1 or x = 2. Agreement is not proof; disagreement is refutation. This one habit catches most of the errors above.
  2. Expand a leading minus on its own line. Never distribute a negative sign mentally. It costs one line and removes a whole category of error.
  3. Ask what could be zero. Before dividing by anything containing a variable, before cancelling, and whenever a denominator appears. Every excluded value should be recorded when it arises, not recovered later.

A fourth is worth adding for longer work: check in the original, never in a line partway through. An error made early will be faithfully reproduced by any check that starts downstream of it.

Frequently asked questions

What is the single most useful check?

Substituting a convenient number. Most errors on this page are exposed in seconds by testing at x = 1 or x = 2. Agreement is not proof, but disagreement is instant refutation.

Why do these errors keep happening?

Almost all of them are over-generalisations of a rule that is true somewhere else. Multiplication distributes over addition, so it feels as though squaring should too.

Is there a pattern to them?

Two: assuming an operation distributes when it does not, and losing a sign when a negative is involved. Between them they account for most of the list.

How do I stop making them?

Slow down at exactly three points: any minus sign in front of a bracket, any division by something containing a variable, and any even root or even power.

Related pages

  • Mathematical Notation and Symbols: a Reference
  • The Field Laws of Real Number Arithmetic
  • Corrections and Judgement Calls on the Source Notes
  • Foundation Mathematics: the Study Pathway

Source. Compiled from the whole source, and from the pitfalls the teaching notes flag explicitly.

This page is an original exposition prepared for the KEVOS® knowledge library. It restates, reorganises and verifies the mathematics of the supplied teaching notes; it is not a reproduction of them. Numerical values taken from the notes are identified as source examples and are not presented as engineering standards.

Continue learning

Mathematical Notation and Symbols: a ReferenceGuide · Engineering MathematicsNEXT LESSON →Corrections and Judgement Calls on the Source NotesGuide · Engineering MathematicsFoundation Mathematics: the Study PathwayGuide · Engineering MathematicsThe PMI Learning Curve (Start Here)Guide · Engineering Mathematics
KEVOS · Engineering, manufacturing and project improvement
ArticlesServicesCase studiesAboutContact
© 2026 KEVOS®