-
Notifications
You must be signed in to change notification settings - Fork 355
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(CategoryTheory/Triangulated/Adjunction): the left adjoint of a triangulated functor is triangulated #20543
base: master
Are you sure you want to change the base?
Conversation
Co-authored-by: Joël Riou <[email protected]>
…r-community/mathlib4 into SM.adjointTriangulated
…in' into SM.adjointTriangulated2
PR summary 0fa5895c52Import changes exceeding 2%
|
File | Base Count | Head Count | Change |
---|---|---|---|
Mathlib.CategoryTheory.Triangulated.Adjunction | 1105 | 1171 | +66 (+5.97%) |
Mathlib.CategoryTheory.Shift.Pullback | 681 | 685 | +4 (+0.59%) |
Mathlib.CategoryTheory.Shift.Opposite | 806 | 810 | +4 (+0.50%) |
Import changes for all files
Files | Import difference |
---|---|
Mathlib.Algebra.Homology.DerivedCategory.Ext.ExactSequences |
2 |
Mathlib.CategoryTheory.Triangulated.Yoneda |
3 |
7 filesMathlib.CategoryTheory.Triangulated.Opposite.Functor Mathlib.CategoryTheory.Triangulated.Opposite.Pretriangulated Mathlib.CategoryTheory.Shift.ShiftedHomOpposite Mathlib.CategoryTheory.Triangulated.Opposite.Triangle Mathlib.CategoryTheory.Shift.Opposite Mathlib.CategoryTheory.Triangulated.Opposite.Basic Mathlib.CategoryTheory.Shift.Pullback |
4 |
Mathlib.CategoryTheory.Triangulated.Adjunction |
66 |
Declarations diff
+ PullbackShift.adjunction
+ PullbackShift.functor
+ PullbackShift.natIsoComp
+ PullbackShift.natIsoId
+ PullbackShift.natTrans
+ instance : NatTrans.CommShift (PullbackShift.natIsoComp φ F G).hom A
+ instance : NatTrans.CommShift (PullbackShift.natIsoId C φ).hom A
+ isTriangulated_leftAdjoint
+ mk''
++ commShift_op
+++ on
-+++ commShiftPullback
You can run this locally as follows
## summary with just the declaration names:
./scripts/declarations_diff.sh <optional_commit>
## more verbose report:
./scripts/declarations_diff.sh long <optional_commit>
The doc-module for script/declarations_diff.sh
contains some details about this script.
Decrease in tech debt: (relative, absolute) = (3.00, 0.00)
Current number | Change | Type |
---|---|---|
1453 | -3 | erw |
Current commit 0fa5895c52
Reference commit 1a9143ba4b
You can run this locally as
./scripts/technical-debt-metrics.sh pr_summary
- The
relative
value is the weighted sum of the differences with weight given by the inverse of the current value of the statistic. - The
absolute
value is therelative
value divided by the total sum of the inverses of the current values (i.e. the weighted average of the differences).
This PR/issue depends on: |
If a functor
G : D ⥤ C
between pretriangulated categories is triangulated, and if we have an adjunctionF ⊣ G
(that commutes with the shifts), thenF
is also a triangulated functor.We prove this from the symmetric statement (
F
triangulated impliesG
triangulated) using opposite categories.CommShift
structures on adjunctions are compatible with opposites and pullbacks #20363