Assume $P(i)$ is true for all $n_0 \leq i \leq k$.
3.*Inductive Step*:
Prove $P(k + 1)$ is true using the assumption $P(i)$ for all $i \leq k$.
**Example**:
- Every $n \geq 2$ can be factored into primes.
- **Proof**:
1.*Base Case*: $n = 2$ is a prime.
2. $IH$: Assume every $n \leq k$ can be factored into primes.
3.*Inductive Step*: For $n = k + 1$:
- If $k + 1$ is prime, done.
- If composite, $k + 1 = a \cdot b$, where $2 \leq a, b \leq k$.
- By hypothesis, $a$ and $b$ can be factored into primes.
- Combine the prime factors of $a$ and $b$ to get $k + 1$'s factorization.
[^1]: Breaking a complex problem into smaller, simpler parts to solve each one step by step
[^2]: Proof that works by showing it works for the smallest case, then assuming it works for one number and proving it works for the next
[^3]: Instead of directly proving "If A, then B," you prove "If not B, then not A," which means the same thing logically.
[^4]: A way of proving something is true by assuming it is false and showing this leads to a logical impossibility, which, as we know, really messes with everything.
[^5]: Checking every possible case individually to prove something is true for all of them.
[^6]: Showing something is true for all cases by proving it for an arbitrary or random example. Similar to formal proof for introducing the $\forall$ quantifier
[^7]: Directly finding an example to show something exists or is true.
[^8]: Proving something exists or is true without giving a specific example, usually by ruling out the possibility of it not being true.
[^9]: Like induction, but you assume everything is true up to a certain point to prove the next case
[^10]: A statement where both directions are true, like "A if and only if B," meaning A leads to B, and B leads to A.