This commit is contained in:
Adrien Vannson 2022-05-17 13:59:35 +02:00
parent a03a5f5504
commit 5d65bcdc36
No known key found for this signature in database
GPG Key ID: FE2E66FD978C1A55
2 changed files with 58 additions and 0 deletions

26
tests/et.8pus Normal file
View File

@ -0,0 +1,26 @@
( (A /\ B) /\ C -> A /\ (B /\ C) ) /\ ( A /\ (B /\ C) -> (A /\ B) /\ C )
split.
intro et.
elim et.
intro ab.
intro c.
elim ab.
intro a.
intro b.
split.
assumption.
split.
assumption.
assumption.
intro et.
elim et.
intro a.
intro bc.
elim bc.
intro b.
intro c.
split.
split.
assumption.
assumption.
assumption.

32
tests/ou.8pus Normal file
View File

@ -0,0 +1,32 @@
(A \/ (B \/ C) -> (A \/ B) \/ C) /\ ((A \/ B) \/ C -> A \/ (B \/ C))
split.
intro ou.
elim ou.
intro a.
left.
left.
assumption.
intro bc.
elim bc.
intro b.
left.
right.
assumption.
intro c.
right.
assumption.
intro ou.
elim ou.
intro ab.
elim ab.
intro a.
left.
assumption.
intro b.
right.
left.
assumption.
intro c.
right.
right.
assumption.