document.write( "Question 39808: The length of a rectangle is 8 inches greater than its width. Find the width of the rectangle if its area is 105 square inches.
\n" );
document.write( " Thank you \n" );
document.write( "
Algebra.Com's Answer #25246 by fractalier(6550)![]() ![]() You can put this solution on YOUR website! Let the width be w. The length is then w+8. We multiply them to get area. \n" ); document.write( "A = LW \n" ); document.write( "A = (w+8)w \n" ); document.write( "105 = w(w+8) \n" ); document.write( "w^2 + 8w - 105 = 0 \n" ); document.write( "(w + 15)(w - 7) = 0 \n" ); document.write( "w = -15 (impossible) or \n" ); document.write( "w = 7 inches \n" ); document.write( " |