@@ -5,6 +5,104 @@ equation for rotating spherical harmonics.
5
5
6
6
---
7
7
8
+ # Outline
9
+
10
+ * Three-dimensional Euclidean space
11
+ - Cartesian coordinates `` (x, y, z) `` => ℝ³
12
+ - Cartesian basis vectors `` (𝐱, 𝐲, 𝐳,) ``
13
+ - Euclidean norm => Euclidean metric
14
+ - Spherical coordinates
15
+ - Specifically give transformation to/from `` (x, y, z) ``
16
+ - Derive metric in these coordinates from transformation
17
+ - Integration / measure on two-sphere
18
+ - Derive as restriction of full metric, in both coordinate systems
19
+ * Four-dimensional Euclidean space
20
+ - Eight-dimensional Clifford algebra over the tangent * vector space* `` Tℝ³ ``
21
+ - Four-dimensional even sub-algebra => ℝ⁴
22
+ - Coordinates `` (W, X, Y, Z) ``
23
+ - Basis vectors `` (𝟏, 𝐢, 𝐣, 𝐤) `` , but we usually just omit `` 𝟏 ``
24
+ - Show a few essential formulas establishing the product and its conventions
25
+ - Unit quaternions are isomorphic to ``\mathbf{Spin}(3) =
26
+ \mathbf{SU}(2)`` ; double covers `` \mathbf{SO}(3)``
27
+ - Be explicit about the mapping between vector in ℝ³ and quaternions
28
+ - Show how a unit quaternion can be used to rotate a vector
29
+ - Spherical coordinates (hyperspherical / Euler)
30
+ - Specifically give transformation to/from `` (W, X, Y, Z) ``
31
+ - Derive metric in these coordinates from transformation
32
+ - Express unit quaternion in Euler angles
33
+ - Integration / measure / Haar measure on three-sphere
34
+ - Derive as restriction of full metric, in both coordinate systems
35
+ * Angular momentum operators / functional analysis
36
+ - Express angular momentum operators in terms of quaternion components
37
+ - Express angular momentum operators in terms of Euler angles
38
+ - Show for both the three- and two-spheres
39
+ - Show how they act on functions on the three-sphere
40
+ * Representation theory / harmonic analysis
41
+ - Representations show up in Fourier analysis on groups
42
+ - Peter-Weyl theorem
43
+ - Generalizes Fourier analysis to compact groups
44
+ - A basis of functions on the group is given by matrix elements of
45
+ group representations
46
+ - Representation theory of `` \mathbf{Spin}(3) ``
47
+ - Show how the Lie algebra is represented by the angular-momentum operators
48
+ - Show how the Lie group is represented by the Wigner D-matrices
49
+ - Demonstrate that `` \mathfrak{D} `` is a representation
50
+ - Demonstrate its behavior under left and right rotation
51
+ - Demonstrate orthonormality
52
+ - Representation theory of `` \mathbf{SO}(3) ``
53
+ - There are several places in [ Folland] (@cite Folland_2016) (e.g.,
54
+ above corollary 5.48) where he mentions that representations of
55
+ a quotient group are just representations that are trivial
56
+ (evidently meaning mapping everything to the identity matrix) on
57
+ the factor. I can't find anywhere that he explains this
58
+ explicitly, but it seems easy enough to show. He might do it
59
+ using characters.
60
+ - For `` \mathbf{Spin}(3) `` and `` \mathbf{SO}(3) `` , the factor
61
+ group is just `` \{1, -1\} `` . Presumably, every representation
62
+ acting on `` 1 `` will give the identity matrix, so that's
63
+ trivial. So we just need a criterion for when a representation
64
+ is trivial on `` -1 `` . Noting that `` \exp(\pi \vec{v}) = -1 ``
65
+ for any `` \vec{v} `` , I think we can show that this requires
66
+ `` m \in \mathbb{Z} `` .
67
+ - Basically, the point is that the representations of
68
+ `` \mathbf{SO}(3) `` are just the integer representations of
69
+ `` \mathbf{Spin}(3) `` .
70
+ - Restrict to homogeneous space (S³ -> S²)
71
+ - The circle group is a closed (normal?) subgroup of
72
+ `` \mathbf{Spin}(3) `` , which we might implement as initial
73
+ multiplication about a particular axis.
74
+ - In Eq. (2.47) [ Folland (2016)] (@cite Folland_2016) defines a
75
+ functional taking a function on the group to a function on the
76
+ homogeneous space by integrating over the factor (the circle
77
+ group). This gives you the spherical harmonics, but * not* the
78
+ spin-weighted spherical harmonics — because the spin-weighted
79
+ spherical harmonics cannot be defined on the 2-sphere.
80
+ - Spin weight comes from Fourier analysis on the subgroup.
81
+ - Representation matrices transfer to the homogeneous space, with
82
+ sparsity patterns
83
+
84
+
85
+
86
+ ---
87
+
88
+ Spherical harmonics as functions on homogeneous space.
89
+ https://www.youtube.com/watch?v=TnFvOa9v7do gives some nice
90
+ discussion; maybe the paper has better references.
91
+
92
+ Theorem 2.16 of [ Hanson-Yakovlev] (@cite HansonYakovlev_2002) says that
93
+ an orthonormal basis of a product of `` L^2 `` spaces is given by the
94
+ product of the orthonormal bases of the individual spaces.
95
+ Furthermore, on page 354, they point out that ``\{ (1/\sqrt{2\pi})
96
+ e^{im\phi}\} `` is an orthonormal basis of `` L^2(0,2\pi)``, while the
97
+ set `` \{1/c_{n,m} P_n^m(\cos\theta) `` is an orthonormal basis of
98
+ `` L^2(0, \pi) `` in the `` \theta `` coordinate. Therefore, the product
99
+ of these two sets is an orthonormal basis of the product space
100
+ `` L^2\left((0,2\pi) \times (0, \pi)\right) `` , which forms a coordinate
101
+ space for `` S^2 `` . I would probably modify this to point out that
102
+ `` (0,2\pi) `` is really `` S^1 `` , and then we could extend it to point
103
+ out that you can throw on another factor of `` S^1 `` to cover `` S^3 `` ,
104
+ which happens to give us the Wigner D-matrices.
105
+
8
106
We first define the rotor that takes `` (\hat{x}, \hat{y}, \hat{z}) ``
9
107
onto `` (\hat{\theta}, \hat{\phi}, \hat{r}) `` . Then, we can invert
10
108
that, so that given a rotor that specifies such a rotation exactly, we
@@ -169,6 +267,24 @@ Condon-Shortley phase convention.***
169
267
170
268
## Angular-momentum operators
171
269
270
+ * First, a couple points about `` -i\hbar `` :
271
+ - The finite transformations look like `` \exp[-i \theta L_j] `` , but
272
+ the factor of `` i `` introduced here just cancels the one in the
273
+ `` L_j `` , and the sign is just chosen to make the result consistent
274
+ with our notion of active or passive transformations.
275
+ - Any factors of `` \hbar `` are included * purely* for the sake of
276
+ convenience.
277
+ - The factor `` i `` comes from plain functional analysis: We need a
278
+ self-adjoint operator, and `` \partial_x `` by itself is
279
+ anti-self-adjoint (as can be verified by evaluating on ``\langle
280
+ x' | x \rangle = \delta(x-x')``, which switches sign based on
281
+ which is being differentiated). We want self-adjoint operators so
282
+ that we get purely real eigenvalues. [ Van Neerven] (@cite
283
+ vanNeerven_2022) cites this in a more rigorous context in his
284
+ Example (10.40) (page 331), with more explanation around Eq.
285
+ (15.17) (page 592). The "self-adjoint `` \iff `` real eigenvalues"
286
+ condition is item (1) in his Corollary 9.18.
287
+
172
288
Wigner's $𝔇$ matrices are defined as matrix elements of a rotation in
173
289
the basis of spherical harmonics. That rotation is defined in terms
174
290
of the generators of rotation, which are expressed in terms of the
0 commit comments