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 formula $\varphi = (\neg p \imp r) \land (r \imp \neg p) \land q$.
  2. \begin{enumerate}
  3. \item Fill out the truth table for $\varphi$ (and its
  4. subformulas).
  5. \begin{tabular}{|c|c|c||c|c|c|c|}
  6. \hline
  7. $p$&$q$&$r$&$\;\neg p\;$&$(\neg p \imp r)$&$(r \imp \neg p)$&$\quad\varphi\quad$\\
  8. \hline
  9. \hline
  10. \textbf{F} &\textbf{F} &\textbf{F} & & & &\\
  11. \hline
  12. \textbf{F} &\textbf{F} &\textbf{T} & & & &\\
  13. \hline
  14. \textbf{F} &\textbf{T} &\textbf{F} & & & &\\
  15. \hline
  16. \textbf{F} &\textbf{T} &\textbf{T} & & & &\\
  17. \hline
  18. \textbf{T} &\textbf{F} &\textbf{F} & & & &\\
  19. \hline
  20. \textbf{T} &\textbf{F} &\textbf{T} & & & &\\
  21. \hline
  22. \textbf{T} &\textbf{T} &\textbf{F} & & & &\\
  23. \hline
  24. \textbf{T} &\textbf{T} &\textbf{T} & & & &\\
  25. \hline
  26. \end{tabular}
  27. \item Is the negation of $\varphi$ satisfiable?
  28. \item Is the negation of $\varphi$ valid?
  29. \item Give a formula $\psi$ that semantically entails $\varphi$
  30. (i.e., it should be the case that $\psi \models \varphi$).
  31. \item Give a formula $\psi$ such that $\varphi$ semantically entails $\psi$
  32. (i.e., it should be the case that $\varphi \models \psi$).
  33. \end{enumerate}