David has offered the correct answer geometrically, and I'd say he deserves the checkmark :-) But I did want to address this from a computational point of view.
The computational complexity of computing either the minimum volume circumscribed ellipsoid (MinVCE) or the maximum volume inscribed ellipsoid (MaxVIE) depends greatly on the way the underlying convex volume is described. And generally, only one of the exact ellipsoids yields a tractable solution. I can't think of a non-trivial case where computing both ellipsoids is tractable.
For instance, the minimum volume circumscribing ellipsoid is tractable for the following cases:
- A finite set of points $x_1,x_2,\dots, x_m$;
- A convex polyhedron described by its vertices (this is really the same as the previous case);
- The union of a finite number of ellipsoids.
Conversely, the maximum volume inscribing ellipsoid is tractable for the following cases:
- A convex polyhedron described by its faces (e.g., a set of linear inequalities);
- The intersection of a finite number of ellipsoids.
Source: Boyd & Vandenberghe, Convex Optimization, chatper 8.