Problem-solving strategies for categories functors in category theory
Use this skill when working on categories-functors problems in category theory.
Verify Category Axioms
theorem assoc : (f ≫ g) ≫ h = f ≫ (g ≫ h) := Category.assocCheck Functor Properties
theorem comp : F.map (g ≫ f) = F.map g ≫ F.map f := F.map_compFunctor Types
Common Functors
Verify with Lean 4
lake build checks.claude/skills/lean4-functors/SKILL.md for exact syntax# Lean 4 with Mathlib: import CategoryTheory.Category.Basic
# Lean 4: theorem map_comp (F : C ⥤ D) : F.map (g ≫ f) = F.map g ≫ F.map f := F.map_comp
lake build # Compiler-in-the-loop verification
See .claude/skills/math-mode/SKILL.md for full tool documentation.