-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
geometry.bigb
1706 lines (1226 loc) · 58.8 KB
/
geometry.bigb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
= Geometry
{wiki}
= Minimum bounding box
{parent=Geometry}
{wiki}
= Bounding box
{parent=Geometry}
{wiki}
= Fractal
{parent=Geometry}
{wiki}
= Point
{disambiguate=geometry}
{parent=Geometry}
{wiki}
= Point
{synonym}
= Line
{disambiguate=geometry}
{parent=Point (geometry)}
{wiki}
= Line
{synonym}
= Hyperplane
{parent=Point (geometry)}
{wiki}
Generalization of a <plane> for any number of dimensions.
Kind of the opposite of a line: the line has dimension 1, and the plane has dimension D-1.
In $D=2$, both happen to coincide, a boring example of an <exceptional isomorphism>.
= Plane
{disambiguate=geometry}
{parent=Hyperplane}
{wiki}
= Plane
{synonym}
= n-sphere
{parent=Geometry}
{title2=$S^n$}
{wiki}
= Antipodal point
{parent=n-sphere}
{wiki}
= Diameter
{parent=n-sphere}
{wiki}
= Radius
{parent=Diameter}
{wiki}
= Circle
{parent=n-sphere}
{title2=$S^1$}
{wiki}
= 1-sphere
{synonym}
{title2}
= Squaring the circle
{parent=Circle}
{wiki}
= Tarski's circle-squaring problem
{c}
{parent=Circle}
{title2=Cut a circle into square}
{wiki}
Does not require straight line cuts.
= Sphere
{parent=n-sphere}
{title2=$S^2$}
{wiki}
= 2-sphere
{synonym}
{title2}
= Great circle
{parent=Sphere}
{wiki}
= 3-sphere
{parent=n-sphere}
{title2=$S^3$}
{wiki}
Diffeomorphic to <SU(2)>.
= Projective geometry
{parent=Geometry}
{wiki}
= Projective space
{parent=Projective geometry}
{title2=$\projectiveSpace(V)$}
{wiki}
A <unique> projective space can be defined for any <vector space>.
The projective space associated with a given <vector space> $V$ is denoted $\projectiveSpace(V)$.
The definition is to take the vector space, remove the zero element, and identify all elements that lie on the same line, i.e. $\vec{v} = \lambda \vec{w}$
The most important initial example to study is the <real projective plane>.
= Projective plane
{parent=Projective space}
{wiki}
= Real projective space
{parent=Projective geometry}
{title2=$RP^n$}
{title2=$\projectiveSpace(\R^{n+1})$}
In those cases at least, it is possible to add a <metric (mathematics)> to the spaces, leading to <elliptic geometry>.
= Real projective line
{parent=Real projective space}
{title2=$RP^1$}
{title2=$\projectiveSpace(\R^2)$}
{wiki}
Just a <circle>.
Take $\R^2$ with a line at $x = 0$. Identify all the points that an observer
= Real projective plane
{parent=Real projective space}
{title2=$RP^2$}
{title2=$\projectiveSpace(\R^3)$}
{wiki}
For some reason, <Ciro Santilli> is mildly obsessed with understanding and visualizing the real projective plane.
To see why this is called a plane, move he center of the sphere to $z=1$, and project each line passing on the center of the sphere on the x-y plane. This works for all points of the sphere, except those at the equator $z=1$. Those are the <points at infinity>. Note that there is one such point at infinity for each direction in the x-y plane.
= Synthetic geometry of the real projective plane
{parent=Real projective plane}
It good to think about how <Euclid's postulates> look like in the real projective plane:
* two parallel lines on the plane meet at a point on the sphere!
Since there is one point of infinity for each direction, there is one such point for every direction the two parallel lines might be at. The <parallel postulate> does not hold, and is replaced with a simpler more elegant version: every two lines meet at exactly one point.
One thing to note however is that ther <real projective plane> does not have <angles> defined on it by definition. Those can be defined, forming <elliptic geometry> through the <projective model of elliptic geometry>, but we can interpret the "parallel lines" as "two lines that meet at a point at infinity"
* points in the real projective plane are lines in <\R^3>
* lines in the real projective plane are planes in <\R^3>.
For every two projective points there is a single projective line that passes through them.
Since it is a plane in <\R^3>, it always intersects the real plane at a line.
Note however that not all lines in the real plane correspond to a projective line: only lines tangent to a circle at zero do.
Unlike the <real projective line> which is <homotopic> to the <circle>, the <real projective plane> is not <homotopic> to the <sphere>.
The <topological> difference bewteen the <sphere> and the <real projective space> is that for the <sphere> all those points in the x-y circle are identified to a single point.
One more generalized argument of this is the <classification of closed surfaces>, in which the <real projective plane> is a <sphere> with a hole cut and one <Möbius strip> glued in.
= Model of the real projective plane
{parent=Real projective plane}
= Lines through origin model of the real projective plane
{parent=Model of the real projective plane}
This is the standard model.
= Spherical cap model of the real projective plane
{parent=Model of the real projective plane}
<Ciro Santilli>'s preferred visualization of the real projective plane is a small variant of the standard "lines through origin in <\R^3>".
Take a open half <sphere> e.g. a sphere but only the points with $z > 0$.
Each point in the half sphere identifies a unique line through the origin.
Then, the only lines missing are the lines in the x-y plane itself.
For those sphere points in the <circle> on the x-y plane, you should think of them as magic poins that are identified with the corresponding <antipodal point>, also on the x-y, but on the other side of the origin. So basically you you can teleport from one of those to the other side, and you are still in the same point.
Ciro likes this model because then all the magic is confined just to the $z=0$ part of the model, and everything else looks exactly like the sphere.
It is useful to contrast this with the sphere itself. In the sphere, all points in the circle $z = 0$ are the same point. But this is not the case for the <projective plane>. You cannot instantly go to any other point on the $z=0$ by just moving a little bit, you have to walk around that circle.
\Image[https://raw.githubusercontent.com/cirosantilli/media/master/spherical-cap-model-of-the-real-projective-plane.svg]
{title=Spherical cap model of the real projective plane}
{description=On the x-y plane, you can magically travel immediately between <antipodal points> such as A/A', B/B' and C/C'. Or equivalently, those pairs are the same point. Every other point outside the x-y plane is just a regular point like a normal <sphere>.}
= The real projective plane is not simply connected
{parent=Real projective plane}
To see that the <real projective plane> is not <simply connected space>, considering the <lines through origin model of the real projective plane>, take a <loop (topology)> that starts at $(1, 0, 0)$ and moves along the $y=0$ <great circle> ends at $(-1, 0, 0)$.
Note that both of those points are the same, so we have a loop.
Now try to shrink it to a point.
There's just no way!
= Point at infinity
{parent=Real projective plane}
{wiki}
= Points at infinity
{synonym}
= Homogenous coordinates
{parent=Real projective plane}
{wiki}
= Polytope
{parent=Geometry}
{wiki}
A <polygon> is a 2-dimensional <polytope>, <polyhedra> is a 3-dimensional <polytope>.
= Convex polytope
{parent=Polytope}
{wiki}
= Convex
{synonym}
= Regular polytope
{parent=Polytope}
{wiki}
TODO understand and explain definition.
= Classification of regular polytopes
{parent=Regular polytope}
{tag=Classification (mathematics)}
{{wiki=Regular_polytope#Classification_and_description}}
The 3D regular convex polyhedrons are super famous, have the name: <Platonic solid>, and have been known since antiquity. In particular, there are only 5 of them.
The counts per dimension are:
\Table[
|| Dimension
|| Count
| 2
| Infinite
| 3
| 5
| 4
| 6
| >4
| 3
]
{title=Number of regular polytopes per dimension}
The cool thing is that the 3 that exist in 5+ dimensions are all of one of the three families:
* <simplex>
* <hypercube>
* <cross polytope>
Then, the 2 3D missing ones have 4D analogues and the sixth one in 4D does not have a 3D analogue: https://en.wikipedia.org/wiki/24-cell[the 24-cell]. Yes, this is the kind of irregular stuff <Ciro Santilli> lives <the beauty of mathematics>[for].
= Simplex
{parent=Classification of regular polytopes}
{wiki}
<Triangle>, <tetrahedron>.
The name does not imply regular by default. For regular ones, you should say "regular polytope".
Non-regular description: take convex hull take D + 1 vertices that are not on a single D-plan.
= Hypercube
{parent=Classification of regular polytopes}
{wiki}
<square>, cube. 4D case known as <tesseract>.
Convex hull of all $\{-1, 1\}^D$ (<Cartesian product> power) D-tuples, e.g. in <3D>:
``
( 1, 1, 1)
( 1, 1, -1)
( 1, -1, 1)
( 1, -1, -1)
(-1, 1, 1)
(-1, 1, -1)
(-1, -1, 1)
(-1, -1, -1)
``
From this we see that there are $2^D$ <vertices>.
Two <vertices> are linked iff they differ by a single number. So each vertex has D neighbors.
= Hyperrectangle
{parent=Hypercube}
{wiki}
The <regular polytope>[non-regular] version of the <hypercube>.
= Cross polytope
{parent=Classification of regular polytopes}
{wiki}
Examples: <square>, <octahedron>.
Take $(0, 0, 0, \dots, 0)$ and flip one of 0's to $\pm 1$. Therefore has $2 \times D$ <vertices>.
Each edge E is linked to every other edge, except it's opposite -E.
= Polygon
{parent=Polytope}
{wiki}
= Quadrilateral
{parent=Polygon}
{wiki}
= Rectangle
{parent=Quadrilateral}
{wiki}
= Parallelogram
{parent=Polygon}
{wiki}
= Parallelepiped
{parent=Parallelogram}
{wiki}
<3D> <parallelogram>.
= Volume of the parallelepiped
{parent=Parallelepiped}
= Volume of a parallelepiped
{synonym}
= Regular polygon
{parent=Polygon}
{wiki}
= Regular convex polygon
{parent=Regular polygon}
= Triangle
{parent=Regular convex polygon}
{wiki}
= Square
{parent=Regular convex polygon}
{tag=Rectangle}
{wiki}
= Pentagon
{parent=Regular convex polygon}
{wiki}
= Hexagon
{parent=Regular convex polygon}
{wiki}
= Octagon
{parent=Regular convex polygon}
{wiki}
= Polyhedron
{parent=Polytope}
{wiki}
= Polyhedra
{synonym}
= Tetrahedron
{parent=Polyhedron}
{wiki}
= Octahedron
{parent=Polyhedron}
{wiki}
= Regular polyhedron
{parent=Polytope}
{wiki}
= Platonic solid
{c}
{parent=Regular polyhedron}
{wiki}
A <convex> <regular polyhedron>.
Their <the beauty of mathematics>[beauty is a classification type result] as stated at <classification of regular polytopes>.
https://en.wikipedia.org/wiki/Platonic_solid#Topological_proof
= 4-polytope
{parent=Polytope}
{wiki}
= Regular 4-polytope
{parent=4-polytope}
{wiki}
= Tesseract
{parent=Regular 4-polytope}
{wiki}
= Differential geometry
{parent=Geometry}
Bibliography:
* https://maths-people.anu.edu.au/~andrews/DG/ Lectures on Differential Geometry by Ben Andrews
= Lie group
{c}
{parent=Differential geometry}
{wiki}
The key and central motivation for studying Lie groups and their <Lie algebras> appears to be to characterize <symmetry> in <Lagrangian mechanics> through <Noether's theorem>, just start from there.
Notably <local symmetries> appear to map to forces, and local means "around the identity", notably: <local symmetries of the Lagrangian imply conserved currents>.
More precisely: <local symmetries of the Lagrangian imply conserved currents>.
TODO <Ciro Santilli> really wants to understand what all the fuss is about:
* https://math.stackexchange.com/questions/1322206/lie-groups-lie-algebra-applications
* https://mathoverflow.net/questions/58696/why-study-lie-algebras
* https://math.stackexchange.com/questions/405406/definition-of-lie-algebra
Oh, there is a low dimensional classification! Ciro is <high flying bird vs gophers>[a sucker for classification theorems]! https://en.wikipedia.org/wiki/Classification_of_low-dimensional_real_Lie_algebras
The fact that there are elements arbitrarily close to the identity, which is only possible due to the group being continuous, is the key factor that simplifies the treatment of Lie groups, and follows the philosophy of <continuous problems are simpler than discrete ones>.
Bibliography:
* https://youtu.be/kpeP3ioiHcw?t=2655 "Particle Physics Topic 6: Lie Groups and Lie Algebras" by Alex Flournoy (2016). Good <special orthogonal group>[SO(3)] explicit exponential expansion example. Then next lecture shows why SU(2) is the representation of SO(3). Next ones appear to eventually get to the physical usefulness of the thing, but I lost patience. Not too far out though.
* https://www.youtube.com/playlist?list=PLRlVmXqzHjURZO0fviJuyikvKlGS6rXrb "Lie Groups and Lie Algebras" playlist by XylyXylyX (2018). Tutorial with infinitely many hours
* http://www.staff.science.uu.nl/~hooft101/lectures/lieg07.pdf
* http://www.physics.drexel.edu/~bob/LieGroups.html
\Video[https://www.youtube.com/watch?v=ZRca3Ggpy_g]
{title=What is Lie theory? by Mathemaniac 2023}
= Lie derivative
{c}
{parent=Lie group}
{wiki}
Bibliography:
* https://takeshimg92.github.io/posts/lie_derivatives.html
= Applications of Lie groups to differential equations
{parent=Lie group}
{tag=Analytical method to solve a partial differential equation}
= How to use Lie Groups to solve differential equations
{synonym}
{title2}
Solving <differential equations> was apparently Lie's original motivation for developing <Lie groups>. It is therefore likely one of the most understandable ways to approach it.
It appears that Lie's goal was to understand when can a differential equation have an explicitly written solution, much like <Galois theory> had done for <algebraic equations>. Both approaches use <symmetry> as the key tool.
* https://www.researchgate.net/profile/Michael_Frewer/publication/269465435_Lie-Groups_as_a_Tool_for_Solving_Differential_Equations/links/548cbf250cf214269f20e267/Lie-Groups-as-a-Tool-for-Solving-Differential-Equations.pdf Lie-Groups as a Tool for Solving Differential Equations by Michael Frewer. Slides with good examples.
= Lie algebra
{c}
{parent=Lie group}
{wiki}
Like everything else in <Lie groups>, first start with the <matrix> as discussed at <Lie algebra of a matrix Lie group>{full}.
Intuitively, a <Lie algebra> is a simpler object than a <Lie group>. Without any extra structure, groups can be very complicated non-linear objects. But a <Lie algebra> is just an <algebra over a field>, and one with a restricted <bilinear map> called the <Lie bracket>, that has to also be <alternating multilinear map>[alternating] and satisfy the <Jacobi identity>.
Another important way to think about Lie algebras, is as <infinitesimal generators>.
Because of the <Lie group-Lie algebra correspondence>, we know that there is almost a <bijection> between each <Lie group> and the corresponding <Lie algebra>. So it makes sense to try and study the algebra instead of the group itself whenever possible, to try and get insight and proofs in that simpler framework. This is the key reason why people study Lie algebras. One is philosophically reminded of how <normal subgroups> are a simpler representation of <group homomorphisms>.
To make things even simpler, because <all vector spaces of the same dimension on a given field are isomorphic>, the only things we need to specify a <Lie group> through a <Lie algebra> are:
* the dimension
* the <Lie bracket>
Note that the <Lie bracket> can look different under different basis of the <Lie algebra> however. This is shown for example at <Physics from Symmetry by Jakob Schwichtenberg (2015)> page 71 for the <Lorentz group>.
As mentioned at <Lie Groups, Physics, and Geometry by Robert Gilmore (2008)> Chapter 4 "Lie Algebras", taking the <Lie algebra> around the identity is mostly a convention, we could treat any other point, and things are more or less equivalent.
Bibliography:
* https://physicstravelguide.com/advanced_tools/group_theory/lie_algebras#tab__concrete on <Physics Travel Guide>
* http://jakobschwichtenberg.com/lie-algebra-able-describe-group/ by <Jakob Schwichtenberg>
= Infinitesimal generator
{parent=Lie algebra}
Elements of a <Lie algebra> can (should!) be seen a continuous analogue to the <generating set of a group> in finite groups.
For continuous groups however, we can't have a finite generating set in the strict sense, as a finite set won't ever cover every possible point.
But the <generator of a Lie algebra> can be finite.
And just like in finite groups, where you can specify the full group by specifying only the relationships between generating elements, in the Lie algebra you can almost specify the full group by specifying the relationships between the elements of a <generator of the Lie algebra>.
This "specification of a relation" is done by defining the <Lie bracket>.
The reason why the algebra works out well for continuous stuff is that by definition an <algebra over a field> is a <vector space> with some extra structure, and we know very well how to make infinitesimal elements in a vector space: just multiply its vectors by a constant $c$ that cana be arbitrarily small.
= Lie group-Lie algebra correspondence
{c}
{parent=Lie algebra}
{wiki=Lie_group–Lie_algebra_correspondence}
Every <Lie algebra> corresponds to a single <simply connected> <Lie group>.
The <Baker-Campbell-Hausdorff formula> basically defines how to map an algebra to the group.
Bibliography:
* <Lie Groups, Physics, and Geometry by Robert Gilmore (2008)> Chapter 7 "EXPonentiation"
= Lie algebra exponential covering problem
{c}
{parent=Lie group-Lie algebra correspondence}
<Lie Groups, Physics, and Geometry by Robert Gilmore (2008)> 7.2 "The covering problem" gives some amazing intuition on the subject as usual.
= A single exponential map is not enough to recover a simple Lie group from its algebra
{parent=Lie algebra exponential covering problem}
Example at: <Lie Groups, Physics, and Geometry by Robert Gilmore (2008)> Chapter 7 "EXPonentiation".
= The product of a exponential of the compact algebra with that of the non-compact algebra recovers a simple Lie from its algebra
{parent=Lie algebra exponential covering problem}
Example at: <Lie Groups, Physics, and Geometry by Robert Gilmore (2008)> Chapter 7 "EXPonentiation".
Furthermore, the non-<compact> part is always <isomorphic> to <\R^n>, only the non-compact part can have more interesting structure.
= Two different Lie groups can have the same Lie algebra
{parent=Lie group-Lie algebra correspondence}
The most important example is perhaps <SO(3)> and <SU(2)>, both of which have the same <Lie algebra>, but are not isomorphic.
= Every Lie algebra has a unique single corresponding simply connected Lie group
{parent=Two different Lie groups can have the same Lie algebra}
This <simply connected> is called the <universal covering group>.
E.g. in the case of <SO(3)> and <SU(2)>, <SU(2)> is <simply connected>, but <SO(3)> is not.
= Universal covering group
{parent=Every Lie algebra has a unique single corresponding simply connected Lie group}
The <unique> group referred to at: <every Lie algebra has a unique single corresponding simply connected Lie group>.
= Every Lie group that has a given Lie algebra is the image of an homomorphism from the universal cover group
{parent=Two different Lie groups can have the same Lie algebra}
= Lie bracket
{c}
{parent=Lie algebra}
= Exponential map
{parent=Lie algebra}
{wiki}
Most commonly refers to: <exponential map (Lie theory)>.
= Exponential map
{disambiguate=Lie theory}
{parent=Exponential map}
{wiki}
Like everything else in <Lie group> theory, you should first look at the <matrix> version of this operation: the <matrix exponential>.
The <exponential map> links small transformations around the origin (infinitely small) back to larger finite transformations, and small transformations around the origin are something we can deal with a <Lie algebra>, so this map links the two worlds.
The idea is that we can decompose a finite transformation into infinitely arbitrarily small around the origin, and proceed just like the <product definition of the exponential function>.
The definition of the exponential map is simply the same as that of the regular exponential function as given at <Taylor expansion definition of the exponential function>, except that the argument $x$ can now be an operator instead of just a number.
Examples:
* <the derivative is the generator of the translation group>
= Baker-Campbell-Hausdorff formula
{c}
{parent=Lie algebra}
{title2=BCH formula}
{wiki=Baker–Campbell–Hausdorff formula}
Solution $Z$ for given $X$ and $Y$ of:
$$
e^Z = e^X e^Y
$$
where $e$ is the <exponential map>.
If we consider just <real number>, $Z = X + Y$, but when X and Y are <non-commutative>, things are not so simple.
Furthermore, TODO confirm it is possible that a solution does not exist at all if $X$ and $Y$ aren't sufficiently small.
This formula is likely the basis for the <Lie group-Lie algebra correspondence>. With it, we express the actual <group operation> in terms of the Lie algebra operations.
Notably, remember that a <algebra over a field> is just a <vector space> with one extra product operation defined.
Vector spaces are simple because <all vector spaces of the same dimension on a given field are isomorphic>, so besides the dimension, once we define a <Lie bracket>, we also define the corresponding <Lie group>.
Since a group is basically defined by what the group operation does to two arbitrary elements, once we have that defined via the <Baker-Campbell-Hausdorff formula>, we are basically done defining the group in terms of the algebra.
= Generator of a Lie algebra
{parent=Lie algebra}
= Generators of a Lie algebra
{parent=Lie algebra}
= Generator of the Lie algebra
{synonym}
Cardinality $\leq$ dimension of the vector space.
= Continuous symmetry
{parent=Lie group}
{wiki}
Basically a synonym for <Lie group> which is the way of modelling them.
= Local symmetry
{parent=Continuous symmetry}
{wiki}
Local symmetries appear to be a synonym to <internal symmetry>, see description at: <internal and spacetime symmetries>{full}.
As mentioned at <quote axelmaas local symmetry>, local symmetries map to forces in the <Standard Model>.
Appears to be a synonym for: <gauge symmetry>.
A local symmetry is a transformation that you apply a different transformation for each point, instead of a single transformation for every point.
TODO what's the point of a local symmetry?
Bibliography:
* <quantum field theory lecture by tobias osborne 2017/lecture 3>
* https://physics.stackexchange.com/questions/48188/local-and-global-symmetries
* https://www.physics.rutgers.edu/grad/618/lects/localsym.pdf by Joel Shapiro gives one nice high level intuitive idea:
\Q[In relativistic physics, global objects are awkward because the finite velocity with which effects can propagate is expressed naturally in terms of local objects. For this reason high energy physics is expressed in terms of a field theory.]
* <Quora>:
* https://www.quora.com/What-does-a-local-symmetry-mean-in-physics
* https://www.quora.com/What-is-the-difference-between-local-and-global-symmetries-in-physics
* https://www.quora.com/What-is-the-difference-between-global-and-local-gauge-symmetry
= Local symmetries of the Lagrangian imply conserved currents
{parent=Local symmetry}
TODO. I think this is the key point. Notably, <U(1)> symmetry implies <charge conservation>.
More precisely, each <generator of a Lie algebra>[generator of the corresponding Lie algebra] leads to one separate conserved current, such that a single symmetry can lead to multiple conserved currents.
This is basically the <local symmetry> version of <Noether's theorem>.
Then to maintain charge conservation, we have to maintain <local symmetry>, which in turn means we have to add a <gauge field> as shown at <video Deriving the qED Lagrangian by Dietterich Labs (2018)>.
Forces can then be seen as kind of a side effect of this.
Bibliography:
* https://photonics101.com/relativistic-electrodynamics/gauge-invariance-action-charge-conservation#show-solution has a good explanation of the Gauge transformation. TODO how does that relate to <U(1)> symmetry?
* https://physics.stackexchange.com/questions/57901/noether-theorem-gauge-symmetry-and-conservation-of-charge
= Important Lie group
{parent=Lie group}
= Important Lie groups
{synonym}
= Matrix Lie group
{parent=Important Lie group}
This important and common simple case has easy properties.
= Every closed subgroup of $GL(n, \C)$ is a Lie group
{parent=Matrix Lie group}
<An Introduction to Tensors and Group Theory for Physicists by Nadir Jeevanjee (2011)s> page 146.
= Lie algebra of a matrix Lie group
{c}
{parent=Matrix Lie group}
For this sub-case, we can define the <Lie algebra> of a Lie group $G$ as the set of all matrices $M \in G$ such that for all $t \in \R$:
$$
e^{tM} \in G
$$
If we fix a given $M$ and vary $t$, we obtain a <subgroup> of $G$. This type of subgroup is known as a <one parameter subgroup>.
The immediate question is then if every element of $G$ can be reached in a unique way (i.e. is the exponential map a <bijection>). By looking at the <matrix logarithm> however we conclude that this is not the case for <real> matrices, but it is for <complex> matrices.
Examples:
* <Lie algebra of GL(n)>
* <Lie algebra of SL(2)>
* <Lie algebra of SO(3)>
* <Lie algebra of SU(2)>
TODO example it can be seen that the Lie algebra is not closed <matrix multiplication>, even though the corresponding group is by definition. But it is closed under the <Lie bracket> operation.
= Lie bracket of a matrix Lie group
{c}
{parent=Lie algebra of a matrix Lie group}
$$
[X, Y] = XY - YX
$$
This makes it clear how the <Lie bracket> can be seen as a "measure of non-<commutativity>"
Because the <Lie bracket> has to be a bilinear map, all we need to do to specify it uniquely is to specify how it acts on every pair of some basis of the <Lie algebra>.
Then, together with the <Baker-Campbell-Hausdorff formula> and the <Lie group-Lie algebra correspondence>, this forms an exceptionally compact description of a <Lie group>.
= One parameter subgroup
{parent=Lie algebra of a matrix Lie group}
The one parameter subgroup of a <Lie group> for a given element $M$ of its <Lie algebra> is a <subgroup> of $G$ given by:
$$
{ e^{tM} \in G | t \in \R }
$$
Intuitively, $M$ is a direction, and $t$ is how far we move along a given direction. This intuition is especially vivid in for example in the case of the <Lie algebra of SO(3)>, the <rotation group>.
One parameter subgroups can be seen as the continuous analogue to the <cycle of an element of a group>.
= Classical group
{parent=Important Lie group}
{wiki}
= Symplectic group
{parent=Classical group}
{title2=$Sp(n, F)$}
Intuition, please? Example? https://mathoverflow.net/questions/278641/intuition-for-symplectic-groups The key motivation seems to be related to <Hamiltonian mechanics>. The two arguments of the <bilinear form> correspond to each set of variables in Hamiltonian mechanics: the generalized positions and generalized momentums, which appear in the same number each.
Seems to be set of matrices that preserve a <skew-symmetric bilinear form>, which is comparable to the <orthogonal group>, which preserves a <symmetric bilinear form>. More precisely, the orthogonal group has:
$$
O^T I O = I
$$
and its generalization the <indefinite orthogonal group> has:
$$
O^T S O = I
$$
where S is symmetric. So for the symplectic group we have matrices Y such as:
$$
Y^T A Y = I
$$
where A is antisymmetric. This is explained at: https://www.ucl.ac.uk/~ucahad0/7302_handout_13.pdf They also explain there that unlike as in the analogous <orthogonal group>, that definition ends up excluding determinant -1 automatically.
Therefore, just like the <special orthogonal group>, the symplectic group is also a <subgroup> of the <special linear group>.
= Symplectic matrix
{parent=Symplectic group}
{tag=Named matrix}
= Unitary symplectic group
{parent=Symplectic group}
{title2=$Sp(n)$}
= General linear group
{parent=Important Lie group}
{wiki}
= $GL(n)$
{synonym}
{title2}
= $GL(n, F)$
{synonym}
{title2}
Invertible matrices. Or if you think a bit more generally, an invertible <linear map>.
When the <field (mathematics)> $F$ is not given, it defaults to the <real numbers>.
Non-invertible are excluded "because" otherwise it would not form a <group (mathematics)> (every element must have an inverse). This is therefore the largest possible group under <matrix multiplication>, other matrix multiplication groups being subgroups of it.
= Finite general linear group
{parent=General linear group}
{title2=$GL(n, F_m)$}
= $GL(n, m)$
{synonym}
{title2}
<general linear group> over a <finite field> of order $m$. Remember that due to the <classification of finite fields>, there is one single field for each <prime power> $m$.
Exactly as over the <real numbers>, you just put the finite field elements into a $n \times n$ matrix, and then take the invertible ones.
= Lie algebra of $GL(n)$
{c}
{parent=Important Lie group}
{tag=Lie algebra of a matrix Lie group}
Is the <set of all n-by-y square matrices>.
Because <GL(n)> is a <Lie group> we can use <Lie algebra of a matrix Lie group>{full}.
For every matrix $x$ in the <set of all n-by-y square matrices> $M_n$, $e^x$ has inverse $e^-x$.
Note that this works even if $x$ is not <invertible>, and therefore not in <GL(n)>!
Therefore, the Lie algebra of <GL(n)> is the entire <M_n>.
= Special linear group
{parent=Important Lie group}
{title2=$SL(n)$}
{wiki}
Specials sub case of the <general linear group> when the determinant equals exactly 1.
= Special linear group of dimension 2
{parent=Special linear group}
{title2=$SL(2)$}
{wiki=SL2(R)}
= Lie algebra of $SL(n)$
{c}
{parent=Special linear group}
{tag=Lie algebra of a matrix Lie group}
= Lie algebra of the special linear group
{c}
{synonym}
= Lie algebra of $SL(2)$
{c}
{parent=Lie algebra of SL(n)}
= Lie algebra of the special linear group of degree 2
{c}
{synonym}
This is a good first concrete example of a Lie algebra. Shown at <Lie Groups, Physics, and Geometry by Robert Gilmore (2008)> Chapter 4.2 "How to linearize a Lie Group" has an example.
We can use use the following parametrization of the <special linear group> on variables $x$, $y$ and $z$:
$$
M =
\begin{bmatrix}
1 + x & y \\
z & (1 + yz)/(1 + x) \\
\end{bmatrix}
$$
Every element with this parametrization has <determinant> 1:
$$
det(M) = (1 + x)(1 + yz)/(1 + x) - yz = 1
$$
Furthermore, any element can be reached, because by independently settting $x$, $y$ and $z$, $M_{00}$, $M_{01}$ and $M_{10}$ can have any value, and once those three are set, $M_{11}$ is fixed by the determinant.
To find the elements of the <Lie algebra>, we evaluate the derivative on each parameter at 0:
$$
\begin{aligned}
M_x
&=
\evalat{\dv{M}{x}}{(x,y,z) = (0,0,0)}
&=
\evalat{
\begin{bmatrix}
1 & 0 \\
0 & -(1 + yz)/(1 + x)^2 \\
\end{bmatrix}
}{(x,y,z) = (0,0,0)}
&=
\begin{bmatrix}
1 & 0 \\
0 & -1 \\
\end{bmatrix}
\\
M_y
&=
\evalat{\dv{M}{y}}{(x,y,z) = (0,0,0)}
&=
\evalat{
\begin{bmatrix}
0 & 1 \\
0 & z/(1 + x) \\
\end{bmatrix}
}{(x,y,z) = (0,0,0)}
&=
\begin{bmatrix}
0 & 1 \\
0 & 0 \\
\end{bmatrix}
\\
M_z
&=
\evalat{\dv{M}{z}}{(x,y,z) = (0,0,0)}
&=
\evalat{
\begin{bmatrix}
0 & 0 \\
1 & y/(1 + x) \\
\end{bmatrix}
}{(x,y,z) = (0,0,0)}
&=
\begin{bmatrix}
0 & 0 \\
1 & 0 \\
\end{bmatrix}
\\
\end{aligned}
$$
Remembering that the <Lie bracket of a matrix Lie group> is really simple, we can then observe the following <Lie bracket> relations between them:
$$
\begin{aligned}
[M_x, M_y] &= M_xM_y - M_yM_x &= \begin{bmatrix}0 & 1 \\ 0 & 0 \\\end{bmatrix} &- \begin{bmatrix}0 & -1 \\ 0 & 0 \\\end{bmatrix} &= \begin{bmatrix}0 & 2 \\ 0 & 0 \\\end{bmatrix} &= 2M_y\\
[M_x, M_z] &= M_xM_z - M_zM_x &= \begin{bmatrix}0 & 0 \\ -1 & 0 \\\end{bmatrix} &- \begin{bmatrix}0 & 0 \\ 1 & 0 \\\end{bmatrix} &= \begin{bmatrix}0 & 0 \\ -2 & 0 \\\end{bmatrix} &= -2M_z\\
[M_y, M_z] &= M_yM_z - M_zM_y &= \begin{bmatrix}1 & 0 \\ 0 & 0 \\\end{bmatrix} &- \begin{bmatrix}0 & 0 \\ 0 & 1 \\\end{bmatrix} &= \begin{bmatrix}1 & 0 \\ 0 & -1 \\\end{bmatrix} &= M_x\\
\end{aligned}
$$
One key thing to note is that the specific matrices $M_x$, $M_y$ and $M_z$ are not really fundamental: we could easily have had different matrices if we had chosen any other parametrization of the group.
TODO confirm: however, no matter which parametrization we choose, the <Lie bracket> relations between the three elements would always be the same, since it is the number of elements, and the definition of the <Lie bracket>, that is truly fundamental.
<Lie Groups, Physics, and Geometry by Robert Gilmore (2008)> Chapter 4.2 "How to linearize a Lie Group" then calculates the <exponential map> of the vector $xM_x + yM_y + zM_z$ as:
$$
I cosh(\theta) + M_x sinh(\theta)/\theta
$$
with:
$$
\theta^2 = x^2 + bc
$$
TODO now the natural question is: can we cover the entire Lie group with this exponential? <Lie Groups, Physics, and Geometry by Robert Gilmore (2008)> Chapter 7 "EXPonentiation" explains why not.
= Finite special general linear group
{parent=Special linear group}
= $SL(n, m)$
{synonym}
{title2}
Just like for the <finite general linear group>, the definition of special also works for finite fields, where 1 is the multiplicative identity!
Note that the definition of <orthogonal group> may not have such a clear finite analogue on the other hand.
= Isometry group
{parent=Important Lie group}
{wiki}
The <group (mathematics)> of all transformations that preserve some <bilinear form>, notable examples:
* <orthogonal group> preserves the <inner product>
* <unitary group> preserves a <Hermitian form>
* <Lorentz group> preserves the <Minkowski inner product>
= Lie algebra of a isometry group
{c}
{parent=Isometry group}
{wiki}
We can almost reach the <Lie algebra> of any <isometry group> in a single go. For every $X$ in the <Lie algebra> we must have:
$$
\forall v, w \in V, t \in \R (e^{tX}v|e^{tX}w) = (v|w)
$$
because $e^{tX}$ has to be in the isometry group by definition as shown at <Lie algebra of a matrix Lie group>{full}.
Then:
$$
\evalat{\dv{(e^{tX}v|e^{tX}w)}{t}}{0} = 0
\implies
\evalat{(Xe^{tX}v|e^{tX}w) + (e^{tX}v|Xe^{tX}w)}{0} = 0
\implies
(Xv|w) + (v|Xw) = 0
$$
so we reach:
$$
\forall v, w \in V (Xv|w) = -(v|Xw)
$$
With this relation, we can easily determine the <Lie algebra> of common isometries:
* <Lie algebra of O(n)>
Bibliography:
* <An Introduction to Tensors and Group Theory for Physicists by Nadir Jeevanjee (2011)> page 151
= Orthogonal group
{parent=Important Lie group}