document.write( "Question 41227: The length of an airport is 1 mile more than twice its width. The area is 21 square miles. Identify the length and width of the airport.
\n" );
document.write( "Thank you \n" );
document.write( "
Algebra.Com's Answer #26586 by fractalier(6550) You can put this solution on YOUR website! Let w be the width. Then the length is 2w + 1. \n" ); document.write( "Area = length x width so we have \n" ); document.write( "A = LW \n" ); document.write( "21 = (2w + 1)w \n" ); document.write( "21 = 2w^2 + w \n" ); document.write( "2w^2 + w - 21 = 0 \n" ); document.write( "(2w + 7)(w - 3) = 0 \n" ); document.write( "w = -7/2 or w = 3 \n" ); document.write( "but since the width can't be negative, \n" ); document.write( "w = 3 miles \n" ); document.write( "and the length is 7 miles \n" ); document.write( " |