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.

43 lines
1.4 KiB

  1. From a given formula $\varphi \lor \psi$, we want to proof some other formula $\chi$.
  2. We only know that $\varphi$ \emph{or} $\psi$ holds. It could be that both of them are true,
  3. but it could also be that only $\psi$ is true, or only $\varphi$ is true.
  4. Sine we don't know which sub-formula is true, we have to give two separate proofs:
  5. \begin{itemize}
  6. \item First box: We assume $\varphi$ is true and need to find a proof for $\chi$.
  7. \item Second box: We assume $\psi$ is true and need to find a proof for $\chi$.
  8. \end{itemize}
  9. Only if we can prove $\chi$ in the first and in the second box, then we can conclude that $\chi$ holds also outside of the box.
  10. The $\ore$ rules says that we can only derive $\chi$ from $ \varphi \lor \psi$ if we can derive $\chi$
  11. from the assumption $ \varphi$ as well as from the assumption $\psi$.
  12. Formally the rule is written as:
  13. \begin{center}
  14. \begin{prooftree}
  15. \AxiomC{\begin{tabular}{l}
  16. \vspace*{0.95ex}\\
  17. \vspace*{0.95ex}\\
  18. $ \varphi \lor \psi $\\
  19. \end{tabular}}
  20. \AxiomC{\begin{tabular}{|l|}
  21. \hline
  22. $ \varphi $ ass.\\
  23. \hspace*{0.2em}$ \vdots $\\
  24. $ \chi $\\
  25. \hline
  26. \end{tabular}}
  27. \AxiomC{\begin{tabular}{|l|}
  28. \hline
  29. $ \psi $ ass.\\
  30. \hspace*{0.2em}$ \vdots $\\
  31. $ \chi $\\
  32. \hline
  33. \end{tabular}}
  34. \RightLabel{$ \ore$}
  35. \TrinaryInfC{$ \chi $}
  36. \end{prooftree}
  37. \end{center}