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.
21 lines
319 B
Plaintext
21 lines
319 B
Plaintext
2 years ago
|
import TestGame.Metadata
|
||
|
import Mathlib
|
||
|
|
||
|
Game "TestGame"
|
||
|
World "Function"
|
||
|
Level 3
|
||
|
|
||
|
Title ""
|
||
|
|
||
|
Introduction
|
||
|
"
|
||
|
Komposition von Funktionen kann als `g ∘ f` geschrieben werden.
|
||
|
|
||
|
TODO
|
||
|
"
|
||
|
|
||
|
Statement
|
||
|
"TODO: Find an exercise."
|
||
|
(U S T V : Type _) (f : U → V) (g : V → T) (x : U) : (g ∘ f) x = g (f x) := by
|
||
|
trivial
|