100% FREE Updated: Apr 2026 Logic, Proof and Mathematical Thinking Proof Methods

Standard proof methods

Comprehensive study notes on Standard proof methods for CMI BS Hons preparation. This chapter covers key concepts, formulas, and examples needed for your exam.

Standard proof methods

This chapter introduces fundamental proof techniques essential for constructing rigorous mathematical arguments. Mastery of direct proof, contrapositive proof, proof by contradiction, and proof by cases is critical for success in advanced logic and discrete mathematics examinations. These methods form the bedrock of mathematical reasoning and problem-solving.

---

Chapter Contents

|

| Topic |

|---|-------| | 1 | Direct proof | | 2 | Contrapositive proof | | 3 | Proof by contradiction | | 4 | Proof by cases |

---

We begin with Direct proof.

Part 1: Direct proof

Direct Proof

Overview

Direct proof is the most basic and most important proof method. To prove a statement of the form β€œif PP, then QQ”, we assume PP and logically derive QQ. Even in advanced mathematics, a large number of proofs are still direct proofs in disguise. ---

Learning Objectives

❗ By the End of This Topic

After studying this topic, you will be able to:

  • Set up a direct proof correctly.

  • Use definitions precisely inside proofs.

  • Prove divisibility, parity, set, and inequality statements directly.

  • Avoid circular reasoning and unsupported jumps.

  • Recognize when direct proof is the natural method.

---

Core Idea

πŸ“– Direct Proof

To prove

Pβ€…β€ŠβŸΉβ€…β€ŠQ\qquad P \implies Q

by direct proof:

  • assume PP is true,

  • use definitions, known results, and valid algebra,

  • derive QQ.


That is all β€” but it must be done clearly and correctly.

---

Standard Direct-Proof Templates

πŸ“ Divisibility Template

To prove β€œif aa is divisible by mm, then a2a^2 is divisible by m2m^2”:

Start with

a=mk\qquad a=mk

for some integer kk, then compute using that form.

πŸ“ Even/Odd Template

To prove β€œif nn is even, then n2n^2 is even”:

Write

n=2k\qquad n=2k

for some integer kk, then square it.

πŸ“ Set-Inclusion Template

To prove

AβŠ†B\qquad A\subseteq B

take an arbitrary element

x∈A\qquad x\in A

and show

x∈B\qquad x\in B

---

Minimal Worked Examples

Example 1 Prove directly: if nn is even, then n2n^2 is even. Assume nn is even. Then n=2k\qquad n=2k for some integer kk. So n2=(2k)2=4k2=2(2k2)\qquad n^2=(2k)^2=4k^2=2(2k^2) Since 2k22k^2 is an integer, n2n^2 is even. --- Example 2 Prove directly: if aa and bb are divisible by 33, then a+ba+b is divisible by 33. Assume a=3m,b=3n\qquad a=3m,\quad b=3n for integers m,nm,n. Then a+b=3m+3n=3(m+n)\qquad a+b=3m+3n=3(m+n) Since m+nm+n is an integer, a+ba+b is divisible by 33. ---

How Definitions Drive the Proof

❗ Definitions Are the Engine

Most direct proofs are short because the right definition immediately gives the right algebra.

Examples:

    • even means 2k\qquad 2k

    • odd means 2k+1\qquad 2k+1

    • divisible by mm means mk\qquad mk

    • subset means every element of one set belongs to the other

---

Common Mistakes

⚠️ Avoid These Errors
    • ❌ Starting from the conclusion and working backward without justification
    • ❌ Using the statement you are trying to prove
    • ❌ Forgetting to introduce an arbitrary element in set proofs
    • ❌ Writing β€œlet n=2kn=2k” without first saying why such kk exists
---

When Direct Proof Is Best

πŸ’‘ Use Direct Proof When

A direct proof is usually the natural choice when:

  • the statement has a clear algebraic definition,

  • the hypothesis is constructive,

  • the conclusion follows by straightforward manipulation,

  • no contradiction or contrapositive is needed.

---

CMI Strategy

πŸ’‘ How to Write a Good Direct Proof

  • Write the hypothesis explicitly.

  • Expand the meaning of the hypothesis using definitions.

  • Carry out clean algebraic steps.

  • End by stating exactly why the conclusion follows.

  • Keep the proof short but complete.

---

Practice Questions

