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.

73 lines
1.6 KiB

  1. \begin{tikzpicture}[every tree node/.style={draw,circle},sibling distance=.15cm]
  2. \Tree
  3. [.$\lor $
  4. [.$\forall x$
  5. [.$P$ $x$ $x$ ]
  6. ]
  7. [.$\forall y$
  8. [.$Q$ $x$ $y$ ]
  9. ]
  10. ]
  11. \end{tikzpicture}
  12. The $x$ in the right subformula is a free variable.
  13. \begin{multicols}{2}
  14. An example for a \emph{satisfying} model $\Model_{SAT}$:
  15. \begin{itemize}
  16. \item $\mathcal{A} = \{a, b\} $
  17. \item $P^{\Model_{SAT}} = \{(a,a), (b,b)\}$
  18. \item $Q^{\Model_{SAT}} = \{(a,a), (a,b)\}$
  19. \end{itemize}
  20. \columnbreak
  21. An example for an \emph{unsatisfying} model $\Model_{UNSAT}$:
  22. \begin{itemize}
  23. \item $\mathcal{A} = \{a, b\} $
  24. \item $P^{\Model_{UNSAT}} = \{(a,a)\}$
  25. \item $Q^{\Model_{UNSAT}} = \{(a,a)\}$
  26. \end{itemize}
  27. \end{multicols}
  28. \begin{tikzpicture}[every tree node/.style={draw,circle},sibling distance=.25cm]
  29. \Tree
  30. [.$\lnot$
  31. [.$\forall x$
  32. [.$\land$
  33. [.$\imp$
  34. [.$Q$
  35. [.$f$ $x$ ]
  36. ]
  37. [.$P$
  38. [.$f$
  39. [.$f$ $x$ ]
  40. ]
  41. ]
  42. ]
  43. [.$\lnot$
  44. [.$Q$ $x$ ]
  45. ]
  46. ]
  47. ]
  48. ]
  49. \end{tikzpicture}
  50. \begin{multicols}{2}
  51. An example for a \emph{satisfying} model $\Model_{SAT}$:
  52. \begin{itemize}
  53. \item $\mathcal{A} = \{a, b\} $
  54. \item $f^{\Model_{SAT}} = \{ x \rightarrow x \}$
  55. \item $P^{\Model_{SAT}} = \true$
  56. \item $Q^{\Model_{SAT}} = \false$
  57. \end{itemize}
  58. \columnbreak
  59. An example for an \emph{unsatisfying} model $\Model_{UNSAT}$:
  60. \begin{itemize}
  61. \item $\mathcal{A} = \{a, b\} $
  62. \item $f^{\Model_{UNSAT}} = \{ x \rightarrow x \}$
  63. \item $P^{\Model_{UNSAT}} = \true$
  64. \item $Q^{\Model_{UNSAT}} = \false$
  65. \end{itemize}
  66. \end{multicols}