| Criteria | Marks |
|---|
| Provides correct solution | 4 |
| Correctly proves the inductive step<br>OR<br>Verifies initial case, n=2, AND assumes true for k and attempts to verify true for k+1 | 3 |
| Assumes true for k and attempts to verify true for k+1 | 2 |
| Verifies initial case, n=2 | 1 |
Sample answer:
Let P(n) be the given proposition.
P(2) is true since
221<21
Let k be an integer for which P(k) is true. Thus we assume that
221+321+⋯+k21<kk−1
Consider
221+321+⋯+k21+(k+1)21
<(k+1)21+kk−1
=(k+1)2kk+(k+1)2(k−1)
<(k+1)2k(k+1)+(k+1)2(k−1)
=(k+1)k1+k2−1=k+1k
∴P(k+1) is true.
∴P(n) true for all integers n≥2 by induction.