Documentation

Mathlib.Analysis.InnerProductSpace.Orientation

Orientations of real inner product spaces. #

This file provides definitions and proves lemmas about orientations of real inner product spaces.

Main definitions #

Main theorems #

The change-of-basis matrix between two orthonormal bases with the same orientation has determinant 1.

The change-of-basis matrix between two orthonormal bases with the opposite orientations has determinant -1.

Two orthonormal bases with the same orientation determine the same "determinant" top-dimensional form on E, and conversely.

Two orthonormal bases with opposite orientations determine opposite "determinant" top-dimensional forms on E.

OrthonormalBasis.adjustToOrientation, applied to an orthonormal basis, preserves the property of orthonormality.

Given an orthonormal basis and an orientation, return an orthonormal basis giving that orientation: either the original basis, or one constructed by negating a single (arbitrary) basis vector.

Equations
Instances For

    adjustToOrientation gives an orthonormal basis with the required orientation.

    Every basis vector from adjustToOrientation is either that from the original basis or its negation.

    An orthonormal basis, indexed by Fin n, with the given orientation.

    Equations
    Instances For
      theorem Orientation.volumeForm_def {E : Type u_2} [NormedAddCommGroup E] [InnerProductSpace Real E] {n : Nat} [_i : Fact (Eq (Module.finrank Real E) n)] (o : Orientation Real E (Fin n)) :
      Eq o.volumeForm (Nat.casesAuxOn (motive := fun (a : Nat) => Eq n aAlternatingMap Real E Real (Fin n)) n (fun (h : Eq n 0) => Eq.ndrec (motive := fun {n : Nat} => [_i : Fact (Eq (Module.finrank Real E) n)] → Orientation Real E (Fin n)AlternatingMap Real E Real (Fin n)) (fun [Fact (Eq (Module.finrank Real E) 0)] (o : Orientation Real E (Fin 0)) => let opos := AlternatingMap.constOfIsEmpty Real E (Fin 0) 1; .by_cases (fun (x : Eq o Module.Oriented.positiveOrientation) => opos) fun (x : Eq o (Neg.neg Module.Oriented.positiveOrientation)) => Neg.neg opos) o) (fun (n_1 : Nat) (h : Eq n (HAdd.hAdd n_1 1)) => Eq.ndrec (motive := fun {n : Nat} => [_i : Fact (Eq (Module.finrank Real E) n)] → Orientation Real E (Fin n)AlternatingMap Real E Real (Fin n)) (fun [Fact (Eq (Module.finrank Real E) (HAdd.hAdd n_1 1))] (o : Orientation Real E (Fin (HAdd.hAdd n_1 1))) => (Orientation.finOrthonormalBasis o).toBasis.det) o) )
      @[irreducible]

      The volume form on an oriented real inner product space, a nonvanishing top-dimensional alternating form uniquely defined by compatibility with the orientation and inner product structure.

      Equations
      Instances For

        The volume form on an oriented real inner product space can be evaluated as the determinant with respect to any orthonormal basis of the space compatible with the orientation.

        The volume form on an oriented real inner product space can be evaluated as the determinant with respect to any orthonormal basis of the space compatible with the orientation.

        theorem Orientation.abs_volumeForm_apply_le {E : Type u_1} [NormedAddCommGroup E] [InnerProductSpace Real E] {n : Nat} [_i : Fact (Eq (Module.finrank Real E) n)] (o : Orientation Real E (Fin n)) (v : Fin nE) :
        LE.le (abs (DFunLike.coe o.volumeForm v)) (Finset.univ.prod fun (i : Fin n) => Norm.norm (v i))

        Let v be an indexed family of n vectors in an oriented n-dimensional real inner product space E. The output of the volume form of E when evaluated on v is bounded in absolute value by the product of the norms of the vectors v i.

        theorem Orientation.volumeForm_apply_le {E : Type u_1} [NormedAddCommGroup E] [InnerProductSpace Real E] {n : Nat} [_i : Fact (Eq (Module.finrank Real E) n)] (o : Orientation Real E (Fin n)) (v : Fin nE) :
        theorem Orientation.abs_volumeForm_apply_of_pairwise_orthogonal {E : Type u_1} [NormedAddCommGroup E] [InnerProductSpace Real E] {n : Nat} [_i : Fact (Eq (Module.finrank Real E) n)] (o : Orientation Real E (Fin n)) {v : Fin nE} (hv : Pairwise fun (i j : Fin n) => Eq (Inner.inner (v i) (v j)) 0) :
        Eq (abs (DFunLike.coe o.volumeForm v)) (Finset.univ.prod fun (i : Fin n) => Norm.norm (v i))

        Let v be an indexed family of n orthogonal vectors in an oriented n-dimensional real inner product space E. The output of the volume form of E when evaluated on v is, up to sign, the product of the norms of the vectors v i.

        The output of the volume form of an oriented real inner product space E when evaluated on an orthonormal basis is ±1.

        The volume form is invariant under pullback by a positively-oriented isometric automorphism.