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/testgame/TestGame/Levels/LinearAlgebra/L05_Submodule.lean

24 lines
557 B
Plaintext

2 years ago
import TestGame.Metadata
import Mathlib.Algebra.Module.Submodule.Lattice
Game "TestGame"
World "Module"
Level 5
Title "Untervektorräume"
Introduction
"
Elemente aus einem Untervektorraum $U$ wählt man gleich aus, wie Elemente in einer Menge.
Nämlich man nimmt ein Element `(x : V)` und sagt, dass es in `U` liegt mit `x ∈ U` (`\\in`).
"
Statement
"TODO: Spannendere Aufgaben."
{K V : Type _} [Field K] [AddCommMonoid V] [Module K V] (U : Submodule K V) :
∀ (x : V), x ∈ U x ∉ U := by
intro x
rw [or_iff_not_imp_left]
tauto