Symbolic Computation in Theoretical Physics with Python
SageMath
SageMath (Stein et al. (2024)) is an open-source system that combines many powerful mathematical software packages into one interface. It provides tools for symbolic computation, numerical analysis, plotting, and more, making it highly useful for both research and education in mathematics, physics, and engineering.
Basics
Fundamental operations, symbolic computation, and core mathematical structures.
Arithmetic operations
Support for basic arithmetic operations:
Symbolic expressions
Support for symbolic expressions:
Calculus
SageMath provides tools for symbolic calculus such as differentiation and integration. You can compute derivatives and integrals of functions symbolically:
Differential equations
SageMath can solve differential equations symbolically:
Linear algebra
SageMath handles matrix operations, such as addition, multiplication, and finding eigenvalues:
# Validation of eigenvalue equation
for eigenvalue, (eigenvector, *_), _ in C.eigenvectors_right():
display((C, eigenvector, eigenvalue, C * eigenvector == eigenvalue * eigenvector))
Group theory
SageMath includes tools for working with groups:
Differentiable manifolds
SageMath allows for computations in differential geometry, including tangent vectors, differential forms, and more:
Advanced
Exploring advanced mathematics in SageMath, including group theory, manifolds, Lie groups, and Lie algebras. This section broadly follows (Keski-Vakkuri, Montonen, and Panero 2022).
Group theory
We begin by exploring finite groups, followed by an introduction to free groups and their presentation. Finally, we examine continuous groups and group actions.
Smallest finite groups
We present the list of all groups of finite order \(N \leq 8\).
Order N = 1
Order N = 2
Order N = 3
Order N = 4
* a b c d
+--------
a| a b c d
b| b c d a
c| c d a b
d| d a b c
* a b c d
+--------
a| a b c d
b| b a d c
c| c d a b
d| d c b a
Order N = 5
Order N = 6
* a b c d e f
+------------
a| a b c d e f
b| b c d e f a
c| c d e f a b
d| d e f a b c
e| e f a b c d
f| f a b c d e
* a b c d e f
+------------
a| a b c d e f
b| b c a e f d
c| c a b f d e
d| d e f a b c
e| e f d b c a
f| f d e c a b
* a b c d e f
+------------
a| a b c d e f
b| b a d c f e
c| c e a f b d
d| d f b e a c
e| e c f a d b
f| f d e b c a
Order N = 7
Order N = 8
* a b c d e f g h
+----------------
a| a b c d e f g h
b| b c d e f g h a
c| c d e f g h a b
d| d e f g h a b c
e| e f g h a b c d
f| f g h a b c d e
g| g h a b c d e f
h| h a b c d e f g
* a b c d e f g h
+----------------
a| a b c d e f g h
b| b a d c f e h g
c| c d e f g h a b
d| d c f e h g b a
e| e f g h a b c d
f| f e h g b a d c
g| g h a b c d e f
h| h g b a d c f e
* a b c d e f g h
+----------------
a| a b c d e f g h
b| b a d c f e h g
c| c d a b g h e f
d| d c b a h g f e
e| e f g h a b c d
f| f e h g b a d c
g| g h e f c d a b
h| h g f e d c b a
* a b c d e f g h
+----------------
a| a b c d e f g h
b| b a d c f e h g
c| c g a e d h b f
d| d h b f c g a e
e| e f g h a b c d
f| f e h g b a d c
g| g c e a h d f b
h| h d f b g c e a
* a b c d e f g h
+----------------
a| a b c d e f g h
b| b c d a h e f g
c| c d a b g h e f
d| d a b c f g h e
e| e f g h c d a b
f| f g h e b c d a
g| g h e f a b c d
h| h e f g d a b c
# Z8, Z4 x Z2, Z2 x Z2 x Z2, D4, Q non-isomorphic
from itertools import combinations
groups = [Z8, Z4xZ2, Z2xZ2xZ2, D4, Q]
for group1, group2 in combinations(groups, 2):
if not group1.is_isomorphic(group2):
display(f'{group1}, {group2} are not isomorphic.')
# Q proper subgroups
for G in Q.subgroups():
if G.order() == 2:
if G.is_isomorphic(Z2) and G.is_normal():
display(f'{G} is isomorphic to {Z2} and a normal subgroup of {Q}.')
elif G.order() == 4:
if G.is_isomorphic(Z4) and G.is_normal():
display(f'{G} is isomorphic to {Z4} and a normal subgroup of {Q}.')
Symmetric groups
We present symmetric groups of different orders along with their properties.
Definitions
Multiplication
Signature
Alternating groups
Cayley’s theorem
Every finite group of order \(N\) is isomorphic to a subgroup of \(S_N\).
Free groups
A free group \(G\) is defined as follows:
- \(X=\left\{g_1, g_2, \ldots, g_n\right\}\) a subset of \(G\)
- \(g \in G - \{e\}\) can be uniquely written as \(g=g_{j_1}^{i_1} g_{j_2}^{i_2} \cdots g_{j_m}^{i_m}\) with \(i_k \in \mathbb{Z} \backslash\{0\}\) and \(g_{j_i} \neq g_{j_{i+1}}\)
A relation \(r\) is a constraint \(r \equiv g_{j_2}^{i_1} g_{j_2}^{i_2} \cdots g_{j_m}^{i_m}=e\).
The presentation of the group \(G\) is defined as \(\left\langle g_1, g_2, \ldots, g_n \mid r_1, r_2, \ldots, r_m\right\rangle\).
# G = <a,b| a*b*a^(-1)*b^(-1)>
F.<a, b> = FreeGroup(2)
G = FreeGroup(['a', 'b']) / [a*b*a^(-1)*b^(-1)]
G
Lie groups
A Lie group is a continuous group whose group manifold is differentiable. The group \(\operatorname{GL}(n, \mathbb{C})\) and its subgroups are called matrix Lie groups.