Hi guys just wondering if I can get a little help with a math question,
lets say we know that 4n - 1 = n(2n + 1)
first we need to solve for the base case : this is simple all we do is sub 1 in for n and by doing the math we do indeed get 1 = 1 , so the base case holds true
next we need to do the induction step
so let k = n : k = k(2n + 1)
k+1:
so we know that k = k(2n + 1), therefore k+1 = k(2n + 1) + 4k - 1
so I get this part the sum before k+1 which is k is obviously equal to k(2n + 1)
but lets say we are solving for 1 we just sub 1 in for n, lets say we are solving for k we would just replace n with k so
k = 4(k) - 1 = k(2(k) + 1
so why don't we do the same for k+1 ??
why don't we just do 4(k+1) = k+1( 2(k+1) +1 )?
instead we put k ( 2(k) + 1 ) + 4(k + 1) = k+1( 2(k+1) +1 )
why do we need to k before 4( k + 1)?
wouldn't 4(k + 1) not = k+1( 2(k+1) +1 ) ??
note I did the equation and k ( 2(k) + 1 ) + 4(k + 1) does = k+1( 2(k+1) +1 ) but I'm still wondering why we need the inclusion of k on the left hand of our expression
video I'm following -
https://www.youtube.com/watch?v=tHNVX3e9zd0 - first example in the video
hope that makes sense,
thanks