document.write( "Question 1203134: A rectangle is drawn so that the width is 2 feet shorter than the length. The area of the rectangle is 3 square feet. Find the length of the rectangle.
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #838445 by Theo(13342)![]() ![]() You can put this solution on YOUR website! area = length * width = 3 \n" ); document.write( "length = x and width = x - 2 \n" ); document.write( "area = x * (x - 2) = x^2 - 2x = 3 \n" ); document.write( "subtract 3 from both sides of that equation to get x^2 - 2x - 3 = 0. \n" ); document.write( "factor to get (x - 3) * (x + 1) = 0 \n" ); document.write( "solve for x to get x = 3 or x = -1 \n" ); document.write( "x has to be positive, so x = 3 \n" ); document.write( "length = 3 \n" ); document.write( "width = 1 \n" ); document.write( "length = 3 is your solution. \n" ); document.write( " \n" ); document.write( " |