Find the maximum area of one sector

56 Views Asked by At

A farmer is building four connected pens for his livestock. He has $160$ feet of fencing. What is the maximum area of one sector?

So here's a (crude) drawing I made; the red lines represent congruent lines.

enter image description here

My attempted solution:

$8$ fences of length $y$ and $5$ fences of length $x$ add up to $160$ feet of fence, so I get the equation $8y+5x=160$, which is equivalent to $x=-\dfrac {8}5y+32$

The area of one sector is the product of $x$ and $y$, so I get the equation $xy=A$

substituting, I get $-\dfrac {8}5y^2+32y=A$

Using the formula $x=-\dfrac{b}{2a}$, I get $x=20$.

Substituting this into the first equation, I get $y=7.5$, and substituting both values into the second equation, I get $A=150$.

The correct answer is $160$. What did I do wrong?

2

There are 2 best solutions below

1
On BEST ANSWER

Your $-\dfrac b{2a}$ is incorrect; you have tried to find $x$ with the formula but you have a quadratic in $y$ so you will find $y$.

$y=\dfrac{-b}{2a}=\dfrac{-32}{-\frac{16}{5}}=10$ so $x=16$ and the answer is $A=160$.

2
On

The thing is we have to maximise the area, $xy $ with the total perimeter $8y+5x=160$ as constant. So, substituting, we have to maximise the expression $$f (y)=-\frac {8}{5}y^2+32y $$ Now letting $f'(y)=0$ and solving for $y $ gives us $y=10$ and thus $x=16$.

The area is thus $xy=160$ square units . Hope it helps.