Skip to content
Snippets Groups Projects
Commit f6ae1dc0 authored by gabrielhdt's avatar gabrielhdt
Browse files

extensionalities

parent af877466
No related branches found
No related tags found
No related merge requests found
...@@ -31,3 +31,5 @@ set infix 2 "=" ≔ eq ...@@ -31,3 +31,5 @@ set infix 2 "=" ≔ eq
set builtin "eq" ≔ eq // FIXME emacs indentation set builtin "eq" ≔ eq // FIXME emacs indentation
rule ε ($x = $y) ↪ Πp: η (_ ~> bool), ε (p $x) → ε (p $y) rule ε ($x = $y) ↪ Πp: η (_ ~> bool), ε (p $x) → ε (p $y)
definition iff P Q ≔ (P ⊃ (λ_, Q)) ∧ ((λ_, Q ⊃ (λ_, P)))
...@@ -23,3 +23,6 @@ constant symbol str_cons: η {|!Number!|} → η {|!String!|} → η {|!String!| ...@@ -23,3 +23,6 @@ constant symbol str_cons: η {|!Number!|} → η {|!String!|} → η {|!String!|
set declared "∃" set declared "∃"
definition ∃ {T: Set} (P: η T → η bool) ≔ ¬ (∀ (λx, ¬ (P x))) definition ∃ {T: Set} (P: η T → η bool) ≔ ¬ (∀ (λx, ¬ (P x)))
symbol propositional_extensionality:
ε (∀ {bool} (λp, (∀ {bool} (λq, (iff p q) ⊃ (λ_, eq {bool} p q)))))
...@@ -7,9 +7,10 @@ require open personoj.prelude.logic ...@@ -7,9 +7,10 @@ require open personoj.prelude.logic
// functions [D, R: TYPE] // functions [D, R: TYPE]
// //
// symbol symbol extensionality_postulate:
// extensionality_postulate (D R: Term uType) (f g: Term (D ~> R)) ε (∀B (λD, ∀B (λR,
// : Term (biff (forall (λx: Term D, f x = g ) (f = g))) ∀ (λf: η (D ~> R),
∀ (λg: η (D ~> R), iff (∀ (λx, f x = g x)) (f = g))))))
// definition {|injective?|} {D} {R} (f: Term (D ~> R)) ≔ // definition {|injective?|} {D} {R} (f: Term (D ~> R)) ≔
// forall (λx1, forall (λx2, imp (f x1 = f x2) (x1 = x2))) // forall (λx1, forall (λx2, imp (f x1 = f x2) (x1 = x2)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment