I have an ellipsoid centered at the origin. Assume $a,b,c$ are expressed in millimeters. Say I want to cover it with a uniform coat/layer that is $d$ millimeters thick (uniformly).
I just realized that in the general case, the new body/solid is not an ellipsoid. I wonder:
How can I calculate the volume of the new body?
What is the equation of its surface?
I guess it's something that can be calculated via integrals but how exactly, I don't know.
Also, I am thinking that this operation can be applied to any other well-known solid (adding a uniform coat/layer around it). Is there a general approach for finding the volume of the new body (the one that is formed after adding the layer)?
Let $\mathcal{E} = \{ (x,y,z) \mid \frac{x^2}{a^2} + \frac{y^2}{b^2} + \frac{z^2}{c^2} \le 1 \}$ be the ellipsoid at hand.
The new body $\mathcal{E}_d$ is the Minkowski sum of $\mathcal{E}$ and $\bar{B}(d)$, the closed ball of radius $d$. ie.,
$$\mathcal{E}_d = \{ p + q : p \in \mathcal{E}, q \in \bar{B}(d) \}$$
Since $\mathcal{E}$ is a convex body, the volume of $\mathcal{E}_d$ has a very simple dependence on $d$. It has the form:
$$\verb/Vol/(\mathcal{E}_d) = V + A d + 2\pi \ell d^2 + \frac{4\pi}{3}d^3\tag{*1}$$
where $V$, $A$ and $\ell$ is the volume, surface area and something known as mean width for $\mathcal{E}$.
The problem is for an ellipsoid, the expression for $A$ and $\ell$ are very complicated integrals.
If I didn't make any mistake, they are: $$\begin{align} A &= abc\int_0^{2\pi} \int_0^{\pi} \sqrt{(a^{-2}\cos^2\phi + b^{-2}\sin^2\phi)\sin^2\theta + c^{-2}\cos^2\theta} \sin\theta d\theta d\phi\\ \ell &= \frac{1}{2\pi} \int_0^{2\pi}\int_0^{\pi}\sqrt{(a^2\cos^2\phi + b^2\sin^2\phi)\sin^2\theta + c^2\cos^2\theta} \sin\theta d\theta d\phi \end{align}\tag{*2}$$
Good luck for actually computing the integral.
Update
When $a = b$, the integral simplify to something elementary.
For the special case $a = b \ge 1, c = 1$, by a change of variable $t = \cos\theta$, we have:
$$\begin{align} A &= 4\pi a\int_0^1\sqrt{(1 + (a^2 - 1)t^2}dt\\ &= \frac{2\pi a}{a^2-1}\left(\sqrt{a^2-1}\sinh^{-1}(\sqrt{a^2-1}) + a(a^2-1)\right) \\ \ell &= 2\int_0^1 \sqrt{a^2 + (1-a^2)t^2}dt = \frac{a^2}{\sqrt{a^2-1}}\sin^{-1}\left(\frac{\sqrt{a^2-1}}{a}\right) + 1 \end{align} $$ For a test case, when $a = b = 2, c = d = 1$, we find
$$\begin{align} \verb/Vol/(\mathcal{E}_1) - V &= A + 2\pi \ell + \frac{4\pi}{3} = \frac{\pi}{3\sqrt{3}}\left( 12 \sinh^{-1}(\sqrt{3}) +8 \pi +34\sqrt{3}\right)\\ &\approx 60.35475634605034 \end{align} $$ Matching the number on Euler project 449 that motivates this question.
IMHO, I don't think Euler project expect one to know
There should be a more elementary way to derive the same result for the special case $a = b$.
That part will probably stamp on the foot of Euler project. I better stop here.