File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -143,10 +143,14 @@ noncomputable abbrev SetTheory.Set.prod_associator (X Y Z:Set) : (X ×ˢ Y) ×ˢ
143
143
left_inv := sorry
144
144
right_inv := sorry
145
145
146
- /-- Connections with the Mathlib set product -/
146
+ /--
147
+ Connections with the Mathlib set product, which consists of Lean pairs like `(x, y)`
148
+ equipped with a proof that `x` is in the left set, and `y` is in the right set.
149
+ Lean pairs like `(x, y)` are similar to our `OrderedPair`, but more general.
150
+ -/
147
151
noncomputable abbrev SetTheory.Set.prod_equiv_prod (X Y:Set) :
148
152
((X ×ˢ Y):_root_.Set Object) ≃ (X:_root_.Set Object) ×ˢ (Y:_root_.Set Object) where
149
- toFun := sorry
153
+ toFun := fun z ↦ ⟨(fst z, snd z), by simp⟩
150
154
invFun := sorry
151
155
left_inv := sorry
152
156
right_inv := sorry
You can’t perform that action at this time.
0 commit comments