English
Let X be an object of the derived category of C. If X is GE in degree n, there exists a cochain complex K with K.IsGE n and a Nonempty isomorphism X ≅ Q.obj K.
Русский
Пусть X — объект производной категории. Если X GE в степени n, существует когомплекс K с K.IsGE n и ненулевая изоморфность X ≅ Q.obj K.
LaTeX
$$$\forall (X : \text{DerivedCategory } C) (n : \mathbb{Z}),[X.IsGE n]\;\exists K, K.IsGE n\;\land\; Nonempty (X \cong Q.obj K)$$$
Lean4
theorem exists_iso_Q_obj_of_isGE (X : DerivedCategory C) (n : ℤ) [hX : X.IsGE n] :
∃ (K : CochainComplex C ℤ) (_ : K.IsStrictlyGE n), Nonempty (X ≅ Q.obj K) :=
by
obtain ⟨K, e, _⟩ := hX
exact ⟨K, inferInstance, ⟨e⟩⟩