Slide 14.8: Resolution Slide 14.10: Examples of resolution Home |
b ← a.
and
c ← b.
b, c ← a, b.
and canceling the b
,
b, c ← a, b.
gives
c ← a.
An Example
mammal( human ).
and one asks whether a human is a mammal:
← mammal( human ).
Using resolution, the system combines the two Horn clauses into
mammal( human ) ← mammal( human ).
and then cancels both sides to obtain
←
Thus, the system has found that indeed a human is a mammal and would respond to the query with “Yes.”