The adjugate of an invertible matrix #
The adjugate of an invertible matrix is invertible, so Matrix.adjugate restricts to a map
GL n R → GL n R. Its inverse is exhibited directly, without dividing by the determinant:
adjugate is anti-multiplicative and sends 1 to 1, so adjugate g⁻¹ inverts adjugate g
on the nose. That keeps the construction over an arbitrary commutative ring — no field, no
det ≠ 0 side condition, and nothing to discharge at a call site.
Over a group of determinant-one matrices it is the inverse, and in size two it is an involution. Those are the two ingredients a Hecke-pair anti-involution needs from the adjugate; the anti-involution itself also requires stability of the group and the monoid under the map, which is proved where those objects live, not here.
Main definitions #
TauCeti.adjugateGL: the adjugate as a mapGL n R → GL n R.
Main results #
TauCeti.adjugateGL_one,TauCeti.adjugateGL_mul:adj(1) = 1andadj(gh) = adj(h) adj(g).TauCeti.adjugateGL_eq_inv: on determinant one,adj(g) = g⁻¹.TauCeti.adjugateGL_mapGL: on a special-linear image,adj(mapGL σ) = mapGL σ⁻¹.TauCeti.adjugateGL_adjugateGL: in size two,adjis an involution.
References #
- Adapted from the AINTLIB
LeanModularFormsproject (Chris Birkbeck), Apache-2.0,HeckeRIngs/GL2/HeckeActionGeneral.leanat commit2baa76f742bdb4fb8ee323fabba41203bd390e08, declarationsGL_adjugate,GL_adjugate_val,GL_adjugate_mul,GL_adjugate_involutiveandGL_adjugate_eq_inv_of_det_one. The source is stated forGL (Fin 2) ℚand builds the element with adet ≠ 0obligation; here the inverse is exhibited directly, which removes that obligation and generalises the statements toGL n Rover a commutative ring.
The adjugate of an invertible matrix, again invertible.
The inverse is adjugate g⁻¹ rather than anything built from the determinant: adjugate is
anti-multiplicative, so the two adjugates multiply to adjugate (g⁻¹ g) = adjugate 1 = 1.
Equations
Instances For
The adjugate fixes the identity.
The adjugate is anti-multiplicative, inherited entrywise from Matrix.adjugate.
On determinant one the adjugate is the inverse. This is what makes it restrict to a group of determinant-one matrices, where it is then an anti-automorphism.
Adjugate is inversion on a special-linear image. An element of SL n R has determinant
one in every R-algebra S, so adjugateGL is inversion on its image, and mapGL S is a
monoid map. This is adjugateGL_eq_inv in the form its consumers meet: the determinant
hypothesis is discharged once here rather than at each call site.
In size two the adjugate is an involution. adjugate squares to
det ^ (card n - 2) • id, and the size-two hypothesis makes that exponent vanish.