Negation In Prolog



[Last post was titled wrong. Don't let the subject
confuse you; it is not the question I am asking!]

Hi,

I have been looking at Prolog over the last week or so and have a
question about negation.

I have been trying to write a question and in the process have thought
a little about negation in Prolog. Am I off the mark in my
understanding?:

----------

The logical statement

not(p(X1, X2, ..., Xn))

basically means "No X1, X2, ..., and Xn exist where p(X1, ... Xn)."

However, in Prolog, this only works if all of Xi are first given a
finite universe of possible values, before not(p(...)) is considered.

Is this true?

As a practical example, in a "family tree" Prolog program/database,
you might try to include the rule

single(X) :- not(married(X)).

but this won't work with the query single(Q) because you have not
established a finite universe for Q. You could instead say:

single(X) :- person(X), not(married(X)).

and make sure that person(X) is true for all the "people" you are
concerned about.

----------

Is that correct?

I cannot think of a situation where you would need an infinite
universe. I have thought about, for example, the natural numbers as an
infinite universe for an argument to NOT(p(...)) but it seems the
rule can always be rewritten to not us NOT.

For example, in

negative(X) :- X < 0.
nonnegative(X) :- not(negative(X).

nonnegative can just be written:

nonnegative(X) :- X >= 0.

Are they any examples you know of where an easy rewrite like this is
not possible?

Thanks,
Sam




Hi,

I have been looking at Prolog over the last week or so and have a
question about negation.

I have been trying to write a question and in the process have thought
a little about negation in Prolog. Am I off the mark in my
understanding?:

----------

The logical statement

not(p(X1, X2, ..., Xn))

basically means "No X1, X2, ..., and Xn exist where p(X1, ... Xn)."

However, in Prolog, this only works if all of Xi are first given a
finite universe of possible values, before not(p(...)) is considered.

Is this true?

As a practical example, in a "family tree" Prolog program/database,
you might try to include the rule

single(X) :- not(married(X)).

but this won't work with the query single(Q) because you have not
established a finite universe for Q. You could instead say:

single(X) :- person(X), not(married(X)).

and make sure that person(X) is true for all the "people" you are
concerned about.

----------

Is that correct?

I cannot think of a situation where you would need an infinite
universe. I have thought about, for example, the natural numbers as an
infinite universe for an argument to NOT(p(...)) but it seems the
rule can always be rewritten to not us NOT.

For example, in

negative(X) :- X < 0.
nonnegative(X) :- not(negative(X).

nonnegative can just be written:

nonnegative(X) :- X >= 0.

Are they any examples you know of where an easy rewrite like this is
not possible?

Thanks,
Sam

.



Relevant Pages

  • Re: Negation In Prolog
    ... > a little about negation in Prolog. ... > finite universe of possible values, ... > Are they any examples you know of where an easy rewrite like this is ...
    (comp.lang.prolog)
  • Re: Negation In Prolog
    ... Negation is a dodgy subject. ... > a little about negation in Prolog. ... > finite universe of possible values, ... > Are they any examples you know of where an easy rewrite like this is ...
    (comp.lang.prolog)
  • How to express (NOT A) AND (NOT B)
    ... a little about negation in Prolog. ... finite universe of possible values, ... Are they any examples you know of where an easy rewrite like this is ...
    (comp.lang.prolog)