Fill in SetTheory.Set.iProd_equiv_pi - #276
Merged
Merged
Conversation
gaearon
commented
Aug 7, 2025
|
|
||
| /-- Example 3.5.10 -/ | ||
| noncomputable abbrev SetTheory.Set.empty_iProd_equiv (X: (∅:Set) → Set) : iProd X ≃ Unit where | ||
| abbrev SetTheory.Set.empty_iProd_equiv (X: (∅:Set) → Set) : iProd X ≃ Unit where |
Contributor
Author
There was a problem hiding this comment.
Unrelated but this one is computable (maybe the only one?)
For example:
abbrev SetTheory.Set.empty_iProd_equiv (X: (∅:Set) → Set) : iProd X ≃ Unit where
toFun := fun t ↦ ()
invFun := fun x ↦ ⟨tuple fun e ↦ False.elim (not_mem_empty _ e.property), by apply tuple_mem_iProd⟩
left_inv := by
intro t
have h := (mem_iProd _).mp t.property
obtain ⟨x, ht⟩ := h
ext
rw [ht, tuple_inj]
ext e
have := not_mem_empty e
contradiction
right_inv := by
intro
simpNot included because the book has a "why" seemingly for a related question:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Since this isn't a part of the book, let's fill it in. It's a bit hard to guess how to produce an element satisfying
↑(Set.univ.pi fun i ↦ {x | x ∈ X i})anyway.I haven't filled other equivalences because the text is a bit ambiguous on whether they're all "why" or not.