I'm developing (in Java), for fun, an application which uses an unification algorithm.

I have chosen that my unification algorithm returns all the possible unifications. For example, if I try to solve

add(X,Y) = succ(succ(0))

it returns

{X = succ(succ(0)), Y = 0}, {X = succ(0), Y = succ(0)}, {X = 0, Y = succ(succ(0))}

However, in some cases, there exists an infinite number of possible unifications (e.g. X > Y = true).

Does someone know am algorithm allowing to determine if an infinite number of unifications may be encountered?

Thanks in advance

link|improve this question
feedback

1 Answer

In the context of Prolog, when you say "unification", you usually mean syntactic unification. Therefore, add(X, Y) and succ(succ(0)), do not unify (as terms), because their functors and arities differ. You seem to be referring to unification modulo theories, where distinct terms like add(X, Y) and succ(succ(0)) can be unified provided some additional equations or predicates are satisfied. Syntactic unification is decidable, and the number of possible unifiers is infinite if, after applying the most general unifier, you still have variables in both terms. Unification modulo theories is in general not decidable. To see that already basic questions can be hard consider for example the unification problem N > 2, X^N + Y^N = Z^N over the integers, which, if you could easily algorithmically decide whether or not a solution exists (i.e., whether the terms are unifiable modulo integer arithmetic), would immediately settle Fermat's Last Theorem. Consider also Matiyasevich's theorem and similar undecidability results.

link|improve this answer
1  
Correct. What the OP is trying to implement seems to be a theorem prover for natural numbers, which is necessarily incomplete by Gödel's theorem. – larsmans Nov 11 '10 at 13:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.