Programming Books

13 Excellent Free Books to Learn Prolog

Last Updated on May 5, 2023

Prolog is a general purpose, declarative, logic programming language, often associated with artificial intelligence, computational linguistics, intelligent database retrieval, and problem solving. It’s widely used in research and education for natural language processing.

Automatic backtracking is one of the most characteristic features of Prolog. It’s a form of searching, fundamental to all artificial intelligence techniques. Prolog also supports multi-directional reasoning; arguments to a procedure can freely be designated inputs and outputs in different ways in different procedure calls. This is a powerful theorem-proving technique. Another key feature of Prolog is that its syntax and semantics are closer to formal logic than say Lisp.

Prolog is generally regarded as a difficult language to get to grips with. But learning the fundamentals of Prolog is definitely worthwhile.


1. Simply Logical by Peter Flach

Simply LogicalSimply Logical – Intelligent Reasoning by Example aims to introduce the reader to a number of topics — logic, Artificial Intelligence and computer programming.

This is a book about intelligent reasoning. Reasoning is the process of drawing conclusions; intelligent reasoning is the kind of reasoning performed by humans.

The latter parts of the book present a number of recent extensions of Logic Programming, most of which have been accessible previously only in conference proceedings and journal articles.

Chapters cover:

  • Logic and Logic Programming – introduces the main concepts in logic programming such as program clauses, query answering, proof trees, and recursive data structures.
  • Clausal logic and resolution: theoretical backgrounds – deals with concepts such as Herbrand models and resolution refutations, as well as meta-theoretical notions like soundness and completeness. The presentation starts with propositional clausal logic, and proceeds via relational clausal logic (without functors) to full clausal logic, and finally arrives at definite clause logic.
  • Logic Programming and Prolog – discusses the practical aspects of Prolog programming examining concepts such as SLD-tree forms, the treatment of arithmetic expressions in Prolog, second-order predicates like setof, and various programming techniques like accumulators and difference lists.
  • Representing structured knowledge – discusses various ways to represent structured knowledge in Prolog.
  • Searching graphs – discusses and implements some basic techniques for finding solutions in search spaces. Their common denominator is that they are exhaustive: that is, in the worst case they will eventually visit every node in the search space along every possible path, before finding a solution.
  • Informed search – best-first search, a complete variant of best-first search called the A algorithm, and non-exhaustive informed search strategies, that can be derived from best-first search by limiting the size of the agenda.
  • Reasoning with natural language.
  • Reasoning with incomplete information.
  • Inductive reasoning.

Read the book


2. Logic, Programming and Prolog (2ed) by Ulf Nilsson and Jan Maluszynski

Logic Programming And PrologThe main objective of Logic, Programming and Prolog is to provide a uniform account of both the foundations of logic programming and simple programming techniques in the programming language Prolog.

Chapters include:

  • Preliminaries – contains a recapitulation of notions basic to logic in general. The chapter discusses concepts related both to model- and proof-theory of predicate logic including notions like language, interpretation, model, logical consequence, logical inference, soundness and completeness. The final section introduces the concept of substitution.
  • Definite Logic Programs – introduces the restricted language of definite programs and discusses the model-theoretic consequences of restricting the language.
  • SLD-Resolution – describes the operational semantics of definite programs.
  • Negation in Logic Programming – discusses the use of negation in logic programming. It introduces the negation-as-definite-failure rule used to implement negation in most Prolog systems and also provides a logical justification of the rule by extending the user’s program with additional axioms.
  • Towards Prolog: Cut and Arithmetic – Cut is introduced as a mechanism for reducing the overhead of Prolog computations. The chapter also discusses the use of predefined arithmetic predicates in Prolog and provides a logical explanation for them.
  • Logic and Databases – describes logic programming from a database point of view.
  • Programming with Recursive Data Structures – demonstrates techniques for defining relations on recursive data-structures, in particular on lists.
  • Amalgamating Object- and Meta-language – introduces the notion of meta- and object-language and illustrates how to use logic programs for describing SLD-resolution. The chapter also introduces some (controversial) built-in predicates available in most Prolog implementations.
  • Logic and Expert Systems – demonstrates how to extend an interpreter from the previous chapter into a simple expert-system shell.
  • Logic and Grammars – shows how to describe grammars in Prolog, starting from context-free grammars. Larger classes of languages are considered. The chapter moves on to introduce the notion of Definite Clause Grammars (DCGs) commonly used for describing both natural and artificial languages in Prolog
  • Searching in a State-space – demonstrates simple techniques for solving search-problems in state-transition graphs and raises some of the difficulties which are inherently associated with such problems.
  • Logic Programming and Concurrency – describes a class of languages commonly called concurrent logic programming languages.
  • Logic Programs with Equality – discusses an approach to integration of logic programming with functional programming based on the use of equations.
  • Constraint Logic Programming – concerns the use of constraints in logic programming.
  • Query-answering in Deductive Databases – concerns the use of constraints in logic programming. A rigorous semantical framework is briefly described.

The book may also be copied and distributed in paper-form for non-profit use only.

Read the book


3. Prolog and Natural-Language Analysis by Fernando C.N. Pereira, Stuart Shieber

Prolog Natural Language AnalysisProlog and Natural Language Analysis provides a concise and practical introduction to logic programming and the logic-programming language Prolog both as vehicles for understanding elementary computational linguistics and as tools for implementing the basic components of natural-language-processing systems.

The main objective of Prolog and Natural-Language Analysis is to provide a working understanding of basic computational linguistic and logic programming concepts.

Throughout this book, the specific concepts and techniques are given rigorous theoretical justification and are demonstrated with working programs that show how Prolog can be used to solve actual problems in syntax, parsing, and semantic interpretation. These examples culminate in a simple working natural-language question-answering system written in Prolog. Extensive bibliographic notes point the reader to related research and further reading.

