P(n): $n=2n$ for all integers $n >= 0$
Base Case: n = 0
Verify Base Case:
P(0): 0 = 2(0) which is true
Induction Step:
Assume that P(n) is true. Then multiply both sides of the quantity by $(n+1)/n$ which gives us $n+1=2(n+1)$ = $P(n+1)$
I am not sure what exactly makes this proof wrong despite me knowing it is false.
You have divided by $n$ in your induction step where you have multiplied by $(n+1)/n$
Note that you may not divide by $n=0$ but your initial step was involving $n=0$
Thus your argument fails at $$P(0)\implies P(1)$$