Learning Sets of Rules
∀ x, y : Ancestor(x,y) ← Parent(x,y)
∀ x, y : Ancestor(x,y) ← Parent(x,z) ∧ Ancestor(z,y)
Ancestor(x,y) :- Parent(x,y)
Ancestor(x,y) :- Parent(x,z), Ancestor(z,y)
course(A) ← has-word(A, instructor) ∧ ¬has-word(A, good) ∧ link-from(A, B) ∧ has-word(B, problem) ∧ ¬link-from(B, C)
18 of 47