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.
lean4game/server/adam/Adam/Levels/SetTheory/L07_UnionInter.lean

30 lines
568 B
Plaintext

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import Adam.Metadata
import Mathlib.Data.Set.Basic
set_option tactic.hygienic false
Game "Adam"
World "SetTheory"
Level 7
Title "Schnittmenge und Vereinigung"
Introduction
"
Die klassischen Mengenoperationen sind
Schnittmenge `∩` (`\\inter`), Vereinigung `` (`\\union`) und
Differenz `\\` (`\\\\`).
Die Taktik `simp` kann triviale Aussagen with Vereinigung mit der
leeren Menge vereinfachen.
"
open Set
Statement
"" (A B : Set ) : (A ∅) ∩ B = A ∩ (univ ∩ B) := by
simp
NewTactic constructor intro rw assumption rcases simp tauto trivial