:::question type="MCQ" question="To prove directly that an integer nn is even, the most standard form to write is" options=["n=2kn=2k for some integer kk","n=2k+1n=2k+1 for some integer kk","n=k2n=k^2 for some integer kk","n=3kn=3k for some integer kk"] answer="A" hint="Use the definition of evenness." solution="An integer is even exactly when it can be written as n=2k\qquad n=2k for some integer kk. Therefore the correct option is A\boxed{A}." ::: :::question type="NAT" question="If n=2k+1n=2k+1 is odd, then n+1n+1 is divisible by what positive integer?" answer="2" hint="Use the form of an odd integer." solution="If n=2k+1\qquad n=2k+1, then n+1=2k+2=2(k+1)\qquad n+1=2k+2=2(k+1). Hence n+1n+1 is divisible by 2\boxed{2}." ::: :::question type="MSQ" question="Which of the following are standard direct-proof moves?" options=["Assume the hypothesis","Use the relevant definition","Derive the conclusion logically","Assume the conclusion first and declare the proof finished"] answer="A,B,C" hint="Think of the normal structure of a direct proof." solution="In a direct proof, we assume the hypothesis, use definitions, and derive the conclusion. Assuming the conclusion without justification is invalid. Hence the correct answer is A,B,C\boxed{A,B,C}." ::: :::question type="SUB" question="Prove directly that if an integer nn is divisible by 44, then n2n^2 is divisible by 1616." answer="If n=4kn=4k, then n2=16k2n^2=16k^2." hint="Start from the definition of divisibility by 44." solution="Assume nn is divisible by 44. Then there exists an integer kk such that n=4k\qquad n=4k. Squaring, n2=(4k)2=16k2\qquad n^2=(4k)^2=16k^2. Since k2k^2 is an integer, n2n^2 is divisible by 1616. Hence the statement is proved." ::: ---

Summary

❗ Key Takeaways for CMI

  • Direct proof means: assume the hypothesis and derive the conclusion.

  • Definitions such as even, odd, divisible, and subset must be used precisely.

  • Direct proofs are strongest when the hypothesis has a clear algebraic form.

  • Clean structure matters more than long writing.

  • Never assume what you want to prove.

---

πŸ’‘ Next Up

Proceeding to Contrapositive proof.

---

Part 2: Contrapositive proof

Contrapositive Proof

Overview

Contrapositive proof is one of the cleanest methods for proving implications. Instead of proving Pβ€…β€ŠβŸΉβ€…β€ŠQ\qquad P \implies Q directly, we prove the logically equivalent statement Β¬Qβ€…β€ŠβŸΉβ€…β€ŠΒ¬P\qquad \neg Q \implies \neg P This method is especially powerful in problems involving divisibility, parity, inequalities, and set inclusion, where the negation of the conclusion has a more workable algebraic form. ---

Learning Objectives

❗ By the End of This Topic

After studying this topic, you will be able to:

  • Write the contrapositive of a given implication correctly.

  • Recognize when contrapositive proof is easier than direct proof.

  • Prove divisibility and parity statements using contraposition.

  • Distinguish contrapositive from converse and inverse.

  • Structure a rigorous proof using the contrapositive method.

---

Core Idea

πŸ“– Contrapositive

For an implication

Pβ€…β€ŠβŸΉβ€…β€ŠQ\qquad P \implies Q

its contrapositive is

Β¬Qβ€…β€ŠβŸΉβ€…β€ŠΒ¬P\qquad \neg Q \implies \neg P

These two statements are logically equivalent.

❗ Very Important Distinction

For the statement

Pβ€…β€ŠβŸΉβ€…β€ŠQ\qquad P \implies Q

    • converse: Qβ€…β€ŠβŸΉβ€…β€ŠP\qquad Q \implies P

    • inverse: Β¬Pβ€…β€ŠβŸΉβ€…β€ŠΒ¬Q\qquad \neg P \implies \neg Q

    • contrapositive: Β¬Qβ€…β€ŠβŸΉβ€…β€ŠΒ¬P\qquad \neg Q \implies \neg P


Only the contrapositive is always logically equivalent to the original statement.

---

Why This Method Works

πŸ“ Logical Equivalence

The statements

Pβ€…β€ŠβŸΉβ€…β€ŠQ\qquad P \implies Q
and
Β¬Qβ€…β€ŠβŸΉβ€…β€ŠΒ¬P\qquad \neg Q \implies \neg P

always have the same truth value.

So proving the contrapositive is exactly as valid as proving the original implication.

---

When to Use Contrapositive

πŸ’‘ Best Situations

Contrapositive proof is especially useful when:

  • the conclusion is easy to negate

  • the negation of the conclusion gives a strong algebraic structure

  • direct proof feels unnatural

  • the statement is about parity or divisibility


