So say I have an ellipse defined like this:
$$\frac{x^2}{9} + \frac{y^2}{4} = 1$$
I have to find the largest possible area of an inscribed rectangle.
So the area ($A$) of a rectangle is $2x2y=4xy$. Also we can redefine $y$ in terms of $x$:
$$\frac{y^2}{4} = 1 - \frac{x^2}{9}$$ $$y^2 = 4 - \frac{4x^2}{9}$$ $$y = \sqrt{4 - \frac{4x^2}{9}}$$
So the area function is now:
$$A=4x \cdot \sqrt{4 - \frac{4x^2}{9}}$$ $$A' = \frac{4x}{2 \cdot \frac{-8x}{9}} + \sqrt{4 - \frac{4x^2}{9}} \cdot 4$$
Is this the right track? Was there something simpler I could have done? this looks gnarly? Can someone help me finish this up?
So this track seems to difficult, another approach. Can I square the area first, find the derivative of that to solve for x?
So the Area = $4x \cdot \sqrt{4 - \frac{4x^2}{9}}$
Is this valid?
$$Area^2 = 16x^2 \cdot (4 - \frac{4x^2}{9}$$
$$= 64x^2 - \frac{64x^4}{9}$$
Derivative:
$$ \frac{d}{dx} Area^2 = 128x - \frac{256x^3}{9}$$ $$128x(1-\frac{2x^2}{9}$$
So critical values: $x = 0, \frac{3}{\sqrt{2}}$
because the derivative equals 0 when:
$$2x^2 = 9$$ $$x = \frac{3}{\sqrt{2}}$$
Plugging this value of x into y we get that $y = \sqrt{2}$ so the Area is 3.
Is this valid? If so why? Does squaring not cause any problems?