document.write( "Question 79546: i need to find the sum of the first nth terms of the arithmetric series.
\n" );
document.write( " 3+8+13+18+23
\n" );
document.write( " n=20 \r
\n" );
document.write( "\n" );
document.write( "Sn=366 \n" );
document.write( "
Algebra.Com's Answer #57086 by stanbon(75887) ![]() You can put this solution on YOUR website! i need to find the sum of the first nth terms of the arithmetric series. \n" ); document.write( "3+8+13+18+23 \n" ); document.write( "n=20 \n" ); document.write( "Sn=366 \n" ); document.write( "--------- \n" ); document.write( "It is a arithmetic sequence with a(1)=3 and d=5 \n" ); document.write( "The 20th terms is a(20)=3+19*5=98 \n" ); document.write( "The sum of the 1st 20 terms is (20/2)(3+98)=1010 \n" ); document.write( "-------- \n" ); document.write( "FYI: Noice the the sum of the 20 terms is the average of \n" ); document.write( "the 1st an last terms times 20 as you can see here: \n" ); document.write( "20[(3+98)/2] \n" ); document.write( "========= \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( " |