Typical examples:
    • if n2n^2 is even, then nn is even

    • if a number is divisible by 66, then it is divisible by 22

    • if abab is odd, then both aa and bb are odd

---

Standard Structure

πŸ“ Proof Template

To prove

Pβ€…β€ŠβŸΉβ€…β€ŠQ\qquad P \implies Q

by contrapositive:

  • State that you will prove the contrapositive.

  • Assume Β¬Q\neg Q.

  • Deduce Β¬P\neg P.

  • Conclude that Β¬Qβ€…β€ŠβŸΉβ€…β€ŠΒ¬P\neg Q \implies \neg P.

  • Therefore Pβ€…β€ŠβŸΉβ€…β€ŠQP \implies Q.

---

Minimal Worked Examples

Example 1 Prove: If an integer nn is divisible by 44, then nn is even. A direct proof is easy, but the contrapositive is also simple: Contrapositive: If nn is not even, then nn is not divisible by 44. If nn is not even, then nn is odd. An odd number cannot be divisible by 44. Hence the contrapositive is true, so the original statement is true. --- Example 2 Prove: If n2n^2 is odd, then nn is odd. Contrapositive: If nn is not odd, then nn is even. Let n=2kn=2k. Then n2=(2k)2=4k2=2(2k2)\qquad n^2 = (2k)^2 = 4k^2 = 2(2k^2) so n2n^2 is even. Thus the contrapositive is true, and therefore the original statement is true. ---

High-Value Patterns

πŸ“ Common Contrapositive Forms

  • If n2n^2 is even, then nn is even.


Contrapositive:
If nn is odd, then n2n^2 is odd.

  • If abab is odd, then aa and bb are odd.


Contrapositive:
If at least one of a,ba,b is even, then abab is even.

  • If a real number xx satisfies x>2x>2, then x2>4x^2>4.


Contrapositive:
If x2≀4x^2 \le 4, then x≀2x \le 2 is not equivalent here without care on sign, so you must negate correctly and check the domain.

---

Negation Practice

❗ Negate Carefully

To use contrapositive properly, you must negate the conclusion correctly.

Examples:

    • negation of β€œnn is even” is β€œnn is odd”

    • negation of β€œx>3x>3” is β€œx≀3x\le 3”

    • negation of β€œaa and bb are both odd” is β€œat least one of a,ba,b is even”

    • negation of β€œx∈Ax\in A” is β€œxβˆ‰Ax\notin A”

---

Common Mistakes

⚠️ Avoid These Errors
    • ❌ Replacing the statement by its converse instead of its contrapositive
    • ❌ Negating the conclusion incorrectly
    • ❌ Forgetting to say explicitly that you are proving the contrapositive
    • ❌ Proving Β¬Pβ€…β€ŠβŸΉβ€…β€ŠΒ¬Q\neg P \implies \neg Q instead of Β¬Qβ€…β€ŠβŸΉβ€…β€ŠΒ¬P\neg Q \implies \neg P
    • ❌ Using contrapositive when the direct proof is actually clearer
---

CMI Strategy

πŸ’‘ How to Decide Quickly

When you see an implication, ask:

  • Is direct proof natural?

  • Is Β¬Q\neg Q easy to describe?

  • Does Β¬Q\neg Q force a strong algebraic property?


If yes, contrapositive is often the right choice.

---

Practice Questions

