document.write( "Question 791681: A rectangle’s length is 2 centimeters more than its width. The area of the rectangle is 63 square centimeters. Find the dimensions of the rectangle
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #479669 by Cromlix(4381)![]() ![]() You can put this solution on YOUR website! Width = x \n" ); document.write( "Length = 2 + x \n" ); document.write( "Area = Width * Length \n" ); document.write( "63 = x * (2 + x) \n" ); document.write( "63 = 2x + x^2 \n" ); document.write( "x^2 + 2x - 63 = 0 \n" ); document.write( "(x + 9)(x - 7) = 0 \n" ); document.write( "x + 9 = 0 \n" ); document.write( "x = -9 No answer as x < 0 \n" ); document.write( "x - 7 = 0 \n" ); document.write( "x = 7 \n" ); document.write( "Width = 7cm \n" ); document.write( "Length = 9cm. \n" ); document.write( "Hope this helps. \n" ); document.write( ":-) \n" ); document.write( " |