We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c89b4b8 commit 98f778cCopy full SHA for 98f778c
1 file changed
Mathlib/Data/Set/Countable.lean
@@ -354,6 +354,9 @@ theorem uncountable_univ_iff : (@univ α).Uncountable ↔ Uncountable α := by
354
theorem uncountable_univ [h : Uncountable α] : (@univ α).Uncountable :=
355
uncountable_univ_iff.2 h
356
357
+protected lemma Uncountable.mono {s t : Set α} (h : s ⊆ t) : s.Uncountable → t.Uncountable :=
358
+ mt (·.mono h)
359
+
360
theorem uncountable_of_countable_compl [Uncountable α] {s : Set α} (hs : sᶜ.Countable) :
361
s.Uncountable := fun h =>
362
Set.uncountable_univ (α := α) (by simpa using hs.union h)
0 commit comments