[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: NPR, Godel, Semantic Web

  • From: "C. M. Sperberg-McQueen" <cmsmcq@a...>
  • To: xml-dev@l...
  • Date: Tue, 08 May 2001 08:24:10 -0600

RE: NPR
At 2001-05-07 20:11, Mike Champion wrote:
>So, are there any known "truths" expressible in Prolog
>that (plausibly) can't be "inferenced" with its rules?

Sure.  Prolog texts don't talk about them in these
terms (as Goedel sentences), but Prolog texts almost
always mention, at some point, that depending on
how you write your predicates some things which
obviously follow from your program (viewed declaratively)
cannot in fact be inferred by the Prolog system
(working procedurally).

First example:

/* All humans are descended from Adam and Eve */

human(adam).
human(eve).
human(N) :- descendant(N,adam).
human(N) :- descendant(N,eve).

descendant(N,N).
descendant(N,N2) :- parent(N,N3), descendant(N3,N2).

parent(cain,adam).
parent(cain,eve).
parent(abel,adam).
...

This will (I think -- I'm kind of rusty and haven't
run this), when provided with a suitable set of facts
involving 'parent', produce the expected result.
It will for example, infer that 'abel' is human.

Change the order of the rules for 'human', however,
to 3412, however, and the system will have trouble
figuring out even that 'adam' is human.

An alternative view of the same problem:  consider
the two standard definitions for appending two lists,
first the general one:

   append([],L,L).
   append([A|B],C,[A|D]) :- append(B,C,D).

and next the restricted one:

   append([],L,L) :- !.
   append([A|B],C,[A|D]) :- append(B,C,D).

The second one works only when at the initial call the
first two arguments are instantiated and the third is
possibly not instantiated.  The first one works in other
cases as well: you can use it to generate all the
prefixes or all the suffixes of a list, by calling it
with only the third parameter instantiated.

The fact that the introduction of the cut (!) makes
certain inferences inaccessible is the whole point of
the discussion (well, almost the whole point; the
other point usually made is that for the restricted
case it's designed for, the second form of the predicate
is typically lots faster and uses less memory).

best regards,

Michael Sperberg-McQueen


PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.