First off my apologies for asking really simple questions, but I'm having some trouble wrapping my head around proof of induction when trying to prove a statement involving a natural number n holds for all values of n.
In the induction step lets assume the following simple example as found on this wikipedia page:
Proof the formula below for all positive integers.

In the wikipedia example inductive step. They ADD k+1 on the left side, but REPLACE k with k+1 on the right side. My book adds k+1 on both the left AND the right side. Example: Wikipedia starts the right side of the inductive step with:

So the wikipedia example replaced n with k+1. My book starts the right side of the inductive step with: $= \frac {k(k+1)}{2} + k+1$. So my book just added it to the right side. Now for this particular example it doesn't matter when you replace or add the k+1 on the right side. The outcome of the proof will be the same.
My question is if it EVER matters in proof of induction. If I want to prove Pn+1 is true assuming Pn is true. Should I just replace the n with n+1 on both sides, should I add it on both sides of the equation or does it never matter?
EDIT: Based on multiple answers I was able to get a clear understanding of how I should properly use proof of induction! Thanks a lot everyone!
You seem to be confusing two distinct things:
For example, consider the following statement $P_n$:
In order to obtain $P_{k+1}$ (the statement that we WANT to prove), we simply take the above statement and replace $n$ with $k+1$: $$ 1 + 2 + \cdots + (k+1) = \frac{(k+1)(k + 2)}{2} $$ Note that we haven't proven anything yet. All that we've done so far is given ourselves a goal for us to work towards.
Now when we actually try to perform valid logical manipulations to prove the above statement, we need to start with what we know. Indeed, we start by assuming that our induction hypothesis $P_k$ is true: $$ 1 + 2 + \cdots + k = \frac{k(k + 1)}{2} $$ and then perform a valid manipulation, which is adding $k+1$ to both sides: $$ 1 + 2 + \cdots + k + (k+1) = \frac{k(k + 1)}{2} + (k+1) $$ Simplifying the right hand side, we obtain: $$ \frac{k(k + 1)}{2} + (k+1) = \frac{k(k + 1) + 2(k+1)}{2} = \frac{(k + 1)(k+2)}{2} $$ Thus, we've established that: $$ 1 + 2 + \cdots + k + (k+1) = \frac{(k + 1)(k+2)}{2} $$ which is exactly the statement $P_{k+1}$ that we wanted to prove. So we've performed the induction step correctly!