Optimization Math Example 2

Follow the full solution, then compare it with the other examples linked below.

Example 2

hard
A farmer has 200 m of fencing to enclose a rectangular field. What dimensions maximize the enclosed area?

Solution

  1. 1
    Let the length be ll and width be ww. Constraint: 2l+2w=2002l + 2w = 200, so l+w=100l + w = 100, giving w=100โˆ’lw = 100 - l.
  2. 2
    Area to maximize: A(l)=lโ‹…w=l(100โˆ’l)=100lโˆ’l2A(l) = l \cdot w = l(100 - l) = 100l - l^2.
  3. 3
    Differentiate: Aโ€ฒ(l)=100โˆ’2lA'(l) = 100 - 2l. Set equal to zero: 100โˆ’2l=0โ‡’l=50100 - 2l = 0 \Rightarrow l = 50.
  4. 4
    Check: Aโ€ฒโ€ฒ(l)=โˆ’2<0A''(l) = -2 < 0, confirming a maximum.
  5. 5
    Width: w=100โˆ’50=50w = 100 - 50 = 50 m. Area: 50ร—50=250050 \times 50 = 2500 mยฒ.

Answer

Dimensions: 50โ€‰mร—50โ€‰m50 \,\text{m} \times 50 \,\text{m}; maximum area =2500โ€‰m2= 2500 \,\text{m}^2
For a fixed perimeter, the square maximizes area among all rectangles. Set up the area as a single-variable function using the constraint, differentiate, set to zero, and confirm with the second derivative test.

About Optimization

The process of using derivatives to systematically find maximum or minimum values of a function over a domain.

Learn more about Optimization โ†’

More Optimization Examples