Bilinear form #
This file defines a bilinear form over a module. Basic ideas such as orthogonality are also introduced, as well as reflexive, symmetric, non-degenerate and alternating bilinear forms. Adjoints of linear maps with respect to a bilinear form are also introduced.
A bilinear form on an R
-(semi)module M
, is a function from M × M
to R
,
that is linear in both arguments. Comments will typically abbreviate
"(semi)module" as just "module", but the definitions should be as general as
possible.
The result that there exists an orthogonal basis with respect to a symmetric,
nondegenerate bilinear form can be found in QuadraticForm.lean
with
exists_orthogonal_basis
.
Notations #
Given any term B
of type BilinForm
, due to a coercion, can use
the notation B x y
to refer to the function field, ie. B x y = B.bilin x y
.
In this file we use the following type variables:
M
,M'
, ... are modules over the semiringR
,M₁
,M₁'
, ... are modules over the ringR₁
,M₂
,M₂'
, ... are modules over the commutative semiringR₂
,M₃
,M₃'
, ... are modules over the commutative ringR₃
,V
, ... is a vector space over the fieldK
.
References #
Tags #
Bilinear form,
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.
BilinForm R M
inherits the scalar action by α
on R
if this is compatible with
multiplication.
When R
itself is commutative, this provides an R
-action via Algebra.id
.
Equations
- One or more equations did not get rendered due to their size.
Equations
- (_ : SMulCommClass α β (BilinForm R M)) = (_ : SMulCommClass α β (BilinForm R M))
Equations
- (_ : IsScalarTower α β (BilinForm R M)) = (_ : IsScalarTower α β (BilinForm R M))
Equations
- (_ : IsCentralScalar α (BilinForm R M)) = (_ : IsCentralScalar α (BilinForm R M))
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.
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.
Equations
- BilinForm.instInhabitedBilinForm = { default := 0 }
coeFn
as an AddMonoidHom
Equations
Instances For
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.
Auxiliary construction for the flip of a bilinear form, obtained by exchanging the left and
right arguments. This version is a LinearMap
; it is later upgraded to a LinearEquiv
in flipHom
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The flip of a bilinear form, obtained by exchanging the left and right arguments. This is a
less structured version of the equiv which applies to general (noncommutative) rings R
with a
distinguished commutative subring R₂
; over a commutative ring use flip
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The flip of a bilinear form over a ring, obtained by exchanging the left and right arguments,
here considered as an ℕ
-linear equivalence, i.e. an additive equivalence.
Equations
- BilinForm.flip' = BilinForm.flipHom ℕ
Instances For
The flip
of a bilinear form over a commutative ring, obtained by exchanging the left and
right arguments.
Equations
- BilinForm.flip = BilinForm.flipHom R₂
Instances For
The restriction of a bilinear form on a submodule.
Equations
- One or more equations did not get rendered due to their size.