Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. subsumes(R\2,R'\2) := all x,y, R'(x,y) -> R(x,y)
  2. transitive(R\2) := all x,y,z, R(x,y) -> R(y,z) -> R(x,z)
  3.  
  4. In second-order logic:
  5. tc(R\2,R'\2) :=
  6. subsumes(R',R) ^
  7. transitive(R') ^
  8. all R", (subsumes(R",R) ^ transitive(R")) -> subsumes(R",R')
  9.  
  10. In monadic second-order logic:
  11. closed(X\1,R\2) := all u,v, (X(u) ^ R(u,v) -> X(v))
  12. tc'(R\2,x,y) := all X, (closed(X,R) ^ X(x) -> X(y))
  13. tc(R\2,R'\2) := R'(x,y) <-> TC'(R\2,x,y)
  14.  
  15. In first-order logic:
  16. ???
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement