document.write( "Question 25279: Evaluate:\r
\n" );
document.write( "\n" );
document.write( "1*1!+ 2*2!+3*3!+.....+n*n! where n is in N\r
\n" );
document.write( "\n" );
document.write( "I started with if
\n" );
document.write( "n=1 then 1*1=1
\n" );
document.write( "n=2 then 1*1 +2*2*1=5
\n" );
document.write( "n=3 then 1*1 +2*2*1+3*3*2*1=23
\n" );
document.write( "............................
\n" );
document.write( "...........................
\n" );
document.write( "n=n then 1*1 +2*2*1+3*3*2*1+.....+n*n(n-1)(n-2)....3*2*1\r
\n" );
document.write( "\n" );
document.write( "the answer is (n+1)!-1 i can drive to this answer would you please help me. \n" );
document.write( "
Algebra.Com's Answer #13541 by venugopalramana(3286)![]() ![]() You can put this solution on YOUR website! CONSIDER THE FOLLOWING EQUALITY \n" ); document.write( "(N+1)!-N!=(N+1)*N!-N!=N!*(N+1-1)=N*N!...THAT IS \n" ); document.write( "(N+1)!-N!=N*N!....PUT IN THIS EQUALITY N=1,2,3,....ETC...TILL N AND ADD THEM UP \n" ); document.write( "N=1....WE GET 2!-1!=1*1! \n" ); document.write( "N=2...........3!-2!=2*2! \n" ); document.write( "N=3...........4!-3!=3*3! \n" ); document.write( "........................ \n" ); document.write( "......................... \n" ); document.write( "N=N.......(N+1)!-N!=N*N! \n" ); document.write( "-----------------------------ADDING ALLTHE ABOVE,WE GET \n" ); document.write( "..........(N+1)!-1!=1*1!+2*2!+3*3!+...........N*N!............PROVED \n" ); document.write( " |