Skip to content

Commit ee445e0

Browse files
committed
more
1 parent 41a7add commit ee445e0

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

Mathlib/Order/Cofinal.lean

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ theorem IsCofinal.mono {s t : Set α} (h : s ⊆ t) (hs : IsCofinal s) : IsCofin
5353
obtain ⟨b, hb, hb'⟩ := hs a
5454
exact ⟨b, h hb, hb'⟩
5555

56+
theorem IsCofinal.nonempty [Nonempty α] {s : Set α} (h : IsCofinal s) : s.Nonempty := by
57+
inhabit α
58+
obtain ⟨x, hx, _⟩ := h default
59+
exact ⟨x, hx⟩
60+
5661
end LE
5762

5863
section Preorder

0 commit comments

Comments
 (0)