A sentence like
If a(X), then one can't decide/conclude anything about a(X) being b(X)
First attempt
b(X) | -b(X) :- a(X).
Second attempt
:- a(X), b(X).
:- a(X), -b(X).
First one makes no change to the solution while second one makes everything unsatisfiable.