document.write( "Question 1167353: In this problem, you are stacking bricks. Every row contains one more brick than the row above it. The instructions say to determine a quadratic function to model the total number of bricks in the stack,f(x), given a number of rows, x. However, I'm unable to create a function that makes sense for this problem. I'm aware that the pattern is that every time a row is created it has 1 more brick than the previous (the one of above it) row. I need help creating the quadratic function. \n" ); document.write( "
Algebra.Com's Answer #791955 by htmentor(1343)\"\" \"About 
You can put this solution on YOUR website!
The only way this problem makes sense is if the top row contains 1 brick.
\n" ); document.write( "Otherwise, there is no way to know how many bricks we are starting with
\n" ); document.write( "on the top row.
\n" ); document.write( "The number of bricks in the x-th row, can be represented by an arithmetic sequence: a_x = a_1 + (x-1)*d,
\n" ); document.write( "where d = the common difference = 1,
\n" ); document.write( "and a_1 = the first term = 1
\n" ); document.write( "The sum of the first x terms of an arithmetic sequence is:
\n" ); document.write( "S_x = (x/2)(a_1 + a_x) = (x/2)(1 + a_x)
\n" ); document.write( "But a_x = 1 + (x - 1) = x
\n" ); document.write( "Thus S_x = f(x) = (x/2)(1 + x) = x^2/2 + x/2
\n" ); document.write( "
\n" ); document.write( "
\n" );