Chapters cover:

  • Introduction.
  • Database Prolog.
  • Pure Prolog.
  • Further Topics in Natural-Language Analysis.
  • Full Prolog.
  • Interpreters.

The digital edition of the work can be reproduced and distributed subject to specified conditions.

Read the book


4. GNU Prolog by Daniel Diaz

GNU PrologGNU Prolog is a free, open source Prolog compiler with constraint solving over finite domains developed by Daniel Diaz. It is based on the Warren Abstract Machine. The compiler also offers various extensions very useful in practice (global variables, OS interface, sockets, …).

Chapters cover:

  • Introduction.
  • Using GNU Prolog.
  • Debugging.
  • Format of definitions.
  • Prolog directives and control constructs.
  • Prolog built-in predicates.
  • Finite domain solver and built-in predicates.
  • Interfacing Prolog and C.

The author gives permission to make and distribute verbatim copies of his manual provided the copyright notice and this permission notice are preserved on all copies. Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of an identical permission notice.

Read the book


Next page: Page 2 – Adventure in Prolog and more books

Pages in this article:
Page 1 – Simply Logical and more books
Page 2 – Adventure in Prolog and more books
Page 3 – Warren’s Abstract Machine: A Tutorial Reconstruction and more books
Page 4 – Prolog Techniques and more books


All books in this series:

Free Programming Books
AdaALGOL-like programming language, extended from Pascal and other languages
AgdaDependently typed functional language based on intuitionistic Type Theory
ArduinoInexpensive, flexible, open source microcontroller platform
AssemblyAs close to writing machine code without writing in pure hexadecimal
AwkVersatile language designed for pattern scanning and processing language
BashShell and command language; popular both as a shell and a scripting language
BASICBeginner’s All-purpose Symbolic Instruction Code
CGeneral-purpose, procedural, portable, high-level language
C++General-purpose, portable, free-form, multi-paradigm language
C#Combines the power and flexibility of C++ with the simplicity of Visual Basic
ClojureDialect of the Lisp programming language
ClojureScriptCompiler for Clojure that targets JavaScript
COBOLCommon Business-Oriented Language
CoffeeScriptTranscompiles into JavaScript inspired by Ruby, Python and Haskell
CoqDependently typed language similar to Agda, Idris, F* and others
CrystalGeneral-purpose, concurrent, multi-paradigm, object-oriented language
CSSCSS (Cascading Style Sheets) specifies a web page’s appearance
DGeneral-purpose systems programming language with a C-like syntax
DartClient-optimized language for fast apps on multiple platforms
DylanMulti-paradigm language supporting functional and object-oriented coding
ECMAScriptBest known as the language embedded in web browsers
EiffelObject-oriented language designed by Bertrand Meyer
ElixirRelatively new functional language running on the Erlang virtual machine
ErlangGeneral-purpose, concurrent, declarative, functional language
F#Uses functional, imperative, and object-oriented programming methods
FactorDynamic stack-based programming language
ForthImperative stack-based programming language
FortranThe first high-level language, using the first compiler
GoCompiled, statically typed programming language
GroovyPowerful, optionally typed and dynamic language
HaskellStandardized, general-purpose, polymorphically, statically typed language
HTMLHyperText Markup Language
IconWide variety of features for processing and presenting symbolic data
JArray programming language based primarily on APL
JavaGeneral-purpose, concurrent, class-based, object-oriented, high-level language
JavaScriptInterpreted, prototype-based, scripting language
JuliaHigh-level, high-performance language for technical computing
KotlinMore modern version of Java
LabVIEWDesigned to enable domain experts to build power systems quickly
LaTeXProfessional document preparation system and document markup language
LispUnique features - excellent to study programming constructs
LogoDialect of Lisp that features interactivity, modularity, extensibility
LuaDesigned as an embeddable scripting language
MarkdownPlain text formatting syntax designed to be easy-to-read and easy-to-write
Objective-CObject-oriented language that adds Smalltalk-style messaging to C
OCamlThe main implementation of the Caml language
PascalImperative and procedural language designed in the late 1960s
PerlHigh-level, general-purpose, interpreted, scripting, dynamic language
PHPPHP has been at the helm of the web for many years
PostScriptInterpreted, stack-based and Turing complete language
PrologA general purpose, declarative, logic programming language
PureScriptSmall strongly, statically typed language compiling to JavaScript
PythonGeneral-purpose, structured, powerful language
QMLHierarchical declarative language for user interface layout - JSON-like syntax
RDe facto standard among statisticians and data analysts
RacketGeneral-purpose, object-oriented, multi-paradigm, functional language
RakuMember of the Perl family of programming languages
RubyGeneral purpose, scripting, structured, flexible, fully object-oriented language
RustIdeal for systems, embedded, and other performance critical code
ScalaModern, object-functional, multi-paradigm, Java-based language
SchemeA general-purpose, functional language descended from Lisp and Algol
ScratchVisual programming language designed for 8-16 year-old children
SQLAccess and manipulate data held in a relational database management system
Standard MLGeneral-purpose functional language characterized as "Lisp with types"
SwiftPowerful and intuitive general-purpose programming language
TclDynamic language based on concepts of Lisp, C, and Unix shells
TeXMarkup and programming language - create professional quality typeset text
TypeScriptStrict syntactical superset of JavaScript adding optional static typing
ValaObject-oriented language, syntactically similar to C#
VHDLHardware description language used in electronic design automation
VimLPowerful scripting language of the Vim editor
XMLRules for defining semantic tags describing structure ad meaning
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Inline Feedbacks
View all comments