document.write( "Question 39810: The length of a rectange is 6 inches less than twice its width. Find the dimension of the rectangle if its ares is 108 square inches.
\n" );
document.write( " Thank you \n" );
document.write( "
Algebra.Com's Answer #25248 by fractalier(6550)![]() ![]() You can put this solution on YOUR website! Let the width be w. The length is then 2w - 6. Multiply them to get the area. \n" ); document.write( "A = LW \n" ); document.write( "A = (2w - 6)w \n" ); document.write( "108 = w(2w - 6) \n" ); document.write( "2w^2 - 6w - 108 = 0 \n" ); document.write( "w^2 - 3w - 54 = 0 \n" ); document.write( "(w - 9)(w + 6) = 0 \n" ); document.write( "w = 9 or w = -6 (impossible) so \n" ); document.write( "w = 9 and \n" ); document.write( "length = 2(9) - 6 = 12 \n" ); document.write( " |