[Math] Center of Mass via integration for ellipsoid

calculusdefinite integralsintegrationmultivariable-calculus

I need some help with the following calculation:

I have to calculate the coordinates of the center of mass for the ellipsoid

$$\left( \frac{x}{a} \right)^2 + \left( \frac{y}{b} \right)^2 + \left( \frac{z}{c} \right)^2 \le 1, \quad z \ge 0$$

with mass-density $\mu(x,y,z)=z^2$.

I wanted to use:

$$
\begin{align}
x & = a r \sin\theta \cos\varphi \\
y & = b r \sin\theta \cos\varphi \\
z & = c r \cos\theta
\end{align}
$$

whereas

$$
\begin{gather}
0 \le r \le 1, \\
0 \le \theta \le \pi, \\
0 \le \varphi \le 2\pi
\end{gather}
$$

and

$$\frac{\partial (x,y,z)}{ \partial (r, \theta, \varphi)} = r^2 \sin\theta.$$

Did I choose the right things so far?

1) $$
\begin{align}
M & = \int\limits_E ยต(x,y,z) d(x,y,z) \\
& = \int_0^1 \hspace{-5pt} \int_0^{\pi} \hspace{-5pt} \int_0^{2\pi} c^2 r^2 \cos^2\theta \cdot r^2 \sin(\theta) d(r, \theta, \varphi) \\
& = c^2 \int_0^1 r^4 dr \int_0^\pi \sin\theta \cdot \cos^2\theta d\theta \int_0^{2\pi} d\varphi \\
& = \frac{4\pi c^2}{15}.
\end{align}
$$

2) $$x_s \cdot M = \ldots $$

Here I get $\int_0^{2pi} \cos\varphi \, d \varphi = 0$, so the whole product is zero, so x_s is zero too??

What am I doing wrong?

Best Answer

This can be just a typo, but you have a wrong parametrization of the sphere, it should be

$$ \begin{align} x & = a r \sin \theta \cos \varphi, \\ y & = b r \sin \theta \sin \varphi, \\ z & = c r \cos \theta. \end{align} $$

Your limits for each variable are correct though. Your Jacobian is incorrect because you forgot to take in account the factors $a,b,c$. It should be

$$\frac{\partial (x,y,z)}{\partial (r, \theta, \varphi)} = - abc r^2 \sin \theta.$$

The $-$ sign is because this parametrization of the sphere reverses orientation.

When I edited your post I made sure to clarify some things but I didn't edit a couple of mistakes, which I intend to explain now:

1) I turned $d$'s into $\partial$'s for the Jacobian to correct your notation.

2) The notations $d(x,y,z)$ and $d(r, \theta, \varphi)$ don't make sense, it is best to stick to $dx \, dy \, dz$ and $dr \, d \theta \, d \varphi$.

Your set up for the mass is correct if you fix the Jacobian and add $abc$. The calculation seems to be too (I haven't checked that thoroughly).

I don't understand what you mean by $x_s$. If you want to compute the $x$ coordinate of the center of mass, I assume you are using

$$x_s = \frac{1}{M} \int\limits_{E} x \mu \, dV, \text{ or } x_s M = \int\limits_{E} x \mu \, dV.$$

As you have seen, this is zero, just like the others will be. This has to do with mjqxxxx's comment that the ellipsoid has symmetry about all axis, therefore its center of mass has to be at the origin.

Related Question