Kahibaro
Discord Login Register

Clarity

Why clarity matters in proofs

Clarity in a proof means that a careful reader can:

A proof can be logically correct but still unclear. In this chapter, the focus is not on what counts as a valid proof (that belongs to other chapters), but on how to present a proof so that its logic is easy to understand.

Clarity has three main aspects:

  1. Clear language.
  2. Clear logical flow.
  3. Clear use of notation and structure.

We will look at each of these with simple guidelines and examples.

Clear language

State what you are doing

Tell the reader what the goal is and what method you are using. For example:

You do not need to explain the methods themselves here (that belongs to proof technique chapters); just signal which one you are using so the reader knows what to expect.

Unclear:

Clear:

Use complete sentences

Mathematics is not just symbols; it is mathematical sentences. Avoid writing a chain of formulas without explanation.

Unclear:
$$
n \text{ even} \Rightarrow n = 2k \Rightarrow n^2 = 4k^2 \Rightarrow \text{even} \Rightarrow \square
$$

Clear:
“Assume $n$ is even. Then there exists an integer $k$ such that $n = 2k$. Squaring both sides gives
$$
n^2 = (2k)^2 = 4k^2.
$$
Since $4k^2 = 2(2k^2)$ is twice an integer, $n^2$ is even.”

The mathematical expressions support the sentences, rather than replace them.

Avoid ambiguous words

Some everyday words are vague in a proof. Prefer precise phrases.

Less clear:

More clear:

Words like “obvious”, “clear”, “trivial” should be avoided, especially when you are learning. They often hide steps that actually need explanation.

Use consistent terms

Once you choose a term, stick to it in that proof.

Confusing:

Clear:

If you say “integer” at the start, do not suddenly switch to “whole number” in the same proof unless you explain that you are using them as synonyms.

Clear logical flow

Make assumptions explicit

Every proof starts from some assumptions (the hypotheses of the theorem, or definitions you are using). State them clearly.

Unclear:

Clear:

Clarity improves if you signal when you are using a definition or a previous result:

Justify non-obvious steps

Not every step needs a long explanation, but steps that use a definition, theorem, or subtle argument should be justified.

Unclear:

Clear:

The justification does not always need a separate sentence, but it should be visible:

Show the direction of reasoning

When proving an “if–then” statement
$$
\text{If } P \text{ then } Q,
$$
make it clear which is the assumption ($P$) and which is the conclusion ($Q$).

Clear pattern for direct proof:

For example:
“Assume $n$ is odd. Then $n = 2k + 1$ for some integer $k$. … Hence $n^2$ is odd.”

Clear pattern for proof by contradiction:

The chapter on proof techniques explains when to use these methods; here the key is to state the structure of the reasoning out loud.

Avoid “backwards proof” mistakes

It is useful to plan a proof by working backwards from what you want to prove, but the written proof must go forward in logic. A common source of confusion is a chain like:

Unclear:
$$
n^2 \text{ even} \Rightarrow n^2 = 2k \Rightarrow n = \sqrt{2k} \Rightarrow n \text{ even}.
$$

This mixes planning and proving. Instead, either:

Clear (direct):
“Assume $n$ is even, so $n = 2k$ for some integer $k$. Then $n^2 = 4k^2 = 2(2k^2)$, so $n^2$ is even.”

Clarity improves when every arrow $ \Rightarrow $ in your written proof represents a valid implication that goes from known information to a new conclusion.

Clear notation

Define symbols before using them

Every new symbol should be introduced.

Unclear:

Clear:

Introduce variables with phrases like:

If a symbol is standard and you are sure your intended audience knows it (for example, $+$, $=$), you do not need to define it. But anything problem-specific should be explained.

Use notation consistently

Do not change the meaning of a symbol inside a single proof.

Confusing:

Here $n$ first means an integer, then it is reused in the subscript $n_1$ in an unclear way.

Clear:

Each symbol should refer to only one mathematical object at a time in a proof.

Avoid cluttered expressions

Very long expressions inside a single line or equation can be hard to read. Break them into steps.

Cluttered:
$$
\frac{(a+b)^2 - (a-b)^2}{(a+b)^2 + (a-b)^2} = \frac{a^2 + 2ab + b^2 - (a^2 - 2ab + b^2)}{a^2 + 2ab + b^2 + a^2 - 2ab + b^2} = \frac{4ab}{2a^2 + 2b^2} = \frac{2ab}{a^2 + b^2}.
$$

