I have a set of problems I am trying to complete. They are all proofs by induction. I have made attempts at most of them and always get stuck doing the inductive step.
Can someone explain in layman's terms what the inductive step does and how we are supposed to know the proper equation manipulation? Any tips on how to complete the Inductive Step portion of proof by induction would be very helpful!
Think of induction as dominoes being knocked over. The inductive step shows that if the statement (whatever it is) is true for $N$, it is true for $N+1$. But then applying the hypothesis to $N+1$, the statement is true for $N+2$, and so forth. So what the inductive statement is really doing is showing that if a statement is true for some $N$, it is true for all the ones bigger than $N$. So then it comes to the base case. Suppose you show the statement is true for $N= 5$, then combining this with the inductive hypothesis, you have shown the statement is true for $N= 5,6,7,\ldots$. As for the manipulation, you will assume that the statement is true for $N= k$, then you should manipulate the necessary equations or statements to show that the statement is true for $N= k+1$. But notice that in (most) of the cases, you are starting with the information you have for $N=k$ then pushing towards $N= k+1$, not the other way around. A common error is to assume the statement for $N=k$, but then write down the statement for $N= k+1$, hence tacitly assuming the case for $N= k+1$ (how else could you write down the statement for $N= k+1$ unless one is assuming what they have written is correct). For a lot of introductory induction problems, you can write the statement for $N=k+1$ and work towards $N=k$. Then reversing your steps will show the argument you should be making. This is because many introductory problems involve streams of $=$'s, which are reversible. But again, you start with what you know, $N=k$ (by assumption) and show the statement for $N=k+1$ holds.
You can think of this as knocking over dominos. The inductive hypothesis shows that if you knock over one of the dominos in the line, all the ones after it will eventually be pushed over. The base case is the one you push over first. So the two parts together to show that the domino you begin with and all subsequent dominos are knocked over.
If you wanted to read more about induction generally and see lots of examples, all very well done, I would strongly recommend Keith Conrad's Examples of Proof by Induction. If you wanted more specific advice, I would add the problem you are working on to the question.