document.write( "Question 285791: Consider the integers from 1 to 100 inclusive. What is the difference between the sum of all the even integers and the sum of all the odd integers?\r
\n" );
document.write( "\n" );
document.write( "A. 1 B. 2 C. 0 D. 4 • E. 50 \n" );
document.write( "
Algebra.Com's Answer #207209 by nabla(475)![]() ![]() ![]() You can put this solution on YOUR website! Let's denote our odds as: \n" ); document.write( "SUM(k=0->49)[2k+1] \n" ); document.write( "and our evens as: \n" ); document.write( "SUM(k=0->50)[2k]\r \n" ); document.write( "\n" ); document.write( "So, we want to evaluate: \n" ); document.write( "SUM(k=0->50)[2k]-SUM(k=0->49)[2k+1]\r \n" ); document.write( "\n" ); document.write( "this is equivalent to: \n" ); document.write( "2*SUM(k=0->50)[k]-2SUM(k=0->49)[k]-50 \n" ); document.write( "which is moreover equivalent to: \n" ); document.write( "2*50+2*SUM(k=0->49)[k]-2SUM(k=0->49)[k]-50\r \n" ); document.write( "\n" ); document.write( "Our summation notation cancels, and we are left with 100-50=50. So we shall pick E as the solution.\r \n" ); document.write( "\n" ); document.write( "If these properties of series are unfamiliar, note first that SUM(k=0->49)[1] is 1 added up 50 times (=50). Moreover, When we easily remove first or last members of the series by simply adding the term, hence 2*SUM(k=0->50)[k]=2*50+SUM(k=0->49)[k].\r \n" ); document.write( "\n" ); document.write( "Hope this helps. \n" ); document.write( " |