-1

given a circle of radius R and an ellipse. If all four vertices of the ellipse are contained within the circle, then is the entire ellipse contained within the circle.

Note: points of the ellipse can be on the circle (namely the vertices)

1 Answers1

1

Having all four vertices in the circle does not mean that the whole ellipse will be in the circle. One specific counterexample would be $$\frac{3}{2}x^{2}+4\left(y-\frac{1}{2}\right)^{2}=1$$ whose vertices lie inside the unit circle but parts of the ellipse lie outside, as seen in this desmos graph.

Edit: Even a circle can work: $$4\left(x-\frac{2}{5}\right)^2+4\left(y-\frac{2}{5}\right)^{2}=1$$

Tbw
  • 995