Rasalhague
- 1,383
- 2
Not sure if this question belongs more here or in Topology & Geometry or in Math & Science Software...
I'm trying out the technique described in Bachman: A Geometric Approach to Differential forms, § 6.2 "Integrating 2-forms". To take a simple example, I tried to use this method to get the surface area of a sphere, S2, with radius R, embedded in R3. I think the 2-form I need to integrate is
\omega = dy \wedge dz + dz \wedge dx + dx \wedge dz.
I've chosen the obvious parameterization
\psi : \mathbb{R}^2 \rightarrow \mathbb{R}^3 \; \bigg| \; \psi (\zeta, \alpha) = R \; (\sin \zeta \cos \alpha, \sin \zeta \sin \alpha, \cos \zeta)
where 0 \leq \zeta \leq \pi is the zenith angle, and 0 \leq \alpha \leq 2 \pi the azimuth angle. Let \textbf{x}=\psi(\zeta, \alpha). Then
\frac{\partial \textbf{x}}{\partial \zeta} = R \; (\cos \zeta \cos \alpha, \cos \zeta \sin \alpha, -\sin \zeta)
\frac{\partial \textbf{x}}{\partial \alpha} = R \; (-\sin \zeta \sin \alpha, \sin \zeta \cos \alpha, 0)
Barring copying errors on my part, mathematica confirms this.
dy \wedge dz\left ( \frac{\partial \textbf{x}}{\partial \zeta}, \frac{\partial \textbf{x}}{\partial \alpha} \right ) = \begin{vmatrix}<br /> R \cos \zeta \sin \alpha & R \cos \alpha \sin \zeta\\ <br /> -R \sin \zeta & 0<br /> \end{vmatrix} = R^2 \cos \alpha \; \sin^2 \zeta
dz \wedge dx \left ( \frac{\partial \textbf{x}}{\partial \zeta}, \frac{\partial \textbf{x}}{\partial \alpha} \right ) = \begin{vmatrix}<br /> -R \sin \zeta & 0 \\ R \cos \zeta \cos \alpha & -R \sin \zeta \sin \alpha<br /> \end{vmatrix} = R^2 \sin \alpha \; \sin^2 \zeta
dx \wedge dy \left ( \frac{\partial \textbf{x}}{\partial \zeta}, \frac{\partial \textbf{x}}{\partial \alpha} \right ) = \begin{vmatrix}<br /> R \cos \zeta \cos \alpha & -R \sin \zeta \sin \alpha \\ R \cos \zeta \sin \alpha<br /> & R \sin \zeta \cos \alpha<br /> \end{vmatrix} = R^2 \cos \zeta \sin \zeta
But according to Mathematica,
R^2 \int_0^{2\pi} \int_0^\pi \left [ \sin^2 \zeta (\cos \alpha + \sin \alpha) + \cos \zeta \sin \zeta \right ] d \zeta \wedge d \alpha = 0
What went wrong?
Mathematica gave the same results for each of the matrices and their determinants as I got by hand.
I'm trying out the technique described in Bachman: A Geometric Approach to Differential forms, § 6.2 "Integrating 2-forms". To take a simple example, I tried to use this method to get the surface area of a sphere, S2, with radius R, embedded in R3. I think the 2-form I need to integrate is
\omega = dy \wedge dz + dz \wedge dx + dx \wedge dz.
I've chosen the obvious parameterization
\psi : \mathbb{R}^2 \rightarrow \mathbb{R}^3 \; \bigg| \; \psi (\zeta, \alpha) = R \; (\sin \zeta \cos \alpha, \sin \zeta \sin \alpha, \cos \zeta)
where 0 \leq \zeta \leq \pi is the zenith angle, and 0 \leq \alpha \leq 2 \pi the azimuth angle. Let \textbf{x}=\psi(\zeta, \alpha). Then
\frac{\partial \textbf{x}}{\partial \zeta} = R \; (\cos \zeta \cos \alpha, \cos \zeta \sin \alpha, -\sin \zeta)
\frac{\partial \textbf{x}}{\partial \alpha} = R \; (-\sin \zeta \sin \alpha, \sin \zeta \cos \alpha, 0)
Barring copying errors on my part, mathematica confirms this.
dy \wedge dz\left ( \frac{\partial \textbf{x}}{\partial \zeta}, \frac{\partial \textbf{x}}{\partial \alpha} \right ) = \begin{vmatrix}<br /> R \cos \zeta \sin \alpha & R \cos \alpha \sin \zeta\\ <br /> -R \sin \zeta & 0<br /> \end{vmatrix} = R^2 \cos \alpha \; \sin^2 \zeta
dz \wedge dx \left ( \frac{\partial \textbf{x}}{\partial \zeta}, \frac{\partial \textbf{x}}{\partial \alpha} \right ) = \begin{vmatrix}<br /> -R \sin \zeta & 0 \\ R \cos \zeta \cos \alpha & -R \sin \zeta \sin \alpha<br /> \end{vmatrix} = R^2 \sin \alpha \; \sin^2 \zeta
dx \wedge dy \left ( \frac{\partial \textbf{x}}{\partial \zeta}, \frac{\partial \textbf{x}}{\partial \alpha} \right ) = \begin{vmatrix}<br /> R \cos \zeta \cos \alpha & -R \sin \zeta \sin \alpha \\ R \cos \zeta \sin \alpha<br /> & R \sin \zeta \cos \alpha<br /> \end{vmatrix} = R^2 \cos \zeta \sin \zeta
But according to Mathematica,
R^2 \int_0^{2\pi} \int_0^\pi \left [ \sin^2 \zeta (\cos \alpha + \sin \alpha) + \cos \zeta \sin \zeta \right ] d \zeta \wedge d \alpha = 0
What went wrong?
Code:
x = R {Sin[z] Cos[a], Sin[z] Sin[a], Cos[z]};
tz = D[x, z]; ta = D[x, a];
Integrate[
Simplify[Det[{{tz[[2]], ta[[2]]}, {tz[[3]], ta[[3]]}}] +
Det[{{tz[[3]], ta[[3]]}, {tz[[1]], ta[[1]]}}] +
Det[{{tz[[1]], ta[[1]]}, {tz[[2]], ta[[2]]}}]], {z, 0, Pi}, {a, 0,
2 Pi}]
Mathematica gave the same results for each of the matrices and their determinants as I got by hand.