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.

44 lines
1.3 KiB

5 months ago
  1. \item \lect Consider the propositional formulas $\varphi = (p \rightarrow
  2. q) \vee \neg r$ and $\psi = (\neg r \wedge p) \vee (\neg q \rightarrow \neg r)$.
  3. \begin{enumerate}
  4. \item Fill out the truth table for $\varphi$ and $\psi$ and
  5. their subformulas.
  6. \begin{tabular}{|c|c|c||c|c|c|c|c||c|c|}
  7. \hline
  8. $p$&$q$&$r$&$\neg q$&$\neg r$&$p \rightarrow q$&$\neg r \wedge p$&$\neg q \rightarrow \neg r$&$\varphi$&$\psi$\\
  9. \hline
  10. \hline
  11. \textbf{F} &\textbf{F} &\textbf{F} & T & T & T & F & T & T & T \\
  12. \hline
  13. \textbf{F} &\textbf{F} &\textbf{T} & T & F & T & F & F & T & F \\
  14. \hline
  15. \textbf{F} &\textbf{T} &\textbf{F} & F & T & T & F & T & T & T \\
  16. \hline
  17. \textbf{F} &\textbf{T} &\textbf{T} & F & F & T & F & T & T & T \\
  18. \hline
  19. \textbf{T} &\textbf{F} &\textbf{F} & T & T & F & T & T & T & T \\
  20. \hline
  21. \textbf{T} &\textbf{F} &\textbf{T} & T & F & F & F & F & F & F \\
  22. \hline
  23. \textbf{T} &\textbf{T} &\textbf{F} & F & T & T & T & T & T & T \\
  24. \hline
  25. \textbf{T} &\textbf{T} &\textbf{T} & F & F & T & F & T & T & T \\
  26. \hline
  27. \end{tabular}
  28. \vspace{0.5cm}
  29. \item Which of the formulas is satisfiable?
  30. Both of them are satisfiable.
  31. \item Which of the formulas is valid?
  32. None of them are valid.
  33. \item Which of the two formulas $\varphi$ and $\psi$ entails the other?
  34. It holds that $\psi \models \varphi$.
  35. \end{enumerate}