document.write( "Question 1080223: I need help with this mathematical induction to show that the given statement is true for all natural numbers,\r
\n" );
document.write( "\n" );
document.write( "3 + 5 + 7 +...+ (2n+1) = n(n+2)\r
\n" );
document.write( "\n" );
document.write( "So far I have the following:\r
\n" );
document.write( "\n" );
document.write( "Prove Basis n=1
\n" );
document.write( "n(n+2)
\n" );
document.write( "= 1(1+2)
\n" );
document.write( "= 3\r
\n" );
document.write( "\n" );
document.write( "Therefore the statement is true for n=1.\r
\n" );
document.write( "\n" );
document.write( "When n=k assume
\n" );
document.write( "3 + 5 + 7 +...+ (2n+1) = n(n+2)\r
\n" );
document.write( "\n" );
document.write( "replace n with k
\n" );
document.write( "3 + 5 + 7 +...+ (2k+1) = k(k+2)\r
\n" );
document.write( "\n" );
document.write( "Then n = k+1 must be proven, meaning replace k terms with (k+1)\r
\n" );
document.write( "\n" );
document.write( "---------------------------------------------------------------------------------
\n" );
document.write( "This is where I get lost, I don't know where/how I should replace with (k+1) despite how simple it sounds\r
\n" );
document.write( "\n" );
document.write( "I get
\n" );
document.write( "3 + 5 + 7 +...+ (2(k+1)+1) = (k+1)((k+1)+2)\r
\n" );
document.write( "\n" );
document.write( "But some sites show a funky set up where the right/first part of the equation gets another (k+1) replacement but don't explain how. I'm sure the left hand side (k+1)((k+1)+2) is correct. I know that after that step you must replace the 3 + 5 + 7 ... etc. but I can't get that far since I'm stuck on the (k+1) replacement! Any help/advice is appreciated and I don't need it solved just some guidance! Thank you! \n" );
document.write( "
Algebra.Com's Answer #694420 by jim_thompson5910(35256)![]() ![]() ![]() You can put this solution on YOUR website! You have the right idea. You need to connect the (n+k)th case to the kth case somehow. Here's one way to do just that. I'll start where you left off.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Before I start, I'll refer back to this identity \n" ); document.write( "3 + 5 + 7 +...+ (2k+1) = k(k+2) \n" ); document.write( "which will be used later. \r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Onto the problem. Let's simplify things a bit \n" ); document.write( "3 + 5 + 7 +...+ (2(k+1)+1) = (k+1)((k+1)+2) \n" ); document.write( "3 + 5 + 7 +...+ (2k+3) = (k+1)(k+3) \n" ); document.write( "3 + 5 + 7 +...+ (2k+3) = k^2+4k+3 \n" ); document.write( "3 + 5 + 7 +...+ (2k+1) + (2k+3) = k^2+4k+3\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Notice how the portion \"3 + 5 + 7 +...+ (2k+1)\" is buried in the left side of the last equation above. This works because the (k+1)th case is really just the result of taking the kth case and adding on the next term. \r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "We can replace all of that with the right side of the identity mentioned earlier.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Take note of the color coding to see how the replacement is happening \n" ); document.write( "3 + 5 + 7 +...+ (2k+1) + (2k+3) = k^2+4k+3 \n" ); document.write( "3 + 5 + 7 +...+ (2k+1) + (2k+3) = k^2+4k+3 \n" ); document.write( "k(k+2) + (2k+3) = k^2+4k+3\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "At this point, we just simplify the left side \n" ); document.write( "k(k+2) + (2k+3) = k^2+4k+3 \n" ); document.write( "k^2+2k + 2k+3 = k^2+4k+3 \n" ); document.write( "k^2+4k+3 = k^2+4k+3 \n" ); document.write( "and we have another identity because the two sides are the same. \n" ); document.write( "We can be more rigorous and subtract x^2 from both sides, subtract 4x from both sides, and subtract 3 from both sides. Doing so will have us end up with 0 = 0 a much clearer identity we know to be always true; however this is more work than needed really.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "So this means that if n = k holds true, then n=k+1 also holds true. This domino effect leads to proving the inductive step and proves the original claim to be true for all positive integers, or natural numbers. \n" ); document.write( " |