document.write( "Question 186512: Triangular numbers are numbers which can be represented by dots in a triangular array. each side has the same length as the number it represents
\n" );
document.write( "ex. the # 3 has 6 dots in it's triangle
\n" );
document.write( "I need to know what the pattern or equation is to solve this with any number
\n" );
document.write( "thanks for helping
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #139766 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! Triangular numbers are numbers which can be represented by dots in a triangular array. each side has the same length as the number it represents \n" ); document.write( "ex. the # 3 has 6 dots in it's triangle \n" ); document.write( "I need to know what the pattern or equation is to solve this with any number \n" ); document.write( "----------------------- \n" ); document.write( "1+2+3+4+5+6+....+n\r \n" ); document.write( "\n" ); document.write( "Formula: \n" ); document.write( "S(n) = (n/2)(1+n) \n" ); document.write( "======================= \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( " |