Documentation

Mathlib.Algebra.Homology.SpectralSequence.ComplexShape

Complex shapes for pages of spectral sequences #

In this file, we define complex shapes which correspond to pages of spectral sequences:

For u : ℤ × ℤ, this is the complex shape on ℕ × ℕ, which connects a to b when the equality a + u = b holds in ℤ × ℤ.

Equations
Instances For
    @[simp]
    theorem ComplexShape.spectralSequenceNat_rel_iff (u : ℤ × ℤ) (a b : ℕ × ℕ) :
    (spectralSequenceNat u).Rel a b ↔ ↑a.fst + u.fst = ↑b.fst ∧ ↑a.snd + u.snd = ↑b.snd

    For l : ℕ and u : ℤ × ℤ, this is the complex shape on ℤ × Fin l, which connects a to b when the equality a + u = b holds in ℤ × ℤ.

    Equations
    Instances For
      @[simp]
      theorem ComplexShape.spectralSequenceFin_rel_iff {l : ℕ} (u : ℤ × ℤ) (a b : ℤ × Fin l) :
      (spectralSequenceFin l u).Rel a b ↔ a.fst + u.fst = b.fst ∧ ↑↑a.snd + u.snd = ↑↑b.snd