-
-
Save zraffer/ee04c6ee3b0d6cf4947f to your computer and use it in GitHub Desktop.
errorneous attempt for boolean eliminator
This file contains hidden or 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
-- #bool | |
∀ (a : #Prop ) → a → a → a |
This file contains hidden or 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
-- #ff | |
λ (a : #Prop ) → λ (c : a) → λ (d : a) → d |
This file contains hidden or 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
-- #ind_on | |
λ (P : #bool → #Prop ) → λ (t : P #tt ) → λ (f : P #ff ) → λ (a : #bool ) → a (P a) t f |
This file contains hidden or 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
-- #ind_on_T | |
∀ (P : #bool → #Prop ) → P #tt → P #ff → ∀ (a : #bool ) → P a |
This file contains hidden or 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
-- #ind_on_test | |
(\(t : #ind_on_T ) → t) #ind_on |
This file contains hidden or 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
-- #Prop | |
* |
This file contains hidden or 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
-- #tt | |
λ (a : #Prop ) → λ (c : a) → λ (d : a) → c |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment