The special linear group

LieGroups.SpecialLinearGroup โ€” Type
SpecialLinear{๐”ฝ,T}

The special linear group $\mathrm{SL}(n,๐”ฝ)$ is the group of all invertible matrices with unit determinant in $๐”ฝ^{nร—n}$ and the MatrixMultiplicationGroupOperation as group operation.

The Lie algebra $\mathfrak sl(n, ๐”ฝ) = T_e \mathrm{SL}(n,๐”ฝ)$ is the set of all matrices in $๐”ฝ^{nร—n}$ with trace of zero. By default, tangent vectors $X_p โˆˆ T_p \mathrm{SL}(n,๐”ฝ)$ for $p โˆˆ \mathrm{SL}(n,๐”ฝ)$ are represented with their corresponding Lie algebra vector $X_e = p^{-1}X_p โˆˆ ๐”ฐ๐”ฉ(n, ๐”ฝ)$.

Constructor

GeneralLinearGroup(n::Int, field=โ„; kwargs...)

Generate the general linear group group on $๐”ฝ^{nร—n}$. All keyword arguments in kwargs... are passed on to DeterminantOneMatrices.

source
ManifoldsBase.hat! โ€” Method
X = hat(๐”ค::LieAlgebra{โ„,MatrixMultiplicationGroupOperation,<:SpecialLinearGroup}, c)
hat!(๐”ค::LieAlgebra{โ„,MatrixMultiplicationGroupOperation,<:SpecialLinearGroup}, X, c)

Compute the hat map $(โ‹…)^{\wedge} : โ„^{n^2-1} โ†’ ๐”ค$ that turns a vector of coordinates c into a tangent vector in the Lie algebra.

The formula on the Lie algebra $๐”ค$ of the SpecialLinearGroup(n) is given by reshaping $c โˆˆ โ„^{n^2-1}$ into an $n$-by$n$ matrix $X$ with the final entry X[n,n] initialised to zero and then set to the trace of this initial matrix.

This can be computed in-place of X.

source
ManifoldsBase.hat โ€” Method
X = hat(๐”ค::LieAlgebra{โ„,MatrixMultiplicationGroupOperation,<:SpecialLinearGroup}, c)
hat!(๐”ค::LieAlgebra{โ„,MatrixMultiplicationGroupOperation,<:SpecialLinearGroup}, X, c)

Compute the hat map $(โ‹…)^{\wedge} : โ„^{n^2-1} โ†’ ๐”ค$ that turns a vector of coordinates c into a tangent vector in the Lie algebra.

The formula on the Lie algebra $๐”ค$ of the SpecialLinearGroup(n) is given by reshaping $c โˆˆ โ„^{n^2-1}$ into an $n$-by$n$ matrix $X$ with the final entry X[n,n] initialised to zero and then set to the trace of this initial matrix.

This can be computed in-place of X.

source
ManifoldsBase.vee! โ€” Method
c = vee(๐”ค::LieAlgebra{โ„,MatrixMultiplicationGroupOperation,<:SpecialLinearGroup}, X)
vee!(๐”ค::LieAlgebra{โ„,MatrixMultiplicationGroupOperation,<:SpecialLinearGroup}, c, X)

Compute the vee map $(โ‹…)^{\vee}: \mathfrak g โ†’ โ„^{n^2-1}$ that maps a tangent vector from the Lie algebra to a vector of coordinates c.

The formula on the Lie algebra $๐”ค$ of the SpecialLinearGroup(n) is given by reshaping $X โˆˆ โ„^{nร—n}$ into a vector and omitting the last entry, since that can be reconstructed by considering that $X$ has to be of trace zero.

This can be computed in-place of c.

source
ManifoldsBase.vee โ€” Method
c = vee(๐”ค::LieAlgebra{โ„,MatrixMultiplicationGroupOperation,<:SpecialLinearGroup}, X)
vee!(๐”ค::LieAlgebra{โ„,MatrixMultiplicationGroupOperation,<:SpecialLinearGroup}, c, X)

Compute the vee map $(โ‹…)^{\vee}: \mathfrak g โ†’ โ„^{n^2-1}$ that maps a tangent vector from the Lie algebra to a vector of coordinates c.

The formula on the Lie algebra $๐”ค$ of the SpecialLinearGroup(n) is given by reshaping $X โˆˆ โ„^{nร—n}$ into a vector and omitting the last entry, since that can be reconstructed by considering that $X$ has to be of trace zero.

This can be computed in-place of c.

source