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

Induction and construction

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

Induction and construction

This chapter introduces foundational proof techniques, including mathematical and strong induction, alongside recursive construction methods. These tools are indispensable for rigorously demonstrating properties of sequences, sets, and algorithms, representing core competencies frequently examined in CMI assessments. Mastery of these concepts is crucial for success in advanced topics in logic and discrete mathematics.

---

Chapter Contents

|

| Topic |

|---|-------| | 1 | Mathematical induction | | 2 | Strong induction | | 3 | Recursive construction | | 4 | Existence examples |

---

We begin with Mathematical induction.

Part 1: Mathematical induction

Mathematical Induction

Overview

Mathematical induction is one of the most fundamental proof methods in mathematics. It is used to prove statements indexed by the natural numbers. In exam problems, induction is not just a formal ritual: the real skill is identifying the exact statement to prove, choosing the right base case, and writing the induction step so that the hypothesis is used meaningfully. ---

Learning Objectives

❗ By the End of This Topic

After studying this topic, you will be able to:

  • Understand the logic behind induction.

  • Write a correct induction proof with clear base case and induction step.

  • Distinguish between verifying examples and proving all cases.

  • Use induction in identities, inequalities, divisibility, and recursive formulas.

  • Avoid common induction errors such as incomplete hypotheses or wrong starting index.

---

Core Idea

πŸ“– Mathematical Induction

Suppose P(n)P(n) is a statement depending on a natural number nn.

To prove that P(n)P(n) is true for all integers nβ‰₯n0n \ge n_0, it is enough to show:

  • Base case: P(n0)P(n_0) is true.

  • Induction step: For every integer kβ‰₯n0k \ge n_0, if P(k)P(k) is true, then P(k+1)P(k+1) is true.


Then P(n)P(n) is true for all nβ‰₯n0n \ge n_0.

❗ Why It Works

Induction works like a row of dominos:

    • the base case knocks down the first domino

    • the induction step shows each domino knocks down the next one


So all dominos from the starting point onward fall.

---

Standard Structure of an Induction Proof

πŸ“ Template

To prove P(n)P(n) for all nβ‰₯n0n \ge n_0:

Step 1: Base case

Show that P(n0)P(n_0) is true.

Step 2: Induction hypothesis

Assume P(k)P(k) is true for some arbitrary kβ‰₯n0k \ge n_0.

Step 3: Induction step

Using the induction hypothesis, prove P(k+1)P(k+1).

Step 4: Conclusion

Therefore, by mathematical induction, P(n)P(n) holds for all nβ‰₯n0n \ge n_0.

---

Typical Forms of Statements Proved by Induction

πŸ“ Common Types

  • Sums:

1+2+β‹―+n=n(n+1)2\qquad 1+2+\cdots+n = \dfrac{n(n+1)}{2}

  • Divisibility:

7nβˆ’1\qquad 7^n-1 is divisible by 66

  • Inequalities:

2nβ‰₯n+1\qquad 2^n \ge n+1

  • Recursive formulas:

proving explicit formulas for recursively defined sequences

  • Structural statements:

about tilings, constructions, or combinatorial objects

---

Minimal Worked Example

Example Prove that 1+2+β‹―+n=n(n+1)2\qquad 1+2+\cdots+n = \dfrac{n(n+1)}{2} for all nβ‰₯1n \ge 1. Base case: For n=1n=1, 1=1β‹…22=1\qquad 1 = \dfrac{1\cdot 2}{2}=1 So the statement is true for n=1n=1. Induction hypothesis: Assume for some kβ‰₯1k \ge 1 that 1+2+β‹―+k=k(k+1)2\qquad 1+2+\cdots+k = \dfrac{k(k+1)}{2} Induction step: Then $\qquad 1+2+\cdots+k+(k+1) = \dfrac{k(k+1)}{2} + (k+1)$ $\qquad = \dfrac{k(k+1)+2(k+1)}{2} = \dfrac{(k+1)(k+2)}{2}$ which is exactly the required formula for k+1k+1. Hence the result holds for all nβ‰₯1n \ge 1. ::: ---

Choosing the Right Base Case

❗ Base Case Must Match the Statement

If the claim starts from nβ‰₯0n \ge 0, then check n=0n=0.
If the claim starts from nβ‰₯1n \ge 1, then check n=1n=1.
If the recursion or expression only makes sense from a later value, start there.

A wrong base case can invalidate an otherwise correct-looking proof.

---

Induction in Inequalities

πŸ’‘ Extra Care with Inequalities

When proving inequalities by induction:

  • write exactly what is assumed at stage kk

  • transform the left side of the k+1k+1 case

  • use the induction hypothesis at the correct point

  • justify any extra estimate used after that


Do not assume that β€œbigger nn makes it obvious.” The argument must still be written.

---

Induction and Divisibility

πŸ“ Standard Divisibility Pattern

To prove a divisibility statement like

anΒ isΒ divisibleΒ byΒ d\qquad a_n \text{ is divisible by } d

the induction step often looks like:

    • rewrite ak+1a_{k+1} in terms of aka_k

    • use the induction hypothesis that d∣akd \mid a_k

    • show the remaining terms are also divisible by dd

---

Common Mistakes

⚠️ Avoid These Errors
    • ❌ Checking only a few examples and calling it a proof
βœ… Induction requires a general induction step
    • ❌ Forgetting to state the induction hypothesis clearly
βœ… Say exactly what is being assumed for kk
    • ❌ Proving P(k+1)P(k+1) from itself instead of from P(k)P(k)
βœ… The direction must be from hypothesis to next case
    • ❌ Using the wrong starting value
βœ… Match the base case to the actual domain
    • ❌ Concluding the proof without saying induction applies
βœ… Write the final conclusion properly
---

CMI Strategy

πŸ’‘ How to Attack Induction Problems

  • Identify the precise statement P(n)P(n).

  • Check the smallest allowed value carefully.

  • In the induction step, write the k+1k+1 case explicitly.

  • Substitute the induction hypothesis only where it naturally fits.

  • Simplify until the target form appears.

---

Practice Questions

