You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.7 KiB

  1. Translation: \\
  2. $p:$ \quad I am ill. \\
  3. $q:$ \quad I go to the doctor.
  4. \begin{enumerate}
  5. \item
  6. \begin{quote}
  7. \begin{tabbing}
  8. If I am ill, I go to the doctor. \quad \= $p \imp q$ \\
  9. I am ill. \> $p$ \\
  10. Therefore, I go to the doctor. \> $\vdash q$ \\
  11. \end{tabbing}
  12. \emph{Sequent:} \quad $p \imp q, p \vdash q$ \\
  13. \begin{logicproof}{1}
  14. p \imp q & \prem \\
  15. p & \prem \\
  16. q & $\impe 2,1$
  17. \end{logicproof}
  18. \end{quote}
  19. \item
  20. \begin{quote}
  21. \begin{tabbing}
  22. If I am ill, I go to the doctor. \quad \= $p \imp q$ \\
  23. I go to the doctor. \> $q$ \\
  24. Therefore, I am ill. \> $\vdash p$ \\
  25. \end{tabbing}
  26. \emph{Sequent:} \quad $p \imp q, q \vdash p$ \\
  27. \vspace{0.2cm}
  28. This sequent is not provable.
  29. $\mathcal{M} : p = F, q = T$ \\
  30. $\mathcal{M} \models p \imp q, q$ \\
  31. $\mathcal{M} \nmodels p$
  32. \end{quote}
  33. \item
  34. \begin{quote}
  35. \begin{tabbing}
  36. (Solve without using the Modus Tollens)\\
  37. If I am ill, I go to the doctor. \quad \= $p \imp q$ \\
  38. I did not go to the doctor. \> $\lnot q$ \\
  39. Therefore, I am not ill. \> $\lnot p$ \\
  40. \end{tabbing}
  41. \emph{Sequent:} \quad $p \imp q, \lnot q \vdash \lnot p$ \\
  42. \vspace{0.2cm}
  43. \begin{logicproof}{1}
  44. p \imp q & \prem \\
  45. \lnot q & \prem \\
  46. \begin{subproof}
  47. p & \assum \\
  48. q & $\impe 3,1$ \\
  49. \bot & $\nege 4,2$
  50. \end{subproof}
  51. \lnot p & $\negi 3-5$
  52. \end{logicproof}
  53. \end{quote}
  54. \end{enumerate}