Created
May 12, 2024 17:42
-
-
Save BRonen/041b0c0d31e43392f73706421ded398d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+-assoc-proof : ∀ (x y z : ℕ) → x + (y + z) ≡ (x + y) + z | |
+-assoc-proof zero y z = refl | |
+-assoc-proof (suc x) y z = cong suc (+-assoc-proof x y z) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment