CS's system S

This commit is contained in:
aarne
2005-12-20 14:20:42 +00:00
parent 774abf612d
commit 25b3168437
15 changed files with 562 additions and 0 deletions

13
examples/systemS/ex4.txt Normal file
View File

@@ -0,0 +1,13 @@
[ |- (A -> B) v (B -> A) ]
------------------------------ Reductio ad absurdum
[ ~ ((A -> B) v (B -> A)) |- _|_ ]
------------------------------ de Morgan 1
[ ~ (A -> B) & ~ (B -> A) |- _|_ ]
------------------------------ Conjunction split
[ ~ (A -> B), ~ (B -> A) |- _|_ ]
------------------------------ Implication negation
[ A, ~ (B -> A) |- _|_ ]
------------------------------ Implication negation
[ A, ~ A |- _|_ ]
------------------------------ Ex falso quodlibet _|_
Ø