Skip to content

Commit

Permalink
fixed other typos (I hope there is no more now)
Browse files Browse the repository at this point in the history
  • Loading branch information
Thibaut Antoine committed Mar 6, 2024
1 parent 4f1851e commit c50cb44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dist/sequentcalculus.html
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ <h3>Examples of proofs</h3>
//|- p or not p
</textarea>

Try to prove the following De Morgan law in sequent calculus: <code>not (p or q) -> (not p) and (not q)</code>
Try to prove the following De Morgan's law in sequent calculus: <code>not (p or q) -> (not p) and (not q)</code>
<textarea proofSystem="SequentCalculus">
//p |- p, q
//|- p, q, not p
Expand Down Expand Up @@ -334,8 +334,8 @@ <h3>First-order proofs using contraction rules</h3>

Try to prove the drinking person's paradox: in a bar, there is always a person such that if this person drinks, everyone drinks.
<textarea proofSystem="SequentCalculus">
//P(x), P(y) |- P(y), forall y P(y)
//P(x) |- P(y), (P(y) -> forall y P(y))
//P(x), P(y) |- P(y), forall z P(z)
//P(x) |- P(y), (P(y) -> forall z P(z))
//P(x) |- P(y), exists x (P(x) -> forall y P(y))
//P(x) |- forall y P(y), exists x (P(x) -> forall y P(y))
//|- P(x) -> forall y P(y), exists x (P(x) -> forall y P(y))
Expand Down

0 comments on commit c50cb44

Please sign in to comment.