Skip to content

10.4 Common Pitfalls

Common mistakes in mathematical writing and how to avoid them.

Mathematical writing can fail even when the main idea is correct. The problem is often not the mathematics itself, but the way the mathematics is presented. A reader may lose the argument because a term was not defined, a step was skipped, or a symbol was used in two different ways.

This section describes common mistakes and how to avoid them.

Using terms before defining them

A reader should know what every important word means before it is used.

For example, suppose a text says:

Let GG be connected. Then every two vertices of GG are joined by a path.

This may be confusing if the reader has not yet seen the words “connected,” “vertex,” or “path.” A better version defines the terms first:

A graph is connected if every two vertices are joined by a path. Let GG be a connected graph.

Definitions prepare the reader for the argument.

Hiding the assumptions

A theorem must state its assumptions clearly. Without assumptions, the claim may be false.

For example:

The square root of x2x^2 is xx.

This is not always true for real numbers. If x=3x = -3, then

x2=9=3, \sqrt{x^2} = \sqrt{9} = 3,

not 3-3.

A clearer statement is:

If x0x \geq 0, then

x2=x. \sqrt{x^2} = x.

The assumption x0x \geq 0 matters.

Skipping important steps

Writers often skip steps because the result feels obvious to them. For a beginner, the missing step may be exactly the hard part.

For example:

Since aa and bb are even, a+ba+b is even.

This may be true, but it does not explain why. A better version writes:

Since aa is even, a=2ma = 2m for some integer mm. Since bb is even, b=2nb = 2n for some integer nn. Therefore,

a+b=2m+2n=2(m+n). a+b = 2m+2n = 2(m+n).

Since m+nm+n is an integer, a+ba+b is even.

The proof becomes easier to check.

Reusing symbols carelessly

A symbol should have one meaning in a given argument.

For example, if nn first means an integer, do not later use nn to mean the number of elements in a set unless the change is clearly stated. Reusing symbols without warning forces the reader to guess.

Good writing keeps notation stable. If a new object is needed, introduce a new symbol.

Writing too many symbols

Symbols can make mathematics precise, but too many symbols can make a simple idea hard to read.

For example:

a,bZ, ((2a)(2b))2(a+b). \forall a,b \in \mathbb{Z},\ ((2 \mid a) \land (2 \mid b)) \Rightarrow 2 \mid (a+b).

This is correct, but for a beginner it may be easier to write:

If aa and bb are even integers, then a+ba+b is even.

Use symbols when they help. Use words when they explain.

Confusing examples with proof

Examples can support understanding, but they do not prove a general statement.

For example, checking

2+4=6 2+4=6

and

8+10=18 8+10=18

shows that some sums of even numbers are even. It does not prove that every sum of two even numbers is even.

To prove the general statement, we need an argument that works for all even integers.

Claiming something is obvious

Words like “obvious,” “clearly,” and “trivially” can hide important reasoning. They may also make a beginner feel that they missed something simple.

Instead of writing:

Clearly, a+ba+b is even.

write the reason:

Since a+b=2(m+n)a+b = 2(m+n) and m+nm+n is an integer, a+ba+b is even.

A short explanation is usually better than a claim of obviousness.

A practical habit

After writing a proof or explanation, read it as if you are seeing the topic for the first time. Check whether every term is defined, every assumption is visible, and every important step has a reason.

Good mathematical writing reduces guessing. It helps the reader follow the argument instead of reconstructing it.