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.

37 lines
1.1 KiB

5 months ago
  1. \item \self Consider the propositional formulas $\varphi = (p \vee q)
  2. \rightarrow r$, and $\psi = r \vee (\neg p \wedge \neg q)$.
  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|}
  7. \hline
  8. $p$&$q$&$r$&$\neg p$&$\neg q$&$p \vee q$&$\neg p \wedge \neg q$&$\varphi$&$\psi$\\
  9. \hline
  10. \hline
  11. \textbf{F} &\textbf{F} &\textbf{F} & & & & & &\\
  12. \hline
  13. \textbf{F} &\textbf{F} &\textbf{T} & & & & & &\\
  14. \hline
  15. \textbf{F} &\textbf{T} &\textbf{F} & & & & & &\\
  16. \hline
  17. \textbf{F} &\textbf{T} &\textbf{T} & & & & & &\\
  18. \hline
  19. \textbf{T} &\textbf{F} &\textbf{F} & & & & & &\\
  20. \hline
  21. \textbf{T} &\textbf{F} &\textbf{T} & & & & & &\\
  22. \hline
  23. \textbf{T} &\textbf{T} &\textbf{F} & & & & & &\\
  24. \hline
  25. \textbf{T} &\textbf{T} &\textbf{T} & & & & & &\\
  26. \hline
  27. \end{tabular}
  28. \item Which of the formulas is satisfiable?
  29. \item Which of the formulas is valid?
  30. \item Is $\varphi$ equivalent to $\psi$?
  31. \item Does $\varphi$ semantically entail $\psi$?
  32. \item Does $\psi$ semantically entail $\varphi$?
  33. \end{enumerate}