document.write( "Question 495959: Hello. I would appreciate an explanation to the following question:\r
\n" ); document.write( "\n" ); document.write( "A playground is being designed where children can interact with their friends in certain combinations.\r
\n" ); document.write( "\n" ); document.write( "If there is 1 child, there can be 0 interactions.
\n" ); document.write( "If there are 2 children, there can be only 1 interaction.
\n" ); document.write( "If there are 3 children , there can be 5 interactions.
\n" ); document.write( "If there are 4 children, there can be 14 interactions. \r
\n" ); document.write( "\n" ); document.write( "Which recursive pattern represents the pattern?
\n" ); document.write( "asubn=asubn-1+2^(n-1)
\n" ); document.write( "asubn=asubn+(n-1)^2
\n" ); document.write( "asubn=asubn+2(n-1)
\n" ); document.write( "asubn=asubn+(2n-1)\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "So far I have figured out by setting up this basic pattern chart that:
\n" ); document.write( "
\n" ); document.write( "n a
\n" ); document.write( "1 0 +1
\n" ); document.write( "2 1 +4
\n" ); document.write( "3 5 +9
\n" ); document.write( "4 14
\n" ); document.write( "Is the equation always the same? or does it change with the given information. I got this wrong and would appreciate understanding why? I understand how to make derive the sequence information. What if I need the 50th term? I can easily get the ninth term as in the previous question on this assignment. But having trouble understanding how to write the formula. \r
\n" ); document.write( "\n" ); document.write( "I appreciate you help. This is a wonderful resource for students who take math seriously because the tutors answer the questions so thoroughly. Again, thank you in advance. \r
\n" ); document.write( "\n" ); document.write( "Justina
\n" ); document.write( "

Algebra.Com's Answer #336294 by Theo(13342)\"\" \"About 
You can put this solution on YOUR website!
the formula that works with the data is as follows:\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "a[n] = a[n-1] + (n-1)^2\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "here's a table of values based on that formula.
\n" ); document.write( "the table starts with a[1] being given as 0.\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "
\r\n" );
document.write( "        n        (n-1)^2         a[n]\r\n" );
document.write( "\r\n" );
document.write( "        1        n/a            given as 0\r\n" );
document.write( "        2        1^2 = 1        1 + 0 = 1\r\n" );
document.write( "        3        2^2 = 4        4 + 1 = 5\r\n" );
document.write( "        4        3^2 = 9        9 + 5 = 14\r\n" );
document.write( "        5        4^2 = 16       16 + 14 = 30\r\n" );
document.write( "        6        5^2 = 25       25 + 30 = 55\r\n" );
document.write( "        ...\r\n" );
document.write( "
\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "you are given that the a[1] = 0
\n" ); document.write( "the rest of them are derived from the formula.
\n" ); document.write( "the same formula is used every time.
\n" ); document.write( "let me know if this solves the problem for you.\r
\n" ); document.write( "\n" ); document.write( "
\n" ); document.write( "
\n" );