Maximizing area word problem WITHOUT LP formula

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
1 reply · 2K views
csc2iffy
Messages
74
Reaction score
0
Homework Statement
We have to solve this problem using only what we learned in calculus (no linear programming)
I attached a picture to help :)

A farmer wants to build a rectangular pen. He has a barn wall 40 feet long, some or all of which must be used for all or part of one side of the pen. In other words, with f feet of of fencing material, he can build a pen with a perimeter of up to f+40 feet, and remember he isn't required to use all 40 feet.
What is the maximum possible area for the pen if 100 feet of fencing is available?The attempt at a solution
I attempted to solve by finding the critical points of the derivative:
2x+y=100 --> y=100-2x
x(100-2x)=100x-2x^2
f'(x)=100-4x
100-4x=0 --> x=25
2(25)+y=100 --> y=50
A=1250

BUT I realize this is wrong because if y=50, then the side of the barn needs an extra 10 feet, but all of the fencing material has been used by the other 3 sides. Help please?
 

Attachments

  • Untitled.png
    Untitled.png
    1.5 KB · Views: 571
Last edited:
Physics news on Phys.org
csc2iffy said:
Homework Statement
We have to solve this problem using only what we learned in calculus (no linear programming)
I attached a picture to help :)

A farmer wants to build a rectangular pen. He has a barn wall 40 feet long, some or all of which must be used for all or part of one side of the pen. In other words, with f feet of of fencing material, he can build a pen with a perimeter of up to f+40 feet, and remember he isn't required to use all 40 feet.
What is the maximum possible area for the pen if 100 feet of fencing is available?


The attempt at a solution
I attempted to solve by finding the critical points of the derivative:
2x+y=100 --> y=100-2x
x(100-2x)=100x-2x^2
f'(x)=100-4x
100-4x=0 --> x=25
2(25)+y=100 --> y=50
A=1250

BUT I realize this is wrong because if y=50, then the side of the barn needs an extra 10 feet, but all of the fencing material has been used by the other 3 sides. Help please?

You can write this problem as
maximize x*y
subject to
x + 2*y <= 100,
x <= 40,
x,y >= 0.

It is a nonlinear programming problem, because of the inequality constraints. If you haven't studied such problems yet, you should note that you can reduce it to 2 cases: (1) x + 2y < 100; (2) x + 2y = 100. In case (1) the constraint 2x+y <= 100 is not active, so it is like an unconstrained problem (but with a bound on x). In this case the y-derivative of A = x*y should be zero at an optimum, and doing that gives x = 0. This is obviously not a maximum, since we can do better than area = 0. So, we need to be in case (2): use all the available fencing. Thus, y = 50 - x/2, and putting that into A = x*y we have a function f(x) = x*(50 - x/2) to be maximized over 0 <= x <= 40.

As you have realized, you can't just set f'(x) = 0 because that violates the bound of 40. But *think about it*: why would you want to set the derivative of f to zero? You would want to to that because for x less than the critical point f is increasing, and after the critical point f is decreasing. In this case the critical point lies outside the allowed region, so what does that tell you about the max allowed value? Think about plotting a graph of the function f(x).

RGV