We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
a ^ b ≤ ℵ₀
a ≤ ℵ₀
b < ℵ₀
1 parent e1a3d4c commit 1844f02Copy full SHA for 1844f02
Mathlib/SetTheory/Cardinal/Arithmetic.lean
@@ -527,6 +527,9 @@ theorem power_nat_le_max {c : Cardinal.{u}} {n : ℕ} : c ^ (n : Cardinal.{u})
527
· exact le_max_of_le_left (power_nat_le hc)
528
· exact le_max_of_le_right (power_lt_aleph0 hc (nat_lt_aleph0 _)).le
529
530
+lemma power_le_aleph0 {a b : Cardinal.{u}} (ha : a ≤ ℵ₀) (hb : b < ℵ₀) : a ^ b ≤ ℵ₀ := by
531
+ lift b to ℕ using hb; simpa [ha] using power_nat_le_max (c := a)
532
+
533
theorem powerlt_aleph0 {c : Cardinal} (h : ℵ₀ ≤ c) : c ^< ℵ₀ = c := by
534
apply le_antisymm
535
· rw [powerlt_le]
0 commit comments