:::question type="MCQ" question="The contrapositive of the statement 'If nn is divisible by 44, then nn is even' is" options=["If nn is even, then nn is divisible by 44","If nn is not divisible by 44, then nn is not even","If nn is not even, then nn is not divisible by 44","If nn is odd, then nn is divisible by 44"] answer="C" hint="For Pβ€…β€ŠβŸΉβ€…β€ŠQP \implies Q, contrapositive is Β¬Qβ€…β€ŠβŸΉβ€…β€ŠΒ¬P\neg Q \implies \neg P." solution="Here P:\qquad P: 'nn is divisible by 44' and Q:\qquad Q: 'nn is even'. So the contrapositive is Β¬Qβ€…β€ŠβŸΉβ€…β€ŠΒ¬P\qquad \neg Q \implies \neg P, that is, \qquad If nn is not even, then nn is not divisible by 44. Hence the correct option is C\boxed{C}." ::: :::question type="NAT" question="If nn is odd, then n2n^2 is odd. What is the correct proof method name if we instead prove 'if n2n^2 is even, then nn is even' and use that equivalence?" answer="contrapositive" hint="Think of the logically equivalent implication." solution="The method is called proof by contrapositive, because one proves the logically equivalent implication Β¬Qβ€…β€ŠβŸΉβ€…β€ŠΒ¬P\qquad \neg Q \implies \neg P instead of proving Pβ€…β€ŠβŸΉβ€…β€ŠQ\qquad P \implies Q directly. Hence the answer is contrapositive\boxed{\text{contrapositive}}." ::: :::question type="MSQ" question="Which of the following statements are logically equivalent to Pβ€…β€ŠβŸΉβ€…β€ŠQP \implies Q?" options=["Β¬Qβ€…β€ŠβŸΉβ€…β€ŠΒ¬P\neg Q \implies \neg P","Qβ€…β€ŠβŸΉβ€…β€ŠPQ \implies P","Β¬Pβ€…β€ŠβŸΉβ€…β€ŠΒ¬Q\neg P \implies \neg Q","Β¬(Pβ€…β€ŠβŸΉβ€…β€ŠQ)\neg(P \implies Q)"] answer="A" hint="Only one standard implication is always equivalent." solution="The only implication that is always logically equivalent to Pβ€…β€ŠβŸΉβ€…β€ŠQ\qquad P \implies Q is its contrapositive Β¬Qβ€…β€ŠβŸΉβ€…β€ŠΒ¬P\qquad \neg Q \implies \neg P. The converse Qβ€…β€ŠβŸΉβ€…β€ŠPQ \implies P and inverse Β¬Pβ€…β€ŠβŸΉβ€…β€ŠΒ¬Q\neg P \implies \neg Q are not generally equivalent. Hence the correct answer is A\boxed{A}." ::: :::question type="SUB" question="Prove that if n2n^2 is odd for an integer nn, then nn is odd." answer="True by contrapositive" hint="Prove instead that if nn is even, then n2n^2 is even." solution="We prove the contrapositive. Assume nn is even. Then for some integer kk, n=2k\qquad n=2k. Hence n2=(2k)2=4k2=2(2k2)\qquad n^2=(2k)^2=4k^2=2(2k^2), which is even. So we have shown: \qquad if nn is even, then n2n^2 is even. This is the contrapositive of the statement: \qquad if n2n^2 is odd, then nn is odd. Therefore the original statement is true. Hence the answer is TrueΒ byΒ contrapositive\boxed{\text{True by contrapositive}}." ::: ---

Summary

❗ Key Takeaways for CMI

  • To prove Pβ€…β€ŠβŸΉβ€…β€ŠQP \implies Q, you may prove Β¬Qβ€…β€ŠβŸΉβ€…β€ŠΒ¬P\neg Q \implies \neg P.

  • The contrapositive is logically equivalent to the original implication.

  • Contrapositive is especially strong for parity and divisibility statements.

  • The hardest part is usually negating the conclusion correctly.

  • Do not confuse contrapositive with converse.

---

πŸ’‘ Next Up

Proceeding to Proof by contradiction.

---

Part 3: Proof by contradiction

Proof by Contradiction

Overview

Proof by contradiction is a method in which one assumes the statement to be false and then derives an impossibility. The contradiction may be with the assumptions, with a known theorem, or with a basic fact such as parity or order. In CMI-style questions, contradiction is often used when no direct construction is visible, especially in number theory, irrationality, set theory, and existence statements. ---

Learning Objectives

❗ By the End of This Topic

After studying this topic, you will be able to:

  • Understand the logical structure of contradiction proofs.

  • Use contradiction to prove impossibility and uniqueness statements.

  • Distinguish contradiction from contrapositive proof.

  • Identify valid contradictions and avoid fake ones.

  • Write clear contradiction arguments in standard mathematical style.

---

Core Idea

πŸ“– Proof by Contradiction

To prove a statement PP, assume that PP is false, that is, assume Β¬P\neg P. Then deduce a contradiction.

Since Β¬P\neg P leads to an impossibility, Β¬P\neg P cannot be true. Therefore PP must be true.

---

Logical Structure

πŸ“ Proof Template

To prove PP by contradiction:

  • Assume Β¬P\neg P.

  • Use this assumption together with known facts.

  • Derive a contradiction.

  • Conclude that Β¬P\neg P is false.

  • Therefore PP is true.

---

Contradiction vs Contrapositive

❗ Do Not Confuse These
    • Contrapositive proof proves Β¬Qβ€…β€ŠβŸΉβ€…β€ŠΒ¬P\neg Q \implies \neg P instead of Pβ€…β€ŠβŸΉβ€…β€ŠQP \implies Q.
    • Contradiction proof assumes the negation of the statement you want and derives an impossibility.
They are related logically, but they are not the same method in presentation.
---

When Contradiction Is Natural

πŸ’‘ Best Situations

Proof by contradiction is especially useful for:

    • irrationality proofs

    • impossibility statements

    • uniqueness statements

    • extremal arguments

    • statements where direct construction is not obvious


Typical examples:
    • 2\sqrt{2} is irrational
        • there is no greatest prime number

        • there is no smallest positive rational number

---

Minimal Worked Example

Example 1 Prove that 2\sqrt{2} is irrational. Assume for contradiction that 2\sqrt{2} is rational. Then 2=ab\qquad \sqrt{2} = \dfrac{a}{b} for integers a,ba,b with no common factor and b≠0b\ne0. Squaring gives 2=a2b2\qquad 2 = \dfrac{a^2}{b^2} so a2=2b2\qquad a^2 = 2b^2 Hence a2a^2 is even, so aa is even. Write a=2ka=2k. Then a2=4k2=2b2\qquad a^2 = 4k^2 = 2b^2 so b2=2k2\qquad b^2 = 2k^2 Hence b2b^2 is even, so bb is even. Thus both aa and bb are even, contradicting the assumption that ab\dfrac{a}{b} was in lowest terms. Therefore 2\sqrt{2} is irrational. ---

Valid Forms of Contradiction

πŸ“ Typical Contradictions

A contradiction may look like:

    • n\qquad n is both even and odd

    • x>y\qquad x>y and x≀yx\le y

    • a number is both rational and irrational

    • two integers are assumed coprime but both divisible by 22

    • existence of an object implies its own impossibility

---

How to Recognize a Good Contradiction

❗ A Contradiction Must Be Precise

A valid contradiction must directly oppose:

    • an earlier assumption

    • a known theorem

    • a fundamental logical or arithmetic fact


It is not enough to reach something β€œsurprising” or β€œunlikely”.

---

Common Mistakes

⚠️ Avoid These Errors
    • ❌ Assuming the original statement instead of its negation
    • ❌ Reaching a difficult expression and calling it a contradiction
    • ❌ Forgetting to state what exactly contradicts what
    • ❌ Using contradiction when a short direct proof would be clearer
    • ❌ Confusing contradiction with converse or contrapositive
---

CMI Strategy

πŸ’‘ How to Use Contradiction Well

  • Write the negation of the statement carefully.

  • Keep track of the assumption that must eventually fail.

  • Look for parity, divisibility, order, or minimality conflicts.

  • At the end, state the contradiction explicitly.

  • Then conclude the original statement.

---

Practice Questions

