document.write( "Question 130456This question is from textbook
\n" );
document.write( ": The legnth of a rectangle is 15 cm more than its width. A blue rectangle which is 5 cm wider and 2 cm shorter than the red one, has a perimeter 72 cm. Find the dimensions of each rectangle. \n" );
document.write( "
Algebra.Com's Answer #95362 by kimboo(4)![]() ![]() ![]() You can put this solution on YOUR website! let w = width of red rectangle \n" ); document.write( "let w + 15 = length of red rectangle \n" ); document.write( "let w - 2 = width of blue rectangle \n" ); document.write( "let (w + 15) + 5 = length of blue rectangle \n" ); document.write( "perimeter of the blue rectangle is 72 cm \n" ); document.write( "P = 2*l = 2*w \n" ); document.write( "72 = 2(w + 15 + 5) + 2(w - 2) (substitute perimeter and expressions for length and width of blue rectangle) \n" ); document.write( "72 = 2w + 30 + 10 + 2w - 4 (use distributive property to solve equation) \n" ); document.write( "72 = 4w + 36 (combine like terms) \n" ); document.write( "72 - 36 = 4w + 36 - 36 (subtract 36 from each side of equation) \n" ); document.write( "36 = 4w \n" ); document.write( "36/4 = 4w/4 (divide each side of equation by 4) \n" ); document.write( "9 = w (width of red rectangle is 9 cm) \n" ); document.write( "w + 15 = 9 + 15 = 24 (length of red rectangle is 24 cm) \n" ); document.write( "w - 2 = 9 - 2 = 7 (width of blue rectangle is 7 cm) \n" ); document.write( "(w + 15) + 5 = 9 + 15 + 5 = 29 (length of blue rectangle is 29 cm) \n" ); document.write( " \n" ); document.write( " |