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.

25 lines
904 B

  1. \item \self Consider the propositional formula $\phi = (p \lor \lnot q) \imp (\lnot p \land \lnot r)$. Fill out the truth table for $\phi$
  2. and its subformulas. Compute a CNF as well as a DNF for $\phi$ from
  3. the truth table.
  4. \begin{tabular}{|c|c|c||c|c|c|c|c||c|}
  5. \hline
  6. $p$ & $q$ & $r$ & $\lnot q$ & $p \lor \lnot q$ & $\lnot p$ & $\lnot r$ & $\lnot p \land \lnot r$ & $\phi = (p \lor \lnot q) \imp (\lnot p \land \lnot r)$\\
  7. \hline
  8. \hline
  9. \textbf{F} &\textbf{F} &\textbf{F} & & & & & &\\
  10. \hline
  11. \textbf{F} &\textbf{F} &\textbf{T} & & & & & &\\
  12. \hline
  13. \textbf{F} &\textbf{T} &\textbf{F} & & & & & &\\
  14. \hline
  15. \textbf{F} &\textbf{T} &\textbf{T} & & & & & &\\
  16. \hline
  17. \textbf{T} &\textbf{F} &\textbf{F} & & & & & &\\
  18. \hline
  19. \textbf{T} &\textbf{F} &\textbf{T} & & & & & &\\
  20. \hline
  21. \textbf{T} &\textbf{T} &\textbf{F} & & & & & &\\
  22. \hline
  23. \textbf{T} &\textbf{T} &\textbf{T} & & & & & &\\
  24. \hline
  25. \end{tabular}