document.write( "Question 142142: Find the sum of the first nine terms of the arithmetic series.
\n" );
document.write( "2 - 5 - 12 - 19 - ... \n" );
document.write( "
Algebra.Com's Answer #103495 by nabla(475)![]() ![]() ![]() You can put this solution on YOUR website! The sum of the first n terms of an arithmetic progression is \n" ); document.write( "\n" ); document.write( "n=9 <--- # of terms \n" ); document.write( "a=2 <--starting term \n" ); document.write( "r=-7 <--- common difference between terms\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "s= \n" ); document.write( "= \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "We can check by iterating every term: \n" ); document.write( "2-5-12-19-26-33-40-47-54=-234 \n" ); document.write( " |