diff options
Diffstat (limited to 'Common/Function.lean')
| -rw-r--r-- | Common/Function.lean | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Common/Function.lean b/Common/Function.lean new file mode 100644 index 0000000..f497baa --- /dev/null +++ b/Common/Function.lean @@ -0,0 +1,3 @@ +theorem Function.comp_assoc (f : γ → δ) (g : β → γ) (h : α → β) : (f∘g)∘h = f∘g∘h := rfl +theorem Function.comp_id (f : α → β) : f ∘ id = f := rfl +theorem Function.id_comp (f : α → β) : id ∘ f = f := rfl |
