Prolog programming books: Difference between revisions

From This Prolog Life
Jump to navigation Jump to search
m (Updated link to Simply Logical at briis.ac.uk)
(3 intermediate revisions by the same user not shown)
Line 10: Line 10:
== More Advanced Applications ==
== More Advanced Applications ==


I regard Peter Flach's [http://amzn.to/2nACWuu Simply Logical: Intelligent Reasoning by Example] as the best advanced text currently available. It deals with both theoretical and practical aspects of logic programming but doesn't assume prior knowledge beyond that you will have gained from "Programming in Prolog".
I regard Peter Flach's [http://amzn.to/2nACWuu Simply Logical: Intelligent Reasoning by Example] as the best advanced text. It deals with both theoretical and practical aspects of logic programming but doesn't assume prior knowledge beyond that you will have gained from "Programming in Prolog".


You can download the programs in the book, and the book as a <abbr title="Portable Document Format">PDF</abbr> file, from the [http://people.cs.bris.ac.uk/~flach/SimplyLogical.html Simply Logical page at Bristol University].
It has an interactive edition at [https://book.simply-logical.space/ simply-logical.space] or you can download the programs in the book, and the book as a <abbr title="Portable Document Format">PDF</abbr> file, from the [http://people.cs.bris.ac.uk/~flach/SimplyLogical.html Simply Logical page at Bristol University].


== The Last Word ==
== The Last Word ==

Revision as of 19:53, 12 May 2018

Out of the many Prolog programming books that I have read, I consider these to be the best.

Starting Out

Prolog is a deep subject, rather than a broad one, so it is best studied in stages.

Clocksin & Mellish's Programming in Prolog is the definitive introductory text on Prolog. Most importantly, it will help you to start programming straight away.

More Advanced Applications

I regard Peter Flach's Simply Logical: Intelligent Reasoning by Example as the best advanced text. It deals with both theoretical and practical aspects of logic programming but doesn't assume prior knowledge beyond that you will have gained from "Programming in Prolog".

It has an interactive edition at simply-logical.space or you can download the programs in the book, and the book as a PDF file, from the Simply Logical page at Bristol University.

The Last Word

Robert Kowalski's classic Logic for Problem Solving is essential reading for Prolog programmers. Logic for Problem Solving, Revisited is a more recent, revised edition.

The original book has been scanned into PDF format and can be downloaded from Robert Kowalski's homepage.

Getting Technical

Performance and memory utilisation become important when Prolog is used to solve complex problems.

David Harel's Algorithmics is a very accessible treatment of program behaviour. It isn't tied to one programming language, and the techniques described are readily applicable to Prolog programs.

Richard O'Keefe's The Craft of Prolog is a superb exposition of the techniques that can be employed to work with Prolog, rather than fighting against it, and the rationale behind them.