Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions analysis/Analysis/Section_8_4.lean
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ def CartesianProduct.equiv {I U: Type} (X : I β†’ Set U) :
def Function.equiv {I X:Type} : (βˆ€ _:I, X) ≃ (I β†’ X) := {
toFun f := f
invFun f := f
left_inv f := rfl
right_inv f := rfl
left_inv _ := rfl
right_inv _ := rfl
}

def product_zero_equiv {X: Fin 0 β†’ Type} : (βˆ€ i:Fin 0, X i) ≃ PUnit := {
Expand Down Expand Up @@ -147,7 +147,8 @@ theorem exists_function {X Y : Type} {P : X β†’ Y β†’ Prop} (h: βˆ€ x, βˆƒ y, P
from `exists_function`, avoiding previous results that relied more explicitly
on the axiom of choice. -/
theorem axiom_of_choice_from_exists_function {I: Type} {X: I β†’ Type} (h : βˆ€ i, Nonempty (X i)) :
Nonempty (βˆ€ i, X i) := ⟨ fun i ↦ (h i).some ⟩
Nonempty (βˆ€ i, X i) := by
sorry

/-- Exercise 8.4.2 -/
theorem exists_set_singleton_intersect {I U:Type} {X: I β†’ Set U} (h: Set.PairwiseDisjoint .univ X)
Expand Down
Loading