document.write( "Question 632612: The length of a rectangle is 3cm more than the width. The area is 70cm^2. Find the dimensions of the rectangle.
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #398364 by art123(8)![]() ![]() ![]() You can put this solution on YOUR website! let width=x \n" ); document.write( "then length=3+x \n" ); document.write( "area=length*width \n" ); document.write( "therefore area=x*(x+3) \n" ); document.write( "given area=70cm^2 \n" ); document.write( "70=x^2+3x \n" ); document.write( "x^2+3x-70=0 \n" ); document.write( "x^2+10x-7x-70=0 \n" ); document.write( "x(x+10)-7(x+10)=0 \n" ); document.write( "(x+10)(x-7)=0 \n" ); document.write( "(x-7)=0 \n" ); document.write( "therefore x=7 \n" ); document.write( "ignore x=-10 as it is negative value \n" ); document.write( "therefore width=7cm \n" ); document.write( " length=7+3=10cm \n" ); document.write( " |