Skip to content

Commit 8af308b

Browse files
committed
unsimp
1 parent 5ac7caa commit 8af308b

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

Mathlib/SetTheory/ZFC/Basic.lean

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,6 @@ theorem natCast_mem_omega (n : ℕ) : ↑n ∈ omega := by
409409
theorem omega_zero : ∅ ∈ omega := by
410410
simp [← natCast_zero]
411411

412-
@[simp]
413412
theorem omega_succ : x ∈ omega → insert x x ∈ omega := by
414413
simp only [mem_omega, forall_exists_index]
415414
rintro n rfl
@@ -425,7 +424,7 @@ theorem omega_induction_on {motive : ∀ x ∈ omega, Prop} (hx : x ∈ omega)
425424

426425
/-- `omega` is the smallest inductive set. -/
427426
theorem isLeast_inductive_omega : IsLeast {x | ∅ ∈ x ∧ ∀ y ∈ x, insert y y ∈ x} omega :=
428-
by simp +contextual, by
427+
by simp +contextual [omega_succ], by
429428
simp only [mem_lowerBounds, Set.mem_setOf_eq, le_def, and_imp]
430429
intro _ _ _ _ h
431430
induction h using omega_induction_on with simp [*]⟩

0 commit comments

Comments
 (0)