document.write( "Question 1032315: candy produce t-shirts. the cost to produce n t-shirts is given by the expression 12n-2n^2,and the revenue from selling the same number of t-shirts is n^3 +2n^2.
\n" );
document.write( "write an expression, in factored form, that calculates the profit from selling n t-shirts. \n" );
document.write( "
Algebra.Com's Answer #646952 by JoelSchwartz(130)![]() ![]() ![]() You can put this solution on YOUR website! r=revenue of the t shirts \n" ); document.write( "c=cost of the t shirts \n" ); document.write( "p=profit of the t shirts \n" ); document.write( "r=n^3+2n^2 \n" ); document.write( "c=12n-2n^2 \n" ); document.write( "p=r-c \n" ); document.write( "n^3+2n^2-12n+2n^2=p \n" ); document.write( "n^3+4n^2-12n=p \n" ); document.write( "n^2+4n-12=p/n \n" ); document.write( "(n+6)(n-2)=p/n \n" ); document.write( "n(n+6)(n-2)=p \n" ); document.write( " |