Independence in Projective Space #
In this file we define independence and dependence of families of elements in projective space.
Implementation Details #
We use an inductive definition to define the independence of points in projective space, where the only constructor assumes an independent family of vectors from the ambient vector space. Similarly for the definition of dependence.
Results #
- A family of elements is dependent if and only if it is not independent.
- Two elements are dependent if and only if they are equal.
Future Work #
- Define collinearity in projective space.
- Prove the axioms of a projective geometry are satisfied by the dependence relation.
- Define projective linear subspaces.
A linearly independent family of nonzero vectors gives an independent family of points in projective space.
- mk: ∀ {ι : Type u_1} {K : Type u_2} {V : Type u_3} [inst : DivisionRing K] [inst_1 : AddCommGroup V] [inst_2 : Module K V] (f : ι → V) (hf : ∀ (i : ι), f i ≠ 0), LinearIndependent K f → Projectivization.Independent fun (i : ι) => Projectivization.mk K (f i) ⋯
Instances For
A family of points in a projective space is independent if and only if the representative vectors determined by the family are linearly independent.
A family of points in projective space is independent if and only if the family of submodules which the points determine is independent in the lattice-theoretic sense.
A linearly dependent family of nonzero vectors gives a dependent family of points in projective space.
- mk: ∀ {ι : Type u_1} {K : Type u_2} {V : Type u_3} [inst : DivisionRing K] [inst_1 : AddCommGroup V] [inst_2 : Module K V] (f : ι → V) (hf : ∀ (i : ι), f i ≠ 0), ¬LinearIndependent K f → Projectivization.Dependent fun (i : ι) => Projectivization.mk K (f i) ⋯
Instances For
A family of points in a projective space is dependent if and only if their representatives are linearly dependent.
Dependence is the negation of independence.
Independence is the negation of dependence.
Two points in a projective space are dependent if and only if they are equal.
Two points in a projective space are independent if and only if the points are not equal.