document.write( "Question 196948: A farmer wants to make a retangular corral along the side of a large barn and has enough materials for 60m of fencing. Only three sides must be fenced, since the barn wall will form the fourth side. What width of rectangle should the farmer use so that the maximum area is enclosed? Use \"let statements\" \n" ); document.write( "
Algebra.Com's Answer #147653 by ankor@dixie-net.com(22740)\"\" \"About 
You can put this solution on YOUR website!
A farmer wants to make a rectangular corral along the side of a large barn
\n" ); document.write( " and has enough materials for 60m of fencing. Only three sides must be fenced,
\n" ); document.write( " since the barn wall will form the fourth side.
\n" ); document.write( "What width of rectangle should the farmer use so that the maximum area is enclosed?
\n" ); document.write( "Use \"let statements\"
\n" ); document.write( ":
\n" ); document.write( "Let x = width of the rectangle
\n" ); document.write( "let L = length of the rectangle
\n" ); document.write( ":
\n" ); document.write( "Because there are only 3 sides required, the perimeter will be:
\n" ); document.write( "L + 2x = 60
\n" ); document.write( "therefore;
\n" ); document.write( "L = (60-2x)
\n" ); document.write( ":
\n" ); document.write( "Area = x * L
\n" ); document.write( "replace L with (60-2x)
\n" ); document.write( "A = x(60-2x)
\n" ); document.write( "A = 60x - 2x^2
\n" ); document.write( "A quadratic equation:
\n" ); document.write( "y = -2x^2 + 60x
\n" ); document.write( ":
\n" ); document.write( "Find the max area width by finding the axis of symmetry; x = -b/(2a)
\n" ); document.write( "In this equation a=-2; b=60
\n" ); document.write( "x = \"%28-60%29%2F%282%2A-2%29\"
\n" ); document.write( "x = \"%28-60%29%2F%28-4%29\"
\n" ); document.write( "x = +15 meters is the width for max area
\n" ); document.write( ":
\n" ); document.write( ";
\n" ); document.write( "You can use x=15 in the area equation to find the max area, if you want to.
\n" ); document.write( "
\n" ); document.write( "
\n" );