Example
mother(M,C) :- parent(M,C), female(M).
Find the first functor that unifies to the query
Use the conjuncts on the right of that rule as subgoals
- Prove them in order
- If all are true, it is proven
- Backtrack for additional answers or until failure