document.write( "Question 287961: I'm struggling with this one.
\n" );
document.write( "Let f(n)=1^2+2^2+3^2+...+n^2.
\n" );
document.write( "Thus,
\n" );
document.write( "f(1)=1^2
\n" );
document.write( "f(2)=1^2+2^2
\n" );
document.write( "f(3)=1^2+2^2+3^2
\n" );
document.write( "f(4)=1^2+2^2+3^2+4^2
\n" );
document.write( "etc.
\n" );
document.write( "It turns out that f is a polynomial of degree 3 in n. Figure out the coefficients of f:
\n" );
document.write( "f(n)=__n^3+__n^2+__n+__. \n" );
document.write( "
Algebra.Com's Answer #208732 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! I'm struggling with this one. \n" ); document.write( "Let f(n)=1^2+2^2+3^2+...+n^2. \n" ); document.write( "Thus, \n" ); document.write( "f(1)=1^2 \n" ); document.write( "f(2)=1^2+2^2 \n" ); document.write( "f(3)=1^2+2^2+3^2 \n" ); document.write( "f(4)=1^2+2^2+3^2+4^2 \n" ); document.write( "etc. \n" ); document.write( "It turns out that f is a polynomial of degree 3 in n. Figure out the coefficients of f: \n" ); document.write( "f(n)=__n^3+__n^2+__n+__. \n" ); document.write( "------------------------------ \n" ); document.write( "Number pairs: \n" ); document.write( "1::::1 \n" ); document.write( "2::::1+4 = 5 \n" ); document.write( "3::::1+4+9 = 14 \n" ); document.write( "4::::14+16 = 30 \n" ); document.write( "5::::30+25 = 55 \n" ); document.write( "6::::55+36 = 91 \n" ); document.write( "etc. \n" ); document.write( "---- \n" ); document.write( "I ran a Cubic Regression program against \n" ); document.write( "these pairs and got the following: \n" ); document.write( "f(n) = (1/3)n^3 + (1/2)n^2 + (833/5000)n^2 \n" ); document.write( "============================================== \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( "============================================== \n" ); document.write( " |