summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLandon D. C. Elkind2021-02-03 16:05:11 -0700
committerGitHub2021-02-03 16:05:11 -0700
commit610ac0e2ef212636ce5dabd108c3ba2e2b14fc49 (patch)
treea2db7e2500fef4df2e9835cbe55a4750139b7b3d
parent183cb2f906d673fe1449e5b9772ee55a6d435809 (diff)
Delete No1.v
-rw-r--r--No1.v30
1 files changed, 0 insertions, 30 deletions
diff --git a/No1.v b/No1.v
deleted file mode 100644
index 6652c03..0000000
--- a/No1.v
+++ /dev/null
@@ -1,30 +0,0 @@
-Require Import Unicode.Utf8.
-
-Module No1.
-
-Import Unicode.Utf8. (*We first give the axioms of Principia for the propositional calculus in *1.*)
-
-Axiom MP1_1 : ∀ P Q : Prop,
- (P → Q) → P → Q. (*Modus ponens*)
-
- (**1.11 ommitted: it is MP for propositions containing variables. Likewise, ommitted the well-formedness rules 1.7, 1.71, 1.72*)
-
-Axiom Taut1_2 : ∀ P : Prop,
- P ∨ P→ P. (*Tautology*)
-
-Axiom Add1_3 : ∀ P Q : Prop,
- Q → P ∨ Q. (*Addition*)
-
-Axiom Perm1_4 : ∀ P Q : Prop,
- P ∨ Q → Q ∨ P. (*Permutation*)
-
-Axiom Assoc1_5 : ∀ P Q R : Prop,
- P ∨ (Q ∨ R) → Q ∨ (P ∨ R).
-
-Axiom Sum1_6: ∀ P Q R : Prop,
- (Q → R) → (P ∨ Q → P ∨ R). (*These are all the propositional axioms of Principia Mathematica.*)
-
-Axiom Impl1_01 : ∀ P Q : Prop,
- (P → Q) = (~P ∨ Q). (*This is a definition in Principia: there → is a defined sign and ∨, ~ are primitive ones. So we will use this axiom to switch between disjunction and implication.*)
-
-End No1. \ No newline at end of file