:::question type="MCQ" question="In a standard induction proof, after the base case one usually assumes" options=["P(k+1)P(k+1) is true","P(k)P(k) is true for an arbitrary kk in the domain","P(n)P(n) is true for all nn","the result is obvious"] answer="B" hint="Think about the induction hypothesis." solution="In standard induction, after verifying the base case, we assume P(k)P(k) is true for an arbitrary allowed integer kk and then prove P(k+1)P(k+1). Hence the correct option is B\boxed{B}." ::: :::question type="NAT" question="For the statement 1+2+β‹―+n=n(n+1)21+2+\cdots+n=\dfrac{n(n+1)}{2}, what is the left-hand side when n=4n=4?" answer="10" hint="Add the first four positive integers." solution="For n=4n=4, the left-hand side is 1+2+3+4=10\qquad 1+2+3+4 = 10 Hence the answer is 10\boxed{10}." ::: :::question type="MSQ" question="Which of the following are essential parts of a standard induction proof?" options=["Base case","Induction hypothesis","Induction step","Checking only three numerical examples"] answer="A,B,C" hint="Think of the formal structure of induction." solution="A valid induction proof requires:
  • a base case,
  • an induction hypothesis,
  • an induction step.
  • Checking only a few examples is not a proof. Hence the correct answer is A,B,C\boxed{A,B,C}." ::: :::question type="SUB" question="Prove by induction that 2nβ‰₯n+12^n \ge n+1 for all integers nβ‰₯0n \ge 0." answer="Use induction on nn." hint="Write the (k+1)(k+1) case as 2k+1=2β‹…2k2^{k+1}=2\cdot 2^k." solution="Let P(n)P(n) be the statement 2nβ‰₯n+1\qquad 2^n \ge n+1 for all nβ‰₯0n \ge 0. Base case: For n=0n=0, 20=1β‰₯1\qquad 2^0=1 \ge 1 So P(0)P(0) is true. Induction hypothesis: Assume that for some kβ‰₯0k \ge 0, 2kβ‰₯k+1\qquad 2^k \ge k+1 Induction step: Then 2k+1=2β‹…2kβ‰₯2(k+1)=2k+2\qquad 2^{k+1}=2\cdot 2^k \ge 2(k+1)=2k+2 Now 2k+2β‰₯k+2\qquad 2k+2 \ge k+2 for all kβ‰₯0k \ge 0. So 2k+1β‰₯k+2\qquad 2^{k+1} \ge k+2 which is exactly P(k+1)P(k+1). Hence by mathematical induction, 2nβ‰₯n+1\qquad 2^n \ge n+1 for all integers nβ‰₯0n \ge 0." ::: ---

    Summary

    ❗ Key Takeaways for CMI

    • Mathematical induction proves statements indexed by integers.

    • It consists of base case, induction hypothesis, and induction step.

    • The induction step must genuinely use the hypothesis.

    • Induction is a proof for infinitely many cases, not repeated verification.

    • Clear writing and correct starting index are essential.

    ---

    πŸ’‘ Next Up

    Proceeding to Strong induction.

    ---

    Part 2: Strong induction

    Strong Induction

    Overview

    Strong induction is a variant of induction where, in the induction step, one may assume the statement for all earlier values up to kk, not just for kk alone. This is extremely useful when the proof of the next case depends on several smaller cases rather than only the immediately previous one. In exam problems, strong induction appears naturally in factorisation, decomposition, recursive algorithms, and existence proofs. ---

    Learning Objectives

    ❗ By the End of This Topic

    After studying this topic, you will be able to:

    • State and use strong induction correctly.

    • Recognise when ordinary induction is inconvenient but strong induction is natural.

    • Prove decomposition and factorisation statements.

    • Use strong induction in divisibility and recursive-structure problems.

    • Understand that strong induction is logically equivalent in power to standard induction.

    ---

    Core Idea

    πŸ“– Strong Induction Principle

    Let P(n)P(n) be a statement for integers nβ‰₯n0n \ge n_0.

    To prove P(n)P(n) for all nβ‰₯n0n \ge n_0, it is enough to show:

    • Base case: P(n0)P(n_0) is true.

    • Strong induction step: For every kβ‰₯n0k \ge n_0, if

    P(n0),P(n0+1),…,P(k)\qquad P(n_0),P(n_0+1),\dots,P(k)
    are all true, then P(k+1)P(k+1) is true.

    Then P(n)P(n) holds for all nβ‰₯n0n \ge n_0.

    ---

    Why Strong Induction is Needed

    ❗ When One Previous Case is Not Enough

    Some proofs of P(k+1)P(k+1) use not just P(k)P(k), but some earlier case such as P(kβˆ’2)P(k-2) or a decomposition into smaller parts.

    Typical examples:

      • every integer nβ‰₯2n\ge 2 has a prime factorisation

      • every amount above some threshold can be formed from given denominations

      • recurrence relations using multiple earlier terms

    In such cases, strong induction is often the natural method. ::: ---

    Standard Structure of a Strong Induction Proof

    πŸ“ Template

    To prove P(n)P(n) for all nβ‰₯n0n \ge n_0:

    Step 1: Base case(s)
    Verify the first required case or cases.

    Step 2: Strong induction hypothesis
    Assume that P(j)P(j) is true for all integers jj with
    n0≀j≀k\qquad n_0 \le j \le k

    Step 3: Prove the next case
    Using this full collection of hypotheses, prove P(k+1)P(k+1).

    Step 4: Conclude
    Therefore, by strong induction, P(n)P(n) holds for all nβ‰₯n0n \ge n_0.

    ---

    Strong Induction vs Ordinary Induction

    ❗ Key Comparison
      • Ordinary induction assumes only P(k)P(k).
      • Strong induction assumes all earlier statements up to kk.
    In terms of logical power, they are equivalent. But strong induction is often much easier to use in problems where the next step depends on multiple earlier steps.
    ---

    Minimal Worked Example

    Example Prove that every integer nβ‰₯2n \ge 2 can be written as a product of primes. Base case: For n=2n=2, the statement is true because 22 itself is prime. Strong induction hypothesis: Assume every integer mm with 2≀m≀k\qquad 2 \le m \le k can be written as a product of primes. Induction step: Consider k+1k+1.
    • If k+1k+1 is prime, then it is already a product of primes.
    • If k+1k+1 is composite, then
    k+1=ab\qquad k+1 = ab where 2≀a,b≀k2 \le a,b \le k. By the strong induction hypothesis, both aa and bb are products of primes. Therefore k+1k+1 is also a product of primes. Hence the statement holds for all nβ‰₯2n \ge 2. ::: This proof uses smaller cases below kk, not just the case kk itself. That is why strong induction fits naturally. ---

    When Multiple Base Cases Are Needed

    ❗ Do Not Miss This

    If the recursive structure depends on more than one starting value, then several base cases may be needed.

    For example, if a claim about nn uses smaller cases nβˆ’1n-1 and nβˆ’2n-2, then one base case may not be enough.

    Always check the dependency pattern before deciding how many initial cases must be verified. ---

    Common Applications

    πŸ“ Typical Strong-Induction Problems

    • prime factorisation

    • coin or postage construction problems

    • decomposition into smaller allowed pieces

    • recurrence proofs depending on many earlier terms

    • existence of tilings or representations

    ---

    Common Mistakes

    ⚠️ Avoid These Errors
      • ❌ Stating strong induction but using only vague assumptions
    βœ… Clearly state that all cases from the base up to kk are assumed
      • ❌ Proving P(k+1)P(k+1) using a smaller case that was never included in the hypothesis
    βœ… Make the hypothesis range explicit
      • ❌ Forgetting extra base cases when needed
    βœ… Check the recursive dependency pattern
      • ❌ Thinking strong induction is a different kind of truth from ordinary induction
    βœ… It is a different proof format, not a different notion of proof validity
    ---

    CMI Strategy

    πŸ’‘ How to Recognise Strong Induction

    Ask:

    • Does the next case depend on several earlier cases?

    • Is the object decomposed into smaller pieces of variable size?

    • Do I need a hypothesis for all smaller values, not just the immediate predecessor?


    If yes, strong induction is often the correct tool.

    ---

    Practice Questions

    :::question type="MCQ" question="In strong induction, the induction hypothesis usually assumes" options=["only P(k)P(k)","all earlier cases up to kk","only the base case","nothing at all"] answer="B" hint="Think about the key difference from ordinary induction." solution="In strong induction, one assumes that the statement holds for all values from the starting point up to kk, and then proves it for k+1k+1. Hence the correct option is B\boxed{B}." ::: :::question type="NAT" question="What is the smallest integer nn for which the statement β€œevery integer nβ‰₯2n \ge 2 has a prime factorisation” begins?" answer="2" hint="Read the statement carefully." solution="The statement begins at the integer 2\boxed{2}. That is the first required base case." ::: :::question type="MSQ" question="Which of the following are true?" options=["Strong induction is useful when the next case depends on multiple earlier cases","Strong induction and ordinary induction are logically equivalent in strength","Strong induction never needs more than one base case","Prime factorisation is a standard example of strong induction"] answer="A,B,D" hint="Think about when strong induction is naturally used." solution="1. True.
  • True.
  • False. Some problems require multiple base cases.
  • True.
  • Hence the correct answer is A,B,D\boxed{A,B,D}." ::: :::question type="SUB" question="Using strong induction, prove that every integer nβ‰₯2n \ge 2 can be expressed as a product of primes." answer="Use the prime/composite split in the induction step." hint="If nn is composite, factor it into smaller integers and apply the hypothesis." solution="Let P(n)P(n) be the statement: nΒ canΒ beΒ expressedΒ asΒ aΒ productΒ ofΒ primes\qquad n \text{ can be expressed as a product of primes} for all integers nβ‰₯2n \ge 2. Base case: For n=2n=2, the statement is true because 22 is itself prime. Strong induction hypothesis: Assume that for some kβ‰₯2k \ge 2, every integer mm with 2≀m≀k\qquad 2 \le m \le k can be expressed as a product of primes. Induction step: We prove P(k+1)P(k+1). There are two cases:
  • If k+1k+1 is prime, then it is already a product of primes.
  • If k+1k+1 is composite, then
  • k+1=ab\qquad k+1 = ab for integers a,ba,b such that 2≀a,b≀k\qquad 2 \le a,b \le k By the strong induction hypothesis, both aa and bb can be expressed as products of primes. Therefore their product ab=k+1ab = k+1 can also be expressed as a product of primes. So in either case, P(k+1)P(k+1) holds. Hence, by strong induction, every integer nβ‰₯2n \ge 2 can be expressed as a product of primes." ::: ---

    Summary

    ❗ Key Takeaways for CMI

    • Strong induction assumes all earlier cases up to kk.

    • It is especially useful when the next case depends on several smaller cases.

    • It is logically equivalent to ordinary induction but often more natural.

    • Multiple base cases may be necessary.

    • Prime factorisation is one of the most important standard applications.

    ---

    πŸ’‘ Next Up

    Proceeding to Recursive construction.

    ---

    Part 3: Recursive construction

    Recursive Construction

    Overview

    Recursive construction is the method of building mathematical objects step by step, where each stage is created from earlier stages by a fixed rule. This topic is fundamental in logic, proof, combinatorics, algorithms, and discrete mathematics. In exam problems, the goal is often to show that an object exists for all sizes, or to describe how a valid object can be built inductively. ---

    Learning Objectives

    ❗ By the End of This Topic

    After studying this topic, you will be able to:

    • Understand what a recursive construction is.

    • Build objects step by step from smaller instances.

    • Use recursive construction to prove existence statements.

    • Distinguish between recursive definition and explicit description.

    • Combine recursive construction with induction proofs.

    ---

    Core Idea

    πŸ“– Recursive Construction

    A recursive construction describes how to create a mathematical object of size n+1n+1 from one or more objects of smaller size.

    The process usually has:

    • a base object

    • a rule for building larger objects from smaller ones

    Examples:
    • build a sequence term by term
    • build tilings of boards
    • build binary strings of length nn
    • build trees, paths, or combinatorial patterns
    ::: ---

    Recursive Construction vs Recursive Definition

    ❗ Important Distinction

    A recursive definition tells you how later objects depend on earlier ones.

    A recursive construction actively shows how to build or generate the objects.

    These are closely related, but in proof problems, recursive construction is usually more constructive and existence-oriented.

    ---

    Standard Pattern

    πŸ“ Typical Recursive Construction Scheme

    To construct objects of size nn recursively:

    • Base case: construct the object for the smallest size

    • Recursive step: assume you already have a valid construction for size nn

    • Build size n+1n+1: modify or extend the existing object while preserving the required property

    ---

    Why Recursive Construction Matters

    ❗ Main Uses

    Recursive construction is often used to prove:

      • existence of an object for every nn

      • a counting recurrence

      • correctness of an algorithm

      • structural properties of combinatorial objects

    The reasoning is often:
    • β€œI know how to build the first one.”
    • β€œWhenever I can build one of size nn, I can build one of size n+1n+1.”
    • β€œTherefore I can build them for all nn.”
    ::: ---

    Typical Examples

    πŸ“ Common Recursively Constructed Objects

    • Strings:

    Build strings of length n+1n+1 by appending a symbol to strings of length nn

    • Tilings:

    Tile a larger board by adding one more tile to a smaller valid tiling

    • Paths:

    Extend a path of length nn by one additional step

    • Graphs / trees:

    Add one new vertex or edge while preserving the required property

    • Sets:

    Define a family by specifying initial members and closure rules

    ---

    Minimal Worked Example

    Example Construct binary strings of length nn recursively. Base case: For n=1n=1, the valid binary strings are 0,Β 1\qquad 0,\ 1 Recursive step: Given all binary strings of length nn, construct strings of length n+1n+1 by appending either 00 or 11 to each existing string. So every string of length n+1n+1 is obtained from a smaller one by one recursive step. This is a recursive construction. ::: ---

    Recursive Construction and Induction

    ❗ How They Work Together

    Recursive construction tells you how to build the object.

    Induction proves that the construction works for all allowed sizes.

    So in many problems:

      • recursive construction provides the idea

      • induction provides the proof

    ---

    Structural Preservation

    πŸ’‘ The Most Important Question

    In a recursive construction problem, always ask:

    WhatΒ propertyΒ mustΒ remainΒ trueΒ afterΒ eachΒ step?\qquad \text{What property must remain true after each step?}

    When you enlarge the object:

      • what is added?

      • why does the required condition still hold?

      • what new condition must be checked?

    This is often the heart of the proof. ::: ---

    Common Construction Patterns

    πŸ“ Frequent Recursive Moves
      • append one symbol
      • attach one new block
      • split into smaller parts, then combine
      • remove a small part, solve recursively, then restore
      • add one new element and update the structure
    ---

    Common Mistakes

    ⚠️ Avoid These Errors
      • ❌ Describing only the base object but not the recursive rule
    βœ… A recursive construction needs both
      • ❌ Giving a rule that does not preserve the required property
    βœ… Check preservation carefully
      • ❌ Assuming the larger object is valid without verifying the added part
    βœ… Every recursive step must be justified
      • ❌ Confusing β€œcan be defined recursively” with β€œhas been constructed recursively”
    βœ… The actual build process must be clear
    ---

    CMI Strategy

    πŸ’‘ How to Attack Recursive Construction Problems

    • Find the smallest object that works.

    • Guess how one can extend a valid object.

    • Identify the invariant or required property.

    • Show that the extension preserves the property.

    • Write the recursive step in a form that can be used in a proof.

    ---

    Practice Questions

    :::question type="MCQ" question="A recursive construction usually consists of" options=["only a final formula","a base object and a rule to build larger objects","a geometric diagram only","checking many examples"] answer="B" hint="Think about how recursive building starts and continues." solution="A recursive construction needs:
  • a base object, and
  • a rule to construct larger objects from smaller ones.
  • Hence the correct option is B\boxed{B}." ::: :::question type="NAT" question="If a binary string of length n+1n+1 is built from one of length nn by appending one symbol, how many choices are there for the appended symbol?" answer="2" hint="Binary means two possible symbols." solution="A binary string uses the symbols 00 and 11. So at each step, there are exactly 2\boxed{2} choices for the appended symbol." ::: :::question type="MSQ" question="Which of the following are typical features of recursive construction?" options=["A base case","A recursive extension rule","Preservation of a desired property","An explicit closed formula is always necessary"] answer="A,B,C" hint="Think about what makes a recursive build valid." solution="1. True.
  • True.
  • True.
  • False. A recursive construction does not require an explicit closed formula.
  • Hence the correct answer is A,B,C\boxed{A,B,C}." ::: :::question type="SUB" question="Explain how recursive construction can be used to show that binary strings of every positive length exist." answer="Start with length 11 and append a symbol at each step." hint="Use a base case and a recursive extension rule." solution="We prove existence of binary strings of every positive length by recursive construction. Base case: For length 11, strings such as 00 and 11 already exist. Recursive step: Assume that a binary string of length nn has been constructed. Append either 00 or 11 to the end of that string. The result is a binary string of length n+1n+1. Thus, from a valid string of length nn, we can construct one of length n+1n+1. Therefore, starting from length 11 and repeating the recursive step, binary strings of every positive length exist." ::: ---

    Summary

    ❗ Key Takeaways for CMI

    • Recursive construction builds larger objects from smaller ones.

    • It always needs a base case and a recursive rule.

    • The crucial issue is preserving the required property at each step.

    • Recursive construction is often paired with induction.

    • It is especially useful in existence and combinatorial proof problems.

    ---

    πŸ’‘ Next Up

    Proceeding to Existence examples.

    ---

    Part 4: Existence examples

    Existence Examples

    Overview

    To prove that something exists, it is often enough to produce one correct example. This makes existence proofs very different from universal proofs. In some problems, one explicit example is enough; in others, we must show how to build an example for every nn or for infinitely many cases. ---

    Learning Objectives

    ❗ By the End of This Topic

    After studying this topic, you will be able to:

    • Distinguish existence statements from universal statements.

    • Prove existence by giving an explicit example.

    • Prove infinitely many examples by construction.

    • Understand when induction helps create a family of examples.

    • Avoid confusing β€œone example” with β€œall examples”.

    ---

    Core Idea

    πŸ“– Existence Statement

    An existence statement has the form

    βˆƒxΒ suchΒ thatΒ P(x)\qquad \exists x \text{ such that } P(x)

    To prove it, it is enough to find one valid object xx satisfying P(x)P(x).

    ❗ Two Common Types

    • Single existence

    βˆƒxΒ suchΒ thatΒ P(x)\qquad \exists x \text{ such that } P(x)

    • Parameterized existence

    βˆ€n,Β βˆƒxΒ suchΒ thatΒ P(n,x)\qquad \forall n,\ \exists x \text{ such that } P(n,x)

    The second type often needs a construction depending on nn.

    ---

    Standard Methods

    πŸ“ Method 1: Explicit Example

    If the statement is
    βˆƒxΒ suchΒ thatΒ P(x)\qquad \exists x \text{ such that } P(x),
    try to find one concrete xx and verify it.

    πŸ“ Method 2: Construction

    If the statement is
    βˆ€n,Β βˆƒxΒ suchΒ thatΒ P(n,x)\qquad \forall n,\ \exists x \text{ such that } P(n,x),
    give a formula or rule producing such an xx from nn.

    πŸ“ Method 3: Inductive Construction

    Sometimes a family of examples is built step by step:

      • construct a base example,

      • show how to enlarge one valid example into another.


    This is where induction and construction meet.

    ---

    Minimal Worked Examples

    Example 1 Prove that there exists a composite number of the form n2+n+41\qquad n^2+n+41 Take n=41\qquad n=41. Then n2+n+41=412+41+41=41(41+2)=41β‹…43\qquad n^2+n+41 = 41^2+41+41 = 41(41+2)=41\cdot 43 which is composite. So the required existence statement is proved. --- Example 2 Prove that for every positive integer nn, there exists an even integer greater than nn. Take x=2n+2\qquad x=2n+2 Then xx is even and x=2n+2>n\qquad x=2n+2>n So this constructs the required example for each nn. ---

    Why Examples Matter

    ❗ Existence Needs Validity, Not Exhaustion

    To prove there exists an object, you do not need to classify all such objects. You only need one correct witness.

    But that witness must satisfy every required condition.

    ---

    Construction vs Guessing

    ⚠️ A Random Example Is Not Enough

    An example is useful only if:

    • it is actually valid,

    • you explain why it works,

    • in the parameterized case, it works for every allowed input.


    So β€œhere is one pattern” is not a proof unless the pattern is justified.

    ---

    Induction-Flavored Existence

    πŸ’‘ When Induction Helps

    Suppose we want to prove:

      • for every nn, a structure of size nn exists,

      • or an example with property PnP_n exists.


    Then a common strategy is:
    • construct the case n=1n=1,

    • show how to extend a valid example of size nn to one of size n+1n+1.

    This is not always the best method, but it is very useful in constructive combinatorics. ---

    Common Mistakes

    ⚠️ Avoid These Errors
      • ❌ Giving an example but not checking it
      • ❌ Proving only one case when the statement says β€œfor every nn”
      • ❌ Confusing existence with uniqueness
      • ❌ Giving a construction that does not satisfy the original condition
    ---

    CMI Strategy

    πŸ’‘ How to Attack Existence Problems

    • Read carefully whether the statement asks for one example or infinitely many.

    • If one example is enough, search for a smart witness.

    • If every nn is involved, try to build a formula in terms of nn.

    • Verify the example explicitly.

    • Prefer constructions that are simple and checkable.

    ---

    Practice Questions

    :::question type="MCQ" question="To prove that there exists an even prime number, it is enough to show that" options=["22 is even and prime","all prime numbers are even","all even numbers are prime","there are infinitely many even primes"] answer="A" hint="An existence proof needs one valid example." solution="The number 22 is both even and prime. That single valid example proves the existence statement. Therefore the correct option is A\boxed{A}." ::: :::question type="NAT" question="Give one positive integer nn for which n2+nn^2+n is even." answer="1" hint="Try a very small value first." solution="Take n=1\qquad n=1. Then n2+n=12+1=2\qquad n^2+n=1^2+1=2, which is even. Hence one valid answer is 1\boxed{1}." ::: :::question type="MSQ" question="Which of the following can be valid ways to prove an existence statement?" options=["Exhibiting one correct example","Giving a construction that works for every allowed nn","Checking one invalid example","Using contradiction to show that assuming nonexistence fails"] answer="A,B,D" hint="Think about standard proof methods for existence." solution="1. True. 2. True. 3. False. An invalid example proves nothing. 4. True. Contradiction can also prove existence. Hence the correct answer is A,B,D\boxed{A,B,D}." ::: :::question type="SUB" question="Prove that for every positive integer nn, there exists an odd integer greater than nn." answer="Take 2n+12n+1 if nn is even, or 2n+32n+3; more simply, 2n+1>n2n+1>n and is odd for all positive nn." hint="Construct an explicit odd number from nn." solution="Let x=2n+1\qquad x=2n+1. Then xx is odd because it is of the form 2k+1\qquad 2k+1 with k=nk=n. Also x=2n+1>n\qquad x=2n+1>n for every positive integer nn. Therefore, for every positive integer nn, there exists an odd integer greater than nn, namely 2n+1\boxed{2n+1}." ::: ---

    Summary

    ❗ Key Takeaways for CMI

    • Existence proofs need a valid witness.

    • β€œThere exists” and β€œfor every” require different proof styles.

    • Construction is often the cleanest method.

    • Parameterized existence usually needs a formula in terms of the parameter.

    • Always verify the example completely.

    ---

    Chapter Summary

    ❗ Induction and construction β€” Key Points

    Mathematical Induction (MI) is a fundamental proof technique for statements about natural numbers, requiring a base case and an inductive step.
    Strong Induction (SI) is a variant where the inductive hypothesis assumes the statement holds for all
    values up to kk, not just kk, often simplifying proofs for recursive definitions or when the k+1k+1 case depends on earlier non-adjacent cases.
    Recursive Definitions precisely define sequences, functions, or sets by specifying initial values (base cases) and a rule for constructing subsequent elements from preceding ones (recursive step).
    The validity of both MI and SI rests on the Well-Ordering Principle, which states every non-empty set of natural numbers has a least element.
    Induction is crucial for proving properties of recursively defined structures and algorithms, ensuring their correctness and existence under specified conditions.
    Distinguishing between MI and SI involves analyzing the dependency of P(k+1)P(k+1): if it depends only on P(k)P(k), MI suffices; if it depends on P(j)P(j) for j≀kj \le k, SI is generally more appropriate.

    ---

    Chapter Review Questions

    :::question type="MCQ" question="Which of the following statements is typically best proven using strong induction rather than standard mathematical induction?" options=["The sum of the first nn natural numbers is n(n+1)/2n(n+1)/2.", "For any integer nβ‰₯1n \ge 1, 22nβˆ’12^{2n}-1 is divisible by 3.", "Every integer nβ‰₯2n \ge 2 can be expressed as a product of prime numbers.", "A sequence defined by an=2anβˆ’1a_n = 2a_{n-1} for nβ‰₯1n \ge 1 with a0=1a_0=1 has the property an=2na_n = 2^n."] answer="Every integer nβ‰₯2n \ge 2 can be expressed as a product of prime numbers." hint="Consider cases where P(k+1)P(k+1) depends on P(j)P(j) for j<k+1j < k+1 rather than just P(k)P(k)." solution="The Fundamental Theorem of Arithmetic, stating that every integer nβ‰₯2n \ge 2 can be expressed as a product of prime numbers, is a classic application of strong induction. The proof for nn relies on the fact that if nn is composite, it can be written as abab where a,b<na, b < n, and the inductive hypothesis applies to aa and bb (which are not necessarily nβˆ’1n-1). The other options are typically proven using standard mathematical induction."
    :::

    :::question type="NAT" question="A sequence is defined by a0=3a_0 = 3, a1=2a_1 = 2, and an=anβˆ’1+2anβˆ’2a_n = a_{n-1} + 2a_{n-2} for nβ‰₯2n \ge 2. What is the value of a4a_4?" answer="28" hint="Calculate the terms iteratively starting from a2a_2." solution="Using the recursive definition:
    a0=3a_0 = 3
    a1=2a_1 = 2
    a2=a1+2a0=2+2(3)=8a_2 = a_1 + 2a_0 = 2 + 2(3) = 8
    a3=a2+2a1=8+2(2)=12a_3 = a_2 + 2a_1 = 8 + 2(2) = 12
    a4=a3+2a2=12+2(8)=28a_4 = a_3 + 2a_2 = 12 + 2(8) = 28"
    :::

    :::question type="MCQ" question="Which of the following statements about the principle of mathematical induction is FALSE?" options=["The base case must be proven true for the smallest value of nn for which the statement is claimed to hold.", "The inductive hypothesis assumes P(k)P(k) is true for an arbitrary integer kβ‰₯baseΒ casek \ge \text{base case}.", "The inductive step proves P(k+1)P(k+1) is true, assuming P(k)P(k) is true.", "If the base case is false but the inductive step holds, the statement P(n)P(n) is still guaranteed to be true for all nβ‰₯baseΒ casen \ge \text{base case}."] answer="If the base case is false but the inductive step holds, the statement P(n)P(n) is still guaranteed to be true for all nβ‰₯baseΒ casen \ge \text{base case}." hint="Both the base case and the inductive step are necessary components for a valid inductive proof." solution="For a statement P(n)P(n) to be proven true by mathematical induction, both the base case P(n0)P(n_0) and the inductive step P(k)β€…β€ŠβŸΉβ€…β€ŠP(k+1)P(k) \implies P(k+1) must be valid. If the base case is false, the induction cannot establish the truth of P(n)P(n) for any nn, even if the inductive step holds."
    :::

    :::question type="NAT" question="Let SS be the set recursively defined by:

  • 3∈S3 \in S

  • If x∈Sx \in S, then x+4∈Sx+4 \in S.

  • What is the smallest element in SS that is greater than 10?" answer="11" hint="List the elements of the set SS in increasing order." solution="The elements of SS are generated as follows:
    Starting with 3∈S3 \in S.
    Applying rule 2: 3+4=7∈S3+4 = 7 \in S.
    Applying rule 2: 7+4=11∈S7+4 = 11 \in S.
    Applying rule 2: 11+4=15∈S11+4 = 15 \in S.
    And so on.
    The elements of SS are {3,7,11,15,19,… }\{3, 7, 11, 15, 19, \dots\}. The smallest element in SS greater than 10 is 11."
    :::

    ---

    What's Next?

    πŸ’‘ Continue Your CMI Journey

    This chapter established mathematical induction and recursive construction as powerful tools for proving properties of natural numbers and defining complex structures. These techniques build directly upon the logical foundations of proof introduced previously and are indispensable for rigorous mathematical thinking. Expect to apply these principles extensively when analyzing algorithms, constructing data structures, and proving theorems in subsequent chapters on topics such as graph theory, discrete structures, and computability.

    🎯 Key Points to Remember

    • βœ“ Master the core concepts in Induction and construction 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