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.

57 lines
1.1 KiB

  1. \begin{tikzpicture}[every tree node/.style={draw,circle},sibling distance=.25cm]
  2. \Tree
  3. [.$\exists x$
  4. [.$\forall y$
  5. [.$\imp$
  6. [.$P$ $x$ $y$ ]
  7. [.$\lor$
  8. [.$Q$ $x$ $y$ ]
  9. [.$R$ $x$ $y$ ]
  10. ]
  11. ]
  12. ]
  13. ]
  14. \end{tikzpicture}
  15. \newline
  16. \begin{tikzpicture}[every tree node/.style={draw,circle},sibling distance=.25cm]
  17. \Tree
  18. [.$\forall y$
  19. [.$\imp$
  20. [.$P$ $b$ $y$ ]
  21. [.$\lor$
  22. [.$Q$ $b$ $y$ ]
  23. [.$R$ $b$ $y$ ]
  24. ]
  25. ]
  26. ]
  27. \end{tikzpicture}
  28. \newline
  29. Subtree: $x=b$ \\
  30. \begin{tikzpicture}[every tree node/.style={draw,circle},sibling distance=.25cm]
  31. \Tree
  32. [.$\imp$
  33. [.$P$ $b$ $a$ ]
  34. [.$\lor$
  35. [.$Q$ $b$ $a$ ]
  36. [.$R$ $b$ $a$ ]
  37. ]
  38. ]
  39. \end{tikzpicture}
  40. \newline
  41. Subtree: $x=b \land y=a$
  42. \begin{tikzpicture}[every tree node/.style={draw,circle},sibling distance=.25cm]
  43. \Tree
  44. [.$\imp$
  45. [.$P$ $b$ $b$ ]
  46. [.$\lor$
  47. [.$Q$ $b$ $b$ ]
  48. [.$R$ $b$ $b$ ]
  49. ]
  50. ]
  51. \end{tikzpicture}
  52. \newline
  53. Subtree: $x=b \land y=b$
  54. The model $\mathcal{M}$ satisfies the formula.