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.

36 lines
1.1 KiB

2 months ago
  1. \begin{center}
  2. \begin{egraph}
  3. \node[base node] (a) {$a$};
  4. \node[base node] (b) [above right of=a] {$b$};
  5. \node[base node] (c) [below right of=b] {$c$};
  6. \node[base node] (d) [below of=c] {$d$};
  7. \node[base node] (e) [below left of=d] {$e$};
  8. \node[base node] (f) [left of=e] {$f$};
  9. \node[base node] (g) [above left of=f] {$g$};
  10. \path[]
  11. (a) edge [] node {} (b)
  12. (b) edge [] node {} (c)
  13. (c) edge [] node {} (d)
  14. (d) edge [] node {} (e)
  15. (e) edge [] node {} (a)
  16. (f) edge [] node {} (e)
  17. (g) edge [] node {} (f);
  18. \chord{b}{e};
  19. \chord{c}{e};
  20. \end{egraph}
  21. \end{center}
  22. \begin{align*}
  23. \varphi_{TC} =~\egraphFuncConstraint{a}{b}{e}~\land\\[0.75ex]
  24. \egraphFuncConstraint{b}{c}{e}~\land\\[0.75ex]
  25. \egraphFuncConstraint{c}{d}{e}
  26. \end{align*}
  27. \begin{align*}
  28. \hat\varphi_{E} \coloneqq
  29. \lnot e_{a=b} \land e_{b=c} \lor e_{c=d} \imp \lnot (\lnot e_{d=e} \lor e_{e=f}) \land \lnot(e_{f=g} \land \lnot e_{a=e})
  30. \end{align*}
  31. \begin{align*}
  32. \varphi_{prop} \coloneqq \varphi_{TC} \land \hat\varphi_{E}
  33. \end{align*}