Find minimum area of an ellipse that can pack three unit circles such that all three touch the ellipse internally:
I took a point H as shown in the diagram and used the fact that the radius of the circle is 1, and that the circle touches the ellipse at point H. I am getting four equations for five unknowns, which means I can derive a relation between a and b of ellipse and use calculus to minimize the area. But those equations are tedious to solve and even after hours, I am not able to solve them.
Is there any easier way to solve this?
Here are the equations which I've got:

If we choose coordinates as in your sketch: $$ A=(-2\sin\theta,0);\quad B=(0,-2\cos\theta);\quad C=(2\sin\theta,0); $$ then the tangent ellipse must be centered at $(0,0)$ and have $b=1+2\cos\theta$ as the $y$ semi-axis. Hence its equation is: $$ {x^2\over a^2}+{y^2\over(1+2\cos\theta)^2}=1, $$ where the unknown semi-axis $a$ must be determined so that the ellipse touches circle $C$. To find $a$ we can couple the equation of the ellipse to that of circle $C$: $$ (x-2\sin\theta)^2+y^2=1 $$ and plug then $y^2=1-(x-2\sin\theta)^2$ into the ellipse equation. The resulting quadratic equation in $x$ must have vanishing discriminant, which leads to: $$ a={1+2\cos\theta\over\sqrt{\cos\theta}}. $$ Knowing both semi-axes $a$ and $b$ as a function of $\theta$ you can then find by yourself the minimum value of the area, which occurs for $\cos\theta=1/6$.
EDIT.
The above method to find $a$ works as long as tangency points have $y\ne0$, that is for $\theta>\theta_0$, with $\theta_0\approx69.65°$. For smaller values of $\theta$ you get simply $a=1+2\sin\theta$, but you can check that those ellipses have larger area.