You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
648 B
Plaintext
33 lines
648 B
Plaintext
import Adam.Metadata
|
|
import Adam.Levels.SetTheory.L04_SubsetEmpty
|
|
|
|
import Adam.Options.MathlibPart
|
|
|
|
set_option tactic.hygienic false
|
|
|
|
Game "Adam"
|
|
World "SetTheory"
|
|
Level 5
|
|
|
|
Title "Empty"
|
|
|
|
Introduction
|
|
"
|
|
Zeige folgendes Lemma, welches wir gleich brauchen werden:
|
|
"
|
|
|
|
open Set
|
|
|
|
|
|
Statement Set.eq_empty_iff_forall_not_mem
|
|
""
|
|
{A : Type _} (s : Set A) :
|
|
s = ∅ ↔ ∀ x, x ∉ s := by
|
|
Hint "Das Lemma `subset_empty_iff` von letzter Aufgabe könnte hilfreich sein."
|
|
rw [←subset_empty_iff]
|
|
rfl -- This is quite a miracle :)
|
|
|
|
NewTactic constructor intro rw assumption rcases simp tauto trivial
|
|
NewLemma Set.subset_empty_iff
|
|
LemmaTab "Set"
|