What is an effective way to write induction proofs?
Essentially, are there any good examples or templates of induction proofs that may be helpful (for beginners, non-English-native students, etc.)?
To guide readers, please state whether your answer handles:
- Case 1: a simple induction $(P_n \implies P_{n+1}$), or
- Case 2: a strong induction ($P_1,\ldots,P_n \implies P_{n+1}$), or
- Case 3: a more exotic induction (e.g. over $\Bbb Q$ on $|p|+q$).
PS: I have seen many induction related questions, and very often the problem lies with the OP's lack of a proper methodology (or style) in writing the proof whereas the answers focus on the particular case of the OP's question. The matter of style is obviously subjective, but it seems to me that the "craft" of writing good proofs is almost as important as understanding underlying concepts, so advice on proper proof-writing practices should fall within the scope of MSE (under the proof-writing tag).

A proposal for case 1 (simple induction):
Here are some generic recommendations for beginners I have given in previous answers (here or here):
Let's prove that $\forall q \in \Bbb C - \{1\}$, $1+q+\cdots+q^n = \tfrac{1-q^{n+1}}{1-q}$.
We start by fixing $q \in \Bbb C- \{1\}$.
For $n \in \Bbb N$, we define the statement $\displaystyle P_n\;:\; \sum_{k=0}^{n} q^k = \tfrac{1-q^{n+1}}{1-q}$.
Base case: if $n=0$, the left-hand-side term (LHS) in $P_0$ has only term equal to $1$, and the RHS is equal to $\tfrac{1-q}{1-q} = 1$. We have thus proven that $P_0$ is true.
Inductive step: let $n$ be an integer greater than $1$, and let's assume that $P_{n-1}$ is true. Then: $$\begin{align} \sum_{k=0}^{n} q^k & = \sum_{k=0}^{n-1} q^k + q^n \quad & \text{(by definition)}\\ & = \color{red}{\tfrac{1-q^n}{1-q}} + q^n & \color{red}{\text{(since $P_{n-1}$ is assumed to be true)}} \\ & = \frac{1-q^n + q^n(1-q)}{1-q} = \frac{1-q^{n+1}}{1-q} \end{align}$$ We have just showed that $P_{n-1} \implies P_n$.
Conclusion: since $P_0$ is true and $\forall n \ge 1$, $P_{n-1} \implies P_n$, $P_n$ holds for all $n\in \Bbb N$. QED