MethodMath
Ask
Join
HomeTopicsAskAlerts
Profile

© 2026 MethodMath. Built for mathematical knowledge sharing.

AboutContactGuidelinesPrivacyTermsCookies
Sarah Mitchell
Sarah Mitchell
Jun 21, 2026

How does mathematical induction prove formulas clearly?

I keep seeing induction written as "base case, assume true for k, prove true for k+1", but I get lost in the actual algebra.

For example, how would I prove this without just memorizing the pattern?

1+2+⋯+n=n(n+1)21+2+\cdots+n=\frac{n(n+1)}{2}1+2+⋯+n=2n(n+1)​

Also, when a proof says "assume it is true for k", are we pretending it is true? That part feels circular to me.

1 answers219 views

1 Answer

1
Chen Wei
Chen Wei
Jun 21, 2026
The non-circular part is this: induction does not assume the statement is true for every number. It proves two things: 1. The first case is true. 2. If any one case is true, then the next case must be true. Those two facts create a chain. For the formula $$ 1+2+\cdots+n=\frac{n(n+1)}{2}, $$ let $P(n)$ be the statement that the formula is true for that value of $n$. **Base case.** For $n=1$: $$ 1=\frac{1(1+1)}{2}=1. $$ So the first domino is standing. **Inductive step.** Assume the formula is true for $n=k$: $$ 1+2+\cdots+k=\frac{k(k+1)}{2}. $$ Now add the next term, $k+1$, to both sides: $$ \begin{aligned} 1+2+\cdots+k+(k+1) &=\frac{k(k+1)}{2}+(k+1)\\ &=\frac{k(k+1)+2(k+1)}{2}\\ &=\frac{(k+1)(k+2)}{2}. \end{aligned} $$ That is exactly the same formula with $n=k+1$. So we proved: if $P(k)$ is true, then $P(k+1)$ is true. Since $P(1)$ is true, the chain forces $P(2), P(3), P(4)$, and so on. The assumption is temporary. It is not "pretending the theorem is true"; it is proving the logical bridge from one case to the next.
Still unsure? Join to comment or ask a follow-up.
Login or Register to post your answer

Suggested questions

Why does 0 factorial equal 1 instead of 0? Simple proof

31.4k

Does 1+2+3+4+... really equal -1/12? Math explained

25.6k

Can someone explain Hilbert's hotel paradox simply?

24k

Does the Banach-Steinhaus theorem hold for non-complete normed spaces?

31.1k

Do I need Calculus 3 before learning Fourier series?

3501