Problem-solving strategies for natural transformations in category theory
Use this skill when working on natural-transformations problems in category theory.
Verify Naturality
theorem nat : η.app B ≫ G.map f = F.map f ≫ η.app A := η.naturalityComponent Analysis
def η : F ⟶ G where app := fun X => ...Natural Isomorphism
Functor Category
CategoryTheory.NatTrans.vcompCategoryTheory.NatTrans.hcompYoneda Lemma Application
CategoryTheory.yonedaEquiv.claude/skills/lean4-nat-trans/SKILL.md for exact syntax# Lean 4: theorem nat : η.app B ≫ G.map f = F.map f ≫ η.app A := η.naturality
# Lean 4: def η : F ⟶ G where app := fun X => component_X
# Lean 4: CategoryTheory.yonedaEquiv -- Yoneda lemma
lake build # Compiler-in-the-loop verification
See .claude/skills/math-mode/SKILL.md for full tool documentation.