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/SetFunction/L02_Preimage.lean

34 lines
737 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
Game "Adam"
World "SetFunction"
Level 2
Title ""
open Set
Introduction
"
Das Urbild einer Menge `U` unter einer Funktion `f` ist mit `f ⁻¹' U` bezeichnet.
Note: `f ⁻¹` ist das abstrakte, gruppentheoretische Inverse von `f`, was generell nicht existieren muss,
deshalb wurde die andere Notation hier gewählt
"
Statement
(U : Set ) (f : ) : U ⊆ f ⁻¹' (f '' U) := by
Hint "Fang wieder mal mit `intro` an."
intro x hx
Hint "Mit `rw [preimage]` kannst du sehen, wie das Urbild definiert ist."
rw [preimage]
Hint "Also musst du jetzt ein Element `y` angeben sodass `f y` in `f '' U` liegt."
use x
constructor
assumption
rfl
NewDefinition Set.preimage