Scheme format:
(A (?x) ( (brick ?x) ->
( (E (?y) ((on ?x ?y) & (~ (pyramid ?y))))
& (~ (E (?y) ((on ?x ?y) & (on ?y ?x))))
& (A (?y) ((~ (brick ?y)) -> (~ (equal ?x ?y)))) )))
If something is a brick, then it's on top of something
which is not a pyramid, and nothing is on it that it is
also on, and it's not the same thing as anything other
than a brick.
~a V b for a -> b.
Scheme format:
(A (?x) ( (~ (brick ?x)) V
( (E (?y) ((on ?x ?y) & (~ (pyramid ?y))))
& (~ (E (?y) ((on ?x ?y) & (on ?y ?x))))
& (A (?y) ((~ (~ (brick ?y))) V (~ (equal ?x ?y)))) )))
Scheme format:
(A (?x) ( (~ (brick ?x)) V
( (E (?y) ((on ?x ?y) & (~ (pyramid ?y))))
& (A (?y) ((~ (on ?x ?y)) V (~ (on ?y ?x))))
& (A (?y) ((brick ?y) V (~ (equal ?x ?y)))) )))
Scheme format:
(A (?x) ( (~ (brick ?x)) V
( (E (?y) ((on ?x ?y) & (~ (pyramid ?y))))
& (A (?z) ((~ (on ?x ?z)) V (~ (on ?z ?x))))
& (A (?w) ((brick ?w) V (~ (equal ?x ?w)))) )))
Scheme format:
(A (?x)
(E (?y)
(A (?z)
(A (?w)
( (~ (brick ?x))
V (((on ?x ?y) & (~ (pyramid ?y)))
& ((~ (on ?x ?z)) V (~ (on ?z ?x)))
& ((brick ?w) V (~ (equal ?x ?w)))) )))))
Scheme format:
(A (?x)
(A (?z)
(A (?w)
( (~ (brick ?x))
V (((on ?x (support ?x)) & (~ (pyramid (support ?x))))
& ((~ (on ?x ?z)) V (~ (on ?z ?x)))
& ((brick ?w) V (~ (equal ?x ?w))))) )))
Scheme format:
( (~ (brick ?x))
V (((on ?x (support ?x)) & (~ (pyramid (support ?x))))
& ((~ (on ?x ?z)) V (~ (on ?z ?x)))
& ((brick ?w) V (~ (equal ?x ?w)))) )
Scheme format:
( ((~ (brick ?x)) V (on ?x (support ?x))) & ((~ (brick ?x)) V (~ (pyramid (support ?x)))) & ((~ (brick ?x)) V (~ (on ?x ?z)) V (~ (on ?z ?x))) & ((~ (brick ?x)) V (brick ?w) V (~ (equal ?x ?w))) )
Scheme format:
((~ (brick ?x)) (on ?x (support ?x))) ((~ (brick ?x)) (~ (pyramid (support ?x)))) ((~ (brick ?x)) (~ (on ?x ?z)) (~ (on ?z ?x))) ((~ (brick ?x)) (brick ?w) (~ (equal ?x ?w)))
Scheme format:
((~ (brick ?x)) (on ?x (support ?x))) ((~ (brick ?y)) (~ (pyramid (support ?y)))) ((~ (brick ?w)) (~ (on ?w ?z)) (~ (on ?z ?w))) ((~ (brick ?u)) (brick ?v) (~ (equal ?u ?v)))
Representation and Reasoning: Unification
Representation and Reasoning: Resolution and Variables
Last updated: 12 February 1996
URL: http://www.indiana.edu/~gasser/Q351/clause.html
Comments:
gasser@salsa.indiana.edu
Copyright 1996,
The Trustees of
Indiana University