Quadratic form on product and pi types #
Main definitions #
QuadraticForm.prod Q₁ Q₂
: the quadratic form constructed elementwise on a productQuadraticForm.pi Q
: the quadratic form constructed elementwise on a pi type
Main results #
QuadraticForm.Equivalent.prod
,QuadraticForm.Equivalent.pi
: quadratic forms are equivalent if their components are equivalentQuadraticForm.nonneg_prod_iff
,QuadraticForm.nonneg_pi_iff
: quadratic forms are positive- semidefinite if and only if their components are positive-semidefinite.QuadraticForm.posDef_prod_iff
,QuadraticForm.posDef_pi_iff
: quadratic forms are positive- definite if and only if their components are positive-definite.
Implementation notes #
Many of the lemmas in this file could be generalized into results about sums of positive and
non-negative elements, and would generalize to any map Q
where Q 0 = 0
, not just quadratic
forms specifically.
Construct a quadratic form on a product of two modules from the quadratic form on each module.
Instances For
An isometry between quadratic forms generated by QuadraticForm.prod
can be constructed
from a pair of isometries between the left and right parts.
Equations
- e₁.prod e₂ = { toLinearEquiv := e₁.prod e₂.toLinearEquiv, map_app' := ⋯ }
Instances For
LinearMap.inl
as an isometry.
Equations
- QuadraticMap.Isometry.inl Q₁ Q₂ = { toLinearMap := LinearMap.inl R M₁ M₂, map_app' := ⋯ }
Instances For
LinearMap.inr
as an isometry.
Equations
- QuadraticMap.Isometry.inr Q₁ Q₂ = { toLinearMap := LinearMap.inr R M₁ M₂, map_app' := ⋯ }
Instances For
LinearMap.fst
as an isometry, when the second space has the zero quadratic form.
Equations
- QuadraticMap.Isometry.fst M₂ Q₁ = { toLinearMap := LinearMap.fst R M₁ M₂, map_app' := ⋯ }
Instances For
LinearMap.snd
as an isometry, when the first space has the zero quadratic form.
Equations
- QuadraticMap.Isometry.snd M₁ Q₂ = { toLinearMap := LinearMap.snd R M₁ M₂, map_app' := ⋯ }
Instances For
LinearEquiv.prodComm
is isometric.
Equations
Instances For
LinearEquiv.prodProdProdComm
is isometric.
Equations
Instances For
If a product is anisotropic then its components must be. The converse is not true.
Construct a quadratic form on a family of modules from the quadratic form on each module.
Equations
Instances For
An isometry between quadratic forms generated by QuadraticMap.pi
can be constructed
from a pair of isometries between the left and right parts.
Equations
- QuadraticMap.IsometryEquiv.pi e = { toLinearEquiv := LinearEquiv.piCongrRight fun (i : ι) => (e i).toLinearEquiv, map_app' := ⋯ }
Instances For
LinearMap.single
as an isometry.
Equations
Instances For
LinearMap.proj
as an isometry, when all but one quadratic form is zero.
Equations
Instances For
Note that QuadraticMap.Isometry.id
would not be well-typed as the RHS.
Note that 0 : 0 →qᵢ Q
alone would not be well-typed as the RHS.
If a family is anisotropic then its components must be. The converse is not true.