We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ac7caa commit 8af308bCopy full SHA for 8af308b
1 file changed
Mathlib/SetTheory/ZFC/Basic.lean
@@ -409,7 +409,6 @@ theorem natCast_mem_omega (n : ℕ) : ↑n ∈ omega := by
409
theorem omega_zero : ∅ ∈ omega := by
410
simp [← natCast_zero]
411
412
-@[simp]
413
theorem omega_succ : x ∈ omega → insert x x ∈ omega := by
414
simp only [mem_omega, forall_exists_index]
415
rintro n rfl
@@ -425,7 +424,7 @@ theorem omega_induction_on {motive : ∀ x ∈ omega, Prop} (hx : x ∈ omega)
425
424
426
/-- `omega` is the smallest inductive set. -/
427
theorem isLeast_inductive_omega : IsLeast {x | ∅ ∈ x ∧ ∀ y ∈ x, insert y y ∈ x} omega :=
428
- ⟨by simp +contextual, by
+ ⟨by simp +contextual [omega_succ], by
429
simp only [mem_lowerBounds, Set.mem_setOf_eq, le_def, and_imp]
430
intro _ _ _ _ h
431
induction h using omega_induction_on with simp [*]⟩
0 commit comments