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.

34 lines
771 B

  1. \begin{tikzpicture}[every tree node/.style={draw,circle},sibling distance=.25cm]
  2. \Tree
  3. [.$\imp$
  4. [.$\forall x$
  5. [.$\exists y$
  6. [.$\land$
  7. [.$P$
  8. [.$f$ $y$ ]
  9. ]
  10. [.$P$ $x$ ]
  11. ]
  12. ]
  13. ]
  14. [.$Q$
  15. [.$f$
  16. [.$f$ $y$ ]
  17. ]
  18. ]
  19. ]
  20. \end{tikzpicture}
  21. \newline \\
  22. Free variables: $y$ \\
  23. $\mathcal{M}_1: \mathcal{A} = \{a, b\}$ \\
  24. $P^{\mathcal{M}_1}$ = true \\
  25. $Q^{\mathcal{M}_1}$ = true \\
  26. $\mathcal{M}_1 \models \phi$ \\
  27. $f$ can be defined arbitrarily in this case.
  28. $\mathcal{M}_2: \mathcal{A} = \{a, b\}$ \\
  29. $P^{\mathcal{M}_2}$ = true \\
  30. $Q^{\mathcal{M}_2}$ = false \\
  31. $\mathcal{M}_2 \not\models \phi$
  32. $f$ can be defined arbitrarily in this case.