document.write( "Question 443549: What is the last number in this sum?
\n" );
document.write( "1 + 3 + 5 + ... + ? = 10,000 \n" );
document.write( "
Algebra.Com's Answer #305940 by edjones(8007)![]() ![]() You can put this solution on YOUR website! Let n=number of terms in the sum. \n" ); document.write( "The first term (a[1]) is 1. \n" ); document.write( "The last term (a[n]) must be 2n-1. \n" ); document.write( "n/2(a[1]+a[n])=S Formula for the sum of an finite arithmetic sequence. \n" ); document.write( "n/2(1+(2n-1))=10000 \n" ); document.write( "n(1+2n-1)=20000 \n" ); document.write( "n+2n^2-n=20000 \n" ); document.write( "2n^2=20000 \n" ); document.write( "n^2=10000 \n" ); document.write( "n=100 \n" ); document.write( "a[100]=2*100-1=199 \n" ); document.write( ". \n" ); document.write( "Ed \n" ); document.write( " |