The General Linear group $GL(n, R)$ #
This file defines the elements of the General Linear group Matrix.GeneralLinearGroup n R
,
consisting of all invertible n
by n
R
-matrices.
Main definitions #
Matrix.GeneralLinearGroup
is the type of matrices over R which are units in the matrix ring.Matrix.GLPos
gives the subgroup of matrices with positive determinant (over a linear ordered ring).
Tags #
matrix group, group, matrix inverse
GL n R
is the group of n
by n
R
-matrices with unit determinant.
Defined as a subtype of matrices
Equations
- Matrix.termGL = Lean.ParserDescr.node `Matrix.termGL 1024 (Lean.ParserDescr.symbol "GL")
Instances For
This instance is here for convenience, but is not the simp-normal form.
The determinant of a unit matrix is itself a unit.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The GL n R
and Matrix.GeneralLinearGroup R n
groups are multiplicatively equivalent
Equations
- Matrix.GeneralLinearGroup.toLin = Units.mapEquiv (AlgEquiv.toMulEquiv Matrix.toLinAlgEquiv')
Instances For
Given a matrix with invertible determinant we get an element of GL n R
Equations
Instances For
Given a matrix with unit determinant we get an element of GL n R
Equations
Instances For
Given a matrix with non-zero determinant over a field, we get an element of GL n K
Equations
Instances For
An element of the matrix general linear group on (n) [Fintype n]
can be considered as an
element of the endomorphism general linear group on n → R
.
Equations
- Matrix.GeneralLinearGroup.toLinear = Units.mapEquiv (RingEquiv.toMulEquiv (AlgEquiv.toRingEquiv Matrix.toLinAlgEquiv'))
Instances For
The map from SL(n) to GL(n) underlying the coercion, forgetting the value of the determinant.
Instances For
Equations
- Matrix.SpecialLinearGroup.hasCoeToGeneralLinearGroup = { coe := Matrix.SpecialLinearGroup.coeToGL }
This is the subgroup of nxn
matrices with entries over a
linear ordered ring and positive determinant.
Equations
- Matrix.GLPos n R = Subgroup.comap Matrix.GeneralLinearGroup.det (Units.posSubgroup R)
Instances For
Formal operation of negation on general linear group on even cardinality n
given by negating
each element.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Matrix.SpecialLinearGroup n R
embeds into GL_pos n R
Equations
- Matrix.SpecialLinearGroup.toGLPos = { toOneHom := { toFun := fun (A : Matrix.SpecialLinearGroup n R) => { val := ↑A, property := ⋯ }, map_one' := ⋯ }, map_mul' := ⋯ }
Instances For
Equations
- One or more equations did not get rendered due to their size.
Coercing a Matrix.SpecialLinearGroup
via GL_pos
and GL
is the same as coercing straight to
a matrix.
The matrix [a, -b; b, a] (inspired by multiplication by a complex number); it is an element of
$GL_2(R)$ if a ^ 2 + b ^ 2
is nonzero.
Equations
- Matrix.planeConformalMatrix a b hab = Matrix.GeneralLinearGroup.mkOfDetNeZero (Matrix.of ![![a, -b], ![b, a]]) ⋯