Mathematical Induction — Exercises

énoncés

By Pr. El Hadiq Zouhair

Contents

  1. Sum $1 + 2 + \dots + n$ easy
  2. Sum of squares $\sum i^2$ easy
  3. Sum of cubes $\sum i^3$ medium
  4. Sum of odd numbers $= n^2$ easy
  5. Geometric sum $\sum r^i$ medium
  6. $2^n > n^2$ for $n \geq 5$ medium
  7. $n < 2^n$ for $n \geq 1$ easy
  8. $|\mathcal{P}(S)| = 2^{|S|}$ medium
  9. $3 \mid n^3 - n$ medium
  10. $\sum 1/i^2 < 2$ hard
  11. Strong induction — postage stamps (4, 5) hard
  12. Strong induction — Fibonacci $\leq 2^n$ hard

1$\displaystyle\sum_{i=1}^{n} i = \dfrac{n(n+1)}{2}$ easy

Prove by induction for $n \geq 1$.

Your answer…

2$\displaystyle\sum_{i=1}^{n} i^2 = \dfrac{n(n+1)(2n+1)}{6}$ easy

Prove by induction.

Your answer…

3$\displaystyle\sum_{i=1}^{n} i^3 = \Bigl(\dfrac{n(n+1)}{2}\Bigr)^2$ medium

Prove by induction and verify with SymPy.

Your answer…

4$\displaystyle\sum_{i=1}^{n} (2i - 1) = n^2$ easy

Prove by induction.

Your answer…

5Geometric sum: $\displaystyle\sum_{i=0}^{n} r^i = \dfrac{r^{n+1} - 1}{r - 1}$ for $r \neq 1$ medium

Prove by induction on $n$.

Your answer…

6$2^n > n^2$ for $n \geq 5$ medium

Be careful with the starting index. Verify $n = 4$ does not work.

Your answer…

7$n < 2^n$ for $n \geq 1$ easy

Prove by induction.

Your answer…

8A set of $n$ elements has $2^n$ subsets medium

Prove by induction on $n$.

Your answer…

9$3 \mid n^3 - n$ for every $n \in \mathbb{N}$ medium

Prove by induction on $n \geq 0$.

Your answer…

10$\displaystyle\sum_{i=1}^{n} \dfrac{1}{i^2} \leq 2 - \dfrac{1}{n}$ for $n \geq 1$ hard

Stronger than $\sum 1/i^2 < 2$ — the extra $-1/n$ is the trick that makes induction work.

Your answer…

11Strong induction — stamps of 4 and 5 cents hard

Prove that every postage value $n \geq 12$ cents can be made with stamps of 4¢ and 5¢ only. Verify with Python by brute force.

Your answer…

12Strong induction — $F_n \leq 2^n$ hard

The Fibonacci sequence is $F_0 = 0,\, F_1 = 1,\, F_n = F_{n-1} + F_{n-2}$ for $n \geq 2$. Prove by strong induction that $F_n \leq 2^n$ for every $n \geq 0$.

Your answer…

Going further

Open the main lesson for the matching theory.