Clearer:
“We compute:
$$
\begin{aligned}
(a+b)^2 &= a^2 + 2ab + b^2, \\
(a-b)^2 &= a^2 - 2ab + b^2.
\end{aligned}
$$
Then
$$
\begin{aligned}
(a+b)^2 - (a-b)^2 &= (a^2 + 2ab + b^2) - (a^2 - 2ab + b^2) = 4ab, \\
(a+b)^2 + (a-b)^2 &= (a^2 + 2ab + b^2) + (a^2 - 2ab + b^2) = 2a^2 + 2b^2.
\end{aligned}
$$
Therefore
$$
\frac{(a+b)^2 - (a-b)^2}{(a+b)^2 + (a-b)^2}
= \frac{4ab}{2a^2 + 2b^2}
= \frac{2ab}{a^2 + b^2}.
$$”

Clear structure and layout

Use paragraphs and line breaks

A proof often has a few logical stages. Separate them into paragraphs.

For example, a typical proof might have:

  1. A paragraph introducing the goal and assumptions.
  2. One or more paragraphs doing the main argument.
  3. A final paragraph or sentence stating the conclusion.

Unstructured:
“Let $n$ be an even integer so $n = 2k$ for some integer $k$ so $n^2 = 4k^2 = 2(2k^2)$ and so $n^2$ is even and so the result holds.”

Structured:
“Let $n$ be an even integer. Then there exists an integer $k$ such that $n = 2k$.

Squaring both sides gives
$$
n^2 = (2k)^2 = 4k^2 = 2(2k^2).
$$
Since $2k^2$ is an integer, we see that $n^2$ is even. This completes the proof.”

Even simple white space can make a proof much easier to read.

Signal the beginning and end of proofs

In many texts, proofs are labeled and marked. For example:

“Proof. … This completes the proof.”

or

“Proof. … $\square$”

At this stage, what matters is that:

A final sentence like “Therefore, the statement holds.” or “Hence the theorem is proved.” is often helpful.

Use connecting words

Words and phrases that connect sentences help the reader follow the logic:

Example:

“First, we show that $f$ is increasing. Next, we show that $f$ is bounded above. Finally, we use these two facts to prove that $f$ has a maximum.”

These words are not required, but they greatly improve readability.

Handling cases and sub-arguments clearly

Many proofs involve splitting into cases or proving helpful sub-results. Clarity requires that each piece is clearly labeled and closed.

Case analysis

When dividing a proof into cases, clearly label them and make sure you cover all possibilities.

For example:

“We consider two cases:

Case 1: $n$ is even. …

Case 2: $n$ is odd. …

In both cases, we conclude that $n^2 \equiv 0$ or $1 \pmod{4}$. Therefore, for every integer $n$, we have $n^2 \equiv 0$ or $1 \pmod{4}.$”

A common mistake is forgetting to say how the cases together imply the final statement. A short sentence like “Combining both cases, we see that …” makes the connection explicit.

Sub-arguments and lemmas

Sometimes it is clearer to separate a complicated part as a small sub-result.

For example:

“We first prove a helpful claim.

Claim: If $x > 0$, then $x + \frac{1}{x} \ge 2$.

[Short proof of claim.]

Now we return to the main proof. Using the claim with $x = a$, we obtain …”

Even if you do not use the word “lemma” or “claim”, separating the intermediate step and announcing when you are using it helps the reader.

Common clarity mistakes and how to fix them

Here are some typical issues that make proofs hard to read, along with clearer alternatives.

Jumping steps

Problem:
“Thus $n^2 - n$ is even, so $n$ is odd.”

To a beginner, this might not be obvious.

Clearer:
“Since $n^2 - n = n(n-1)$ is the product of two consecutive integers, one of them is even. Therefore, $n^2 - n$ is even. This implies that $n$ and $n-1$ cannot both be odd; hence $n$ must be odd.”

The exact argument might vary, but the important part is to fill in the reasoning that connects the statements.

Using results without saying so

Problem:
“Then $f$ is continuous, so $f$ is differentiable.”

If this uses a known theorem (which might even be false, as written here), it should be signaled.

Clearer:
“By Theorem X (stated earlier), continuity of $f$ on $[a,b]$ together with [extra conditions] implies that $f$ is differentiable on $(a,b)$.”

In an elementary context, at least write something like “By the theorem proved above, …” so the reader knows you are relying on a previous result, not inventing a new argument.

Mixing formal and informal styles awkwardly

Problem:
“Assume $n$ is even, so $n = 2k$ blah blah $n^2$ is even.”

Better:
“Assume $n$ is even. Then $n = 2k$ for some integer $k$. It follows that
$$
n^2 = (2k)^2 = 4k^2 = 2(2k^2).
$$
Since $2k^2$ is an integer, $n^2$ is even.”

Using full sentences and placing formulas where they support the text creates a more readable argument.

Practicing clarity

Clarity is a skill you improve with practice. Here are practical habits:

Good proofs are not only correct; they are also easy to follow. Focusing on clarity will make your proofs more convincing to others and will also deepen your own understanding of the mathematics involved.

Views: 12

Comments

Please login to add a comment.

Don't have an account? Register now!