document.write( "Question 1012259: So.. for my holiday homework i was told to find a formula to sum up the tetrahedral numbers.. which are 1, 4, 10, 20, 35, 56...\r
\n" );
document.write( "\n" );
document.write( "And im really stuck on where to start, could you please help me step by step to sum up consecutive tetrahedral numbers? (Would appreciate if its in a easy mathematical language)\r
\n" );
document.write( "\n" );
document.write( "Is there any tricks to find formulas or equstions from a sequence?\r
\n" );
document.write( "\n" );
document.write( "Thank you :\"c \n" );
document.write( "
Algebra.Com's Answer #628139 by rothauserc(4718)![]() ![]() You can put this solution on YOUR website! The tetrahedral numbers are found in Pascal's triangle, namely \n" ); document.write( "Tn = combination of (n+2) taken 3 at a time = (n+2)! / (3! * (n+2-3)!) = \n" ); document.write( "(n+2)! / (3! * (n-1)!) where Tn is the nth tetrahedral number \n" ); document.write( "***************************************************************************** \n" ); document.write( "another way to solve this is to note that the sum of the first n triangular numbers is the nth tetrahedral number,that is \n" ); document.write( "Tn = (n(n+1)(n+2)) / 6 \n" ); document.write( "a triangular number can be thought of as the number of dots needed to form an equilateral triangle, namely \n" ); document.write( "1, 3, 6, 10, 15, 21, and so forth \n" ); document.write( "***************************************************************************** \n" ); document.write( "the nth sum(Sn) of n consecutive tetrahedral numbers is \n" ); document.write( "Sn = (n(n+2)(n+3)) / 24 \n" ); document.write( "We can derive this formula by starting with \n" ); document.write( "Tn = (n(n+1)(n+2)) / 6, then expand the numerator \n" ); document.write( "Tn = (n^3 + 3n^2 + 2n) / 6 \n" ); document.write( "Next we use the formulas for the sum of first n consecutive integers, first n squared integers and first n cubed integers, namely \n" ); document.write( "Sn = (n(n+1)) / 2 \n" ); document.write( "Sn^2 = (n(n+1)(2n+1)) / 6 \n" ); document.write( "Sn^3 = (n^2(n+1)^2 / 4 \n" ); document.write( "Substitute these equations into our Tn formula and simplify \n" ); document.write( "*************************************************************************** \n" ); document.write( " \n" ); document.write( " |