:::question type="MCQ" question="To prove a statement PP by contradiction, the first step is to assume" options=["PP","Β¬P\neg P","both PP and Β¬P\neg P","a weaker version of PP"] answer="B" hint="Contradiction starts by negating what you want to prove." solution="In proof by contradiction, one assumes the negation of the desired statement and then derives an impossibility. Therefore the correct first step is to assume Β¬P\neg P. Hence the correct option is B\boxed{B}." ::: :::question type="NAT" question="In the classical proof that 2\sqrt{2} is irrational, if a2=2b2a^2=2b^2, what can you conclude about aa?" answer="even" hint="If a2a^2 is even, then aa is even." solution="Since a2=2b2\qquad a^2 = 2b^2, the number a2a^2 is even. Therefore aa must be even. Hence the answer is even\boxed{\text{even}}." ::: :::question type="MSQ" question="Which of the following are standard uses of proof by contradiction?" options=["Proving irrationality","Proving impossibility","Proving uniqueness","Showing a statement by checking only one example"] answer="A,B,C" hint="Contradiction is often used when direct construction is hard." solution="1. True. Irrationality proofs often use contradiction.
  • True. Contradiction is a standard tool for impossibility proofs.
  • True. Uniqueness is often shown by assuming two distinct such objects exist and deriving a contradiction.
  • False. One example never proves a general statement.
  • Hence the correct answer is A,B,C\boxed{A,B,C}." ::: :::question type="SUB" question="Prove that 2\sqrt{2} is irrational." answer="True by contradiction" hint="Assume 2=ab\sqrt{2}=\dfrac{a}{b} in lowest terms." solution="Assume for contradiction that 2\sqrt{2} is rational. Then there exist integers a,ba,b with no common factor and bβ‰ 0b\ne0 such that 2=ab\qquad \sqrt{2}=\dfrac{a}{b}. Squaring both sides gives 2=a2b2\qquad 2=\dfrac{a^2}{b^2}, so a2=2b2\qquad a^2=2b^2. Thus a2a^2 is even, and therefore aa is even. Write a=2k\qquad a=2k. Then a2=4k2\qquad a^2=4k^2, so from a2=2b2a^2=2b^2 we get 4k2=2b2\qquad 4k^2=2b^2, hence b2=2k2\qquad b^2=2k^2. Thus b2b^2 is even, so bb is even. Therefore both aa and bb are even, which contradicts the assumption that aa and bb had no common factor. Hence our assumption was false, and 2\sqrt{2} is irrational. Therefore the answer is TrueΒ byΒ contradiction\boxed{\text{True by contradiction}}." ::: ---

    Summary

    ❗ Key Takeaways for CMI

    • Contradiction begins by assuming the negation of the target statement.

    • A contradiction must clash with a precise known fact or assumption.

    • This method is especially strong for irrationality, impossibility, and uniqueness.

    • Good contradiction proofs end by stating exactly where the impossibility occurs.

    • Contradiction and contrapositive are not the same proof method.

    ---

    πŸ’‘ Next Up

    Proceeding to Proof by cases.

    ---

    Part 4: Proof by cases

    Proof by Cases

    Overview

    Proof by cases is a method in which the problem is split into several possibilities, and the statement is proved separately in each one. This method is useful when the object naturally falls into disjoint categories, such as even or odd integers, positive or negative real numbers, or geometric configurations with distinct structures. ---

    Learning Objectives

    ❗ By the End of This Topic

    After studying this topic, you will be able to:

    • Recognize when a statement should be split into cases.

    • Choose a case division that is exhaustive and non-overlapping.

    • Write clean and logically complete case-based proofs.

    • Use parity, sign, and order conditions as case splits.

    • Avoid redundant or incomplete case analysis.

    ---

    Core Idea

    πŸ“– Proof by Cases

    A proof by cases divides the problem into finitely many possible situations and proves the required statement in each situation.

    If the cases cover all possibilities, then the statement is proved in general.

    ---

    When to Use Cases

    πŸ’‘ Common Triggers

    Proof by cases is natural when the objects can be classified by:

      • parity: even or odd

      • sign: positive, negative, or zero

      • order: a<ba<b, a=ba=b, or a>ba>b

      • geometry: inside, on, or outside a circle

      • algebraic form: factor zero or nonzero

    ---

    Standard Structure

    πŸ“ Proof Template

    To prove a statement by cases:

    • Identify a complete set of cases.

    • State the cases clearly.

    • Prove the statement in Case 1.

    • Prove the statement in Case 2.

    • Continue until all cases are covered.

    • Conclude that the statement holds in all possible cases.

    ---

    What Makes a Good Case Split

    ❗ Two Requirements

    A case split should be:

    • Exhaustive β€” every possibility must fall into some case.

    • Disjoint or clearly handled β€” cases should not create ambiguity.


    Example:
    For an integer nn, the cases β€œnn is even” and β€œnn is odd” are complete and disjoint.

    ---

    Minimal Worked Examples

    Example 1 Prove that for every integer nn, the product n(n+1)n(n+1) is even. Case 1: nn is even. Then n(n+1)n(n+1) is even. Case 2: nn is odd. Then n+1n+1 is even, so n(n+1)n(n+1) is even. Hence in both cases n(n+1)n(n+1) is even. --- Example 2 Prove that for every real number xx, ∣x∣β‰₯x\qquad |x| \ge x Case 1: xβ‰₯0x\ge0. Then ∣x∣=x|x|=x, so ∣x∣β‰₯x|x|\ge x. Case 2: x<0x<0. Then ∣x∣=βˆ’x|x|=-x, and since βˆ’x>x-x>x, we again have ∣x∣β‰₯x|x|\ge x. Thus the statement is true in all cases. ---

    High-Value Case Splits

    πŸ“ Common Splits

    • Integer parity:

    - nn even
    - nn odd

    • Real sign:

    - x>0x>0
    - x=0x=0
    - x<0x<0

    • Relative order:

    - aβ‰₯ba\ge b
    - a<ba<b

    • Divisibility:

    - divisible by mm
    - not divisible by mm

    ---

    Choosing the Right Cases

    πŸ’‘ Efficiency Matters

    Good case splits are:

      • natural

      • few in number

      • directly tied to the statement


    A poor case split creates extra work without helping the proof.

    For example, if a statement is about parity, do not split into positive and negative cases first. ---

    Common Mistakes

    ⚠️ Avoid These Errors
      • ❌ Forgetting one of the cases
      • ❌ Using overlapping cases without care
      • ❌ Proving only one case and assuming the rest are similar
      • ❌ Splitting into cases that do not help the proof
      • ❌ Not concluding that all cases together cover the theorem
    ---

    CMI Strategy

    πŸ’‘ How to Decide Quickly

    Ask:

    • Does the object naturally separate into a few types?

    • Does each type make the statement simpler?

    • Are the cases complete?


    If yes, proof by cases is probably the right method.

    ---

    Practice Questions

    :::question type="MCQ" question="To prove that n(n+1)n(n+1) is even for every integer nn, the most natural case split is" options=["n>0n>0 and n<0n<0","nn even and nn odd","nn prime and nn composite","n=0n=0 and n≠0n\ne0"] answer="B" hint="The statement is about a product of consecutive integers." solution="The key structural fact is parity: every integer is either even or odd. One of nn and n+1n+1 must therefore be even. So the most natural split is into the cases 'nn even' and 'nn odd'. Hence the correct option is B\boxed{B}." ::: :::question type="NAT" question="How many cases are needed in the most natural proof by cases of the statement 'For every integer nn, n(n+1)n(n+1) is even'?" answer="2" hint="Use parity." solution="The natural split is by parity: n\qquad n even or nn odd. So the proof requires 2\boxed{2} cases." ::: :::question type="MSQ" question="Which of the following are good principles for proof by cases?" options=["The cases should cover all possibilities","The cases should help simplify the statement","It is acceptable to ignore a difficult case if the others work","The final conclusion should mention that all cases have been handled"] answer="A,B,D" hint="A case proof must be complete." solution="1. True. The cases must be exhaustive.
  • True. The split should make the argument easier.
  • False. Every case must be proved.
  • True. The proof should conclude that all cases are covered.
  • Hence the correct answer is A,B,D\boxed{A,B,D}." ::: :::question type="SUB" question="Prove that for every integer nn, the integer n(n+1)n(n+1) is even." answer="True by parity cases" hint="Consider whether nn is even or odd." solution="We use proof by cases. Case 1: nn is even. Then n=2kn=2k for some integer kk, so n(n+1)n(n+1) is divisible by 22, hence even. Case 2: nn is odd. Then n=2k+1n=2k+1 for some integer kk, so n+1=2k+2=2(k+1)\qquad n+1 = 2k+2 = 2(k+1), which is even. Hence the product n(n+1)n(n+1) is even. Thus in both cases n(n+1)n(n+1) is even. Therefore the statement is true. Hence the answer is TrueΒ byΒ parityΒ cases\boxed{\text{True by parity cases}}." ::: ---

    Summary

    ❗ Key Takeaways for CMI

    • Proof by cases works when the universe splits into a few natural possibilities.

    • Cases must be exhaustive and logically clear.

    • Good case splits simplify the problem immediately.

    • Parity and sign are the most common case structures.

    • A case proof is incomplete unless every case is handled.

    Chapter Summary

    ❗ Standard proof methods β€” Key Points

    Direct Proof: The most fundamental method, directly demonstrating P⇒QP \Rightarrow Q by assuming PP and logically deriving QQ. It is effective when a straightforward path exists from hypothesis to conclusion.
    Contrapositive Proof: An equivalent alternative to direct proof, asserting P⇒QP \Rightarrow Q by proving ¬Q⇒¬P\neg Q \Rightarrow \neg P. This method is particularly effective when assuming the negation of the conclusion simplifies the derivation of the negation of the hypothesis.
    Proof by Contradiction: A powerful, versatile technique where assuming the negation of the entire statement (P∧¬QP \land \neg Q) leads to a logical inconsistency or a contradiction with a known fact, thereby establishing the original statement.
    Proof by Cases: Essential for statements involving disjunctions or conditions that naturally partition the domain into a finite number of exhaustive, mutually exclusive scenarios. The statement is proven independently for each case.
    Strategic Selection: Mastering these methods requires understanding their underlying logic and strategically selecting the most appropriate technique based on the statement's structure, the nature of the variables, and the properties of the entities involved.
    Rigour and Clarity: Regardless of the chosen method, a valid proof demands precise definitions, logically sound deductions, and clear articulation of each step to ensure correctness, comprehensibility, and irrefutability.

    Chapter Review Questions

    :::question type="MCQ" question="Consider the statement: 'For any integers aa and bb, if abab is an odd integer, then both aa and bb must be odd integers.' Which of the following proof strategies is generally considered the most straightforward and elegant for this statement?" options=["Direct proof, by assuming ab=2k+1ab = 2k+1 and deducing a=2m+1a=2m+1 and b=2n+1b=2n+1.", "Proof by contrapositive, by assuming aa is even or bb is even, then showing abab is even.", "Proof by contradiction, by assuming abab is odd and ( aa is even or bb is even), then deriving a contradiction.", "Proof by cases, by considering all four parity combinations for aa and bb (even/even, even/odd, odd/even, odd/odd)."] answer="Proof by contrapositive, by assuming aa is even or bb is even, then showing abab is even." hint="Consider which assumption (P or not Q) provides a simpler starting point for algebraic manipulation related to parity." solution="The contrapositive of the statement 'If abab is odd, then aa is odd and bb is odd' is 'If aa is even or bb is even, then abab is even'. This is easier to prove directly: If aa is even, a=2ka=2k, so ab=2kbab=2kb, which is even. If bb is even, b=2kb=2k, so ab=a(2k)ab=a(2k), which is even. Thus, if either aa or bb is even, abab is even. This makes the contrapositive proof very direct and elegant. While contradiction also works, contrapositive is more direct."
    :::

    :::question type="NAT" question="To prove that for any integer nn, the expression n3βˆ’nn^3 - n is divisible by 6, one common approach is to use proof by cases based on the value of nn modulo kk. What is the smallest positive integer kk such that considering nn modulo kk naturally covers all necessary cases without redundancy for divisibility by 6?" answer="6" hint="Consider the prime factors of 6 and how they relate to consecutive integers." solution="The expression n3βˆ’nn^3 - n can be factored as n(n2βˆ’1)=n(nβˆ’1)(n+1)n(n^2 - 1) = n(n-1)(n+1). This is a product of three consecutive integers. Among any three consecutive integers, at least one is even (divisible by 2) and exactly one is divisible by 3. Therefore, their product must be divisible by 2Γ—3=62 \times 3 = 6. While this specific problem has a more elegant algebraic solution, if one were to use proof by cases, considering nn modulo 6 (i.e., n≑0,1,2,3,4,5(mod6)n \equiv 0, 1, 2, 3, 4, 5 \pmod{6}) would naturally cover all cases for divisibility by 6. Thus, k=6k=6 is the smallest such integer."
    :::

    :::question type="MCQ" question="Consider the statement: 'The sum of a rational number and an irrational number is always irrational.' If you are to prove this statement using proof by contradiction, which of the following represents the correct initial assumption?" options=["Assume the sum of a rational and an irrational number is rational.", "Assume the sum of two irrational numbers is rational.", "Assume the sum of two rational numbers is irrational.", "Assume the sum of a rational and an irrational number is irrational, then seek a contradiction."] answer="Assume the sum of a rational and an irrational number is rational." hint="Proof by contradiction assumes the negation of the conclusion. What is the negation of 'is always irrational'?" solution="Let xx be rational and yy be irrational. The statement to prove is x+yx+y is irrational. For a proof by contradiction, we assume the negation of this conclusion while retaining the hypotheses. So, the initial assumption is that xx is rational, yy is irrational, AND x+yx+y is rational. This assumption will then lead to a contradiction (specifically, that y=(x+y)βˆ’xy = (x+y) - x would be rational, contradicting that yy is irrational)."
    :::

    What's Next?

    πŸ’‘ Continue Your CMI Journey

    Having gained proficiency in the fundamental proof methods, your understanding of mathematical rigor is significantly strengthened. These techniques are foundational and will be extensively applied in subsequent chapters and advanced mathematical domains. Specifically, the principles of direct proof are crucial for Mathematical Induction, a powerful technique for proving statements about natural numbers, and for constructing arguments in Set Theory and Number Theory. The logical precision honed in this chapter is also vital for understanding more complex topics in Discrete Mathematics, Logic, and Abstract Algebra, equipping you with the essential analytical tools for constructing sound arguments and solving intricate problems throughout your CMI preparation.

    🎯 Key Points to Remember

    • βœ“ Master the core concepts in Standard proof methods before moving to advanced topics
    • βœ“ Practice with previous year questions to understand exam patterns
    • βœ“ Review short notes regularly for quick revision before exams

    Related Topics in Logic, Proof and Mathematical Thinking

    More Resources

    Why Choose MastersUp?

    🎯

    AI-Powered Plans

    Personalized study schedules based on your exam date and learning pace

    πŸ“š

    15,000+ Questions

    Verified questions with detailed solutions from past papers

    πŸ“Š

    Smart Analytics

    Track your progress with subject-wise performance insights

    πŸ”–

    Bookmark & Revise

    Save important questions for quick revision before exams

    Start Your Free Preparation β†’

    No credit card required β€’ Free forever for basic features