Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit 556483f

Browse files
committed
feat(category_theory/limits): (co)equalizers in the opposite category (#11874)
1 parent 7a2a546 commit 556483f

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/category_theory/limits/opposites.lean

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,20 @@ lemma has_finite_products_opposite [has_finite_coproducts C] :
148148
apply_instance,
149149
end }
150150

151+
lemma has_equalizers_opposite [has_coequalizers C] : has_equalizers Cᵒᵖ :=
152+
begin
153+
haveI : has_colimits_of_shape walking_parallel_pair.{v}ᵒᵖ C :=
154+
has_colimits_of_shape_of_equivalence walking_parallel_pair_op_equiv.{v},
155+
apply_instance
156+
end
157+
158+
lemma has_coequalizers_opposite [has_equalizers C] : has_coequalizers Cᵒᵖ :=
159+
begin
160+
haveI : has_limits_of_shape walking_parallel_pair.{v}ᵒᵖ C :=
161+
has_limits_of_shape_of_equivalence walking_parallel_pair_op_equiv.{v},
162+
apply_instance
163+
end
164+
151165
local attribute [instance] fin_category_opposite
152166

153167
lemma has_finite_colimits_opposite [has_finite_limits C] :

0 commit comments

Comments
 (0)