Advertisement
Guest User

Untitled

a guest
Jul 28th, 2014
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. (assert
  2. '(forall (x y z)
  3. (implies
  4. (and
  5. (part-of x y)
  6. (part-of y z)
  7. )
  8. (part-of x z)
  9. ) )
  10. :name '1point1point1)
  11.  
  12. (assert
  13. '(forall (x y alpha t)
  14. (exists (z arb-part)
  15. (implies
  16. (and
  17. (and
  18. (member t alpha)
  19. (part-of t x)
  20. ) ; alpha is included in the parts of x -> for all t which are members of alpha, t is a part of x
  21. (implies
  22. (part-of y x)
  23. (and
  24. (member z alpha)
  25. (and
  26. (part-of arb-part z)
  27. (part-of arb-part y)
  28. ) ) ) )
  29. (sum-of x alpha)
  30. ) ) )
  31. :name '1point1point2)
  32.  
  33. (assert
  34. '(forall (alpha)
  35. (exists (arb-member sum)
  36. (implies
  37. (member arb-member alpha)
  38. (sum-of sum alpha) ; there exists a sum ('sum') of alpha
  39. ) ) )
  40. :name '1point1point3)
  41.  
  42. (prove
  43. '(forall (x)
  44. (part-of x x)
  45. )
  46. :name '1point1point4)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement