Let the function ${\rm five}(n)$ be a function defined by the two equations:
${\rm five}(0) = 10 \\ {\rm five}(n+1) = {\rm five}(n) + 5$
Prove that: ${\rm five}(j) = 5*(j + 2)$ for all non-negative integers $j$.
I asked a friend today a question about proof by induction and he gave me the working out. I understand the majority of it until the very end if someone could indicate me where it's coming from
Base case - five(0) = (0+2)*5=10 => holds
Assume five(k) = ( k+2 )*5 holds up to some point k
prove for k+1
five( k + 1 ) = ((k + 1 ) + 2 )*5
five( k + 1 ) = five( k ) + 5 = ( k + 2 )*5+5
True for all for of k
The point highlighted is where I become lost