SlideShare a Scribd company logo
INTRODUCTION TO PROLOG
- Brian Hutchinson
Present by -
W.J.A.I.U. Jayaweera- 100227D
G.K.M.C Sajeewa- 100470N
M.M.D.T.K Wijewardane- 100612E
OUTLINE
 Introduction
 Language Features
 More Features
 Behind the scenes
 Language Classifications
 Examples
INTRODUCTION
 Prolog is the most popular language of the logic
programing languages.
 It is goal based language, it has automatic
backtracking and uses recursion.
 Prolog stands for programmation en logique", or
programming in logic."
INTRODUCTION [CTD...]
 Invented by Alain Colmerauer and Philippe Roussel
of the Groupe d'Intelligence Articielle (GIA) in early
1970s.
 The earliest Prolog interpreter was written in Algol
in1972 by Roussel.
 The official ISO standard for Prolog was published
in 1996.
CURRENT IMPLEMENTATIONS
 There are several popular Prolog interpreters
available. They include:
 GNU Prolog (http://pauillac.inria.fr/vdiaz/gnu-
prolog/)
 SWI-Prolog (http://www.swi-prolog.org/)
 Visual Prolog (http://www.visual-
prolog.com/vip6/Download/Default.htm)
 BProlog
(http://www.cad.mse.kyutech.ac.jp/people/zhou/bpr
olog.html)
LANGUAGE FEATURES
Prolog Program
Facts
Rules
(Relationships)
Questions
(Goals)
Clauses
LANGUAGE FEATURES[CTD...]
 Facts-Something that is declared to always be true.
Ex-father(bob,george)
mother(alice,jeffrey)
 Rules- Something which is true only if all conditions
(sub goals) on the right are true
Ex-
parent(X,Y) :- father(X,Y).
parent(X,Y) :- mother(X,Y).
grandparent(X,Z) :- parent(X,Y), parent(Y,Z).
LANGUAGE FEATURES[CTD...]
 Questions- Something which asks from the system
Ex- ?-ancestor(X,cindy),sibling(X,jeffrey)
 Clauses- Something which has a head and a body.
 Fact = head
 Rules = head + body
 Question=body
LANGUAGE FEATURES [CTD...]
Ex-
 uncle(X,Y) :- sibling(X,Z), parent(Z,Y).
(head) (body)
 ?- ancestor(X,cindy),sibling(X,jeffrey)
(body)
 father(john,mary)
(head)
LANGUAGE FEATURES[CTD...]
 Terms - term can be number, constant (Albert) or
variable(X).
 Compound Terms- data structure, convenient way
of grouping relevant data together
Ex- fullname( joe,brown )
student( fullname( joe,brown ), 25 )
Full name , Student are called as functors.
MORE FEATURES
 Order- order matters in prolog, order is top to
bottom.
Ex- dog(rover).
dog(duke).
We enter the following question:
?- dog(X).
Answer : X = rover
 Order is important for the efficiency and correctness
of the program.
MORE FEATURES[CTD...]
 Backtracking-
 prolog stores data in tree.
 It uses depth first search to find answers.
 In its attempt to prove a goal, Prolog sometimes
goes down a dead-end, at which point it needs to
backtrack.ck
MORE FEATURES[CTD...]
Ex- Sample Code
Facts- green(poisonivy).
green(broccoli).
edible(icecream).
edible(broccoli).
Question- ?- green(X),edible(X).
Answer- X = broccoli
MORE FEATURES[CTD...]
Execution trace-
?- green(X),edible(X).
1 1 Call: green(poisoniyy) ?
1 1 Exit: green(poisonivy) ?
2 1 Call: edible(poisonivy) ?
2 1 Fail: edible(poisonivy) ?
1 1 Redo:green(poisonivy)1
1 1 Call: green(broccoli) ?
1 1 Exit: green(broccoli) ?
2 1 Call: edible(broccoli) ?
2 1 Exit: edible(broccoli) ?
Green(p)
Edible(p)
Green(b)
Root
Edible(b)
Answer
MORE FEATURES[CTD...]
 Cuts- The cut is denoted by exclamation mark “!” and
disallows prolog from backtracking past that point.
 Ex-
With Out Cut
grade(G,a) :- G > 90.
grade(G,b) :- G > 80.
grade(G,c) :- G > 70.
grade(G,d) :- G > 60.
grade(_,f).
With Cut
grade2(G,a) :- G > 90, !.
grade2(G,b) :- G > 80, !.
grade2(G,c) :- G > 70, !.
grade2(G,d) :- G > 60, !.
grade2(_,f).
MORE FEATURES[CTD...]
Forced Backtrack With Grade
?- grade(83,X)
X = b;
X = c;
X = d;
X = f
yes
Forced Backtrack With Grade2
?- grade2(83,X)
X = b;
yes
Forced back tracking with semi
colon.
Types of Cuts
Red Cuts
Green Cuts
MORE FEATURES[CTD...]
Recursion- like functional languages prolog uses
recursion.
Ex-
ancestor(X,Z) :- parent(X,Z).
(Base Case)
ancestor(X,Z) :- parent(X,Y),ancestor(Y,Z).
(Recursive Rule)
MORE FEATURES [CTD...]
 Lists- important data structure in prolog and are
processed recursively.
Ex-
[a, b, a, a, c, d]
[]
[the, dog]
List= Head + Tail
List= [Head | Tail ]
Ex-
List- [a,b,a] can be represented as
[a | [b,a] ] or
[a, b | [a]] or
[a, b, a | []]
MORE FEATURES [CTD...]
There are several other features in prolog
 Negation
 Assertion and Retract
BEHIND THE SCENES
RESOLUTION AND UNIFICATION
 Resolution
 The resolution principle,
 If C1 and C2 are Horn clauses and the head of C1 matches
one of the terms in the body of C2 then we can replace the
term in C2 with the body of C1.
 Example :
 takes(Saman, cs123).
 classmates(X, Y) :- takes(X, Z), takes(Y, Z).
 classmates(Saman, Y) :- takes(Y, cs123).
RESOLUTION AND UNIFICATION [CTD…]
 Unification
 Prolog associates variables and values using a process
known as unification
 Variables that receive a value are said to be instantiated
 Example :
 The pattern-matching process used to associate variable X
with Saman and Z with cs123 is known as unification.
RESOLUTION AND UNIFICATION [CTD…]
The unification rules for Prolog :
 A constant unifies only with itself.
 Two structures unify if and only if they have the same
functor and the same number of arguments, and the
corresponding arguments unify recursively.
 Example :
 ?- f(a, b) = f(a, b, c).
No
 A variable unifies with anything.
DEPTH FIRST SEARCH
Prolog uses a depth-first search strategy when
traversing the tree.
 Advantage :
 Less memory usage
 Disadvantage :
 Prolog may descend down an endless branch (Black
holes)
TOP DOWN VERSUS BOTTOM UP
 Top Down Control
 we start from the goal and attempt to reach the
hypotheses
 Bottom Up Control
 we start with the hypotheses and attempt to reach the
goal
BOTTOM UP CONTROL
 Example :
 Method for calculating a fibonacci number,
 Starting with the bases cases and accumulating until it
reaches the goal.
fib(0,1). fib(1,1).
fib(N,F) :- N=M+1, M=K+1, fib(M,G),
fib(K,H), F=G+H, N>1.
:-fib(3,F).
N=3, M=2, K=1,
F = G + H
:-fib(2,F).
N=2, M=1, K=0,
F = G + H
:-fib(1,F).
F = 1
:-fib(1,1).
:-fib(0,F).
F = 1
:-fib(0,1).
:-fib(1,F).
F = 1
:-fib(1,1).
COMPILING PROLOG CODE
 A program exists called wamcc, based on the
Warren Abstract Machine.
 C code may then be compiled to produce stand
alone executable.
GNU Prolog logo
STRENGTHS OF PROLOG [CTD…]
 Simplicity of Prolog
 Ability to model certain problems very concisely and
elegantly
 Capability of solving problems that it wasn't
originally designed to solve
 Ability to manipulate symbolic data
STRENGTHS OF PROLOG [CTD…]
Prolog’s strength to manipulate symbolic data:
“There are well-known examples of symbolic
computation whose implementation in other standard
languages took tens of pages of indigestible code.
When the same algorithms were implemented in
Prolog, the result was a crystal-clear program easily
fitting on one page.”
‒ Bratko
WEAKNESSES OF PROLOG
 Lack of structure
 Issues with readability of Prolog code
 serious implications for the readability and
declarativeness of code due to cut predicate (!).
 Inefficiency of Prolog code
 Logical imperfectness
LANGUAGE CLASSIFICATION
HIERARCHY OF LANGUAGES
According to Programming Language Pragmatics by Michael L.
Scott,
 Declarative
 functional
 Lisp/Scheme
 ML
 Haskell
 dataflow
 Id
 Val
 logic
 Prolog
 VisiCalc
HIERARCHY OF LANGUAGES [CTD…]
 Imperative
 von Neumann
 Fortran
 Pascal
 Basic
 C
 Object-Oriented
 Smalltalk
 Eiel
 C++
 Java
SCOPE
 Scope of a variable
 in scope within a clause
 Scope of the head of each clause
 in global scope
 Scope of constants
 in global scope
• Example
1. hates(X,Y) :- friends(X,Z),hates(Z,Y).
2. loves(X,Y) :- hates(X,Z),hates(Y,Z).
TYPE SYSTEMS
 Prolog is dynamically typed.
 At runtime, if a built-in predicate is given the wrong type
of argument an error will occur.
 For example:
1. ?- X is 1+1.
X = 2
Yes
2. ?- X is 1+dog.
uncaught exception: error(type_error(evaluable,dog/0),(is)/2)
TYPE SYSTEMS [CTD…]
 A term can be quarried to find out its type with
Prolog in the following way:
 ?- number(5).
yes
 ?- number(dog).
no
 ?- var(X).
yes
 ?- var(5).
no
BINDINGS
 Variable Cells
 A variable is stored in a single heap cell.
 This cell contains a tag and a store address of the that
which it is bound to.
 Unbound variables,
 by convention, point at their own cell.
3 REF 5
2 REF 2
BINDINGS [CTD…]
 Structure Cells
 A non-variable term is stored in a structure cell.
 For a structure f(t1:::tn), there will be n + 2 cells in the
heap.
0 STR 1
1 f/n
2 REF 2
…… ……
…… ……
n + 1 REF n + 1
EXAMPLES
1. Implementing the Towers of Hanoi problem
2. Implementing a non-deterministic finite state
automaton
TOWERS OF HANOI
 In this puzzle, we have three pegs and several
disks, initially stacked from largest to smallest on
the left peg
 Our goal is to move the entire tower to the
middle peg
 We can only move one disk at a time
 We can use right peg to temporally hold the
disks
 We can never place a larger disk on a smaller
disk in any peg
A B C
A B C
A B C
A B C
A B C
A B C
A B C
A B C
Recursive solution
- Move N - 1 discs from stack 1 to 3 with the help of stack
2.
- Move the Nth disc from 1 to 2
- Move N - 1 discs from stack 3 to 2 with the help of stack
1
Implementation in Prolog
hanoi(N) :- dohanoi(N, 1, 2, 3).
dohanoi(0, _ , _ , _ ) :- !.
dohanoi(N, A, B, C) :- N_1 is N-1,
dohanoi(N_1, A, C, B),
moveit(A, B),
dohanoi(N_1, C, B, A).
moveit(F, T) :- write([move, F, -->, T]), nl.
Output when n=3
?- hanoi(3).
[move,1,-->,2]
[move,1,-->,3]
[move,2,-->,3]
[move,1,-->,2]
[move,3,-->,1]
[move,3,-->,2]
[move,1,-->,2]
yes
Output when n=4
?- hanoi(4).
[move,1,-->,3]
[move,1,-->,2]
[move,3,-->,2]
[move,1,-->,3]
[move,2,-->,1]
[move,2,-->,3]
[move,1,-->,3]
[move,1,-->,2]
[move,3,-->,2]
[move,3,-->,1]
[move,2,-->,1]
[move,3,-->,2]
[move,1,-->,3]
[move,1,-->,2]
[move,3,-->,2]
yes
NON-DETERMINISTIC FINITE STATE
AUTOMATON
final(s3).
trans(s1,a,s1).
trans(s1,a,s2).
trans(s1,b,s1).
trans(s2,b,s3).
trans(s3,b,s4).
silent(s2,s4).
silent(s3,s1).
accepts(State,[]) :- final(State).
accepts(State, [X|Rest]) :- trans(State,X,State1),
accepts(State1,Rest).
accepts(State, String) :- silent(State,State1),
accepts(State1,String).
Questions we can ask
1) Whether a given string is accepted by the automaton
?- accepts(s1,[a,a,a,b]).
yes
Questions we can ask (cont.)
2) What states can we start in if we accept a certain
string?
?- accepts(S,[a,b]).
S = s1;
S = s3
Questions we can ask (cont.)
3) What are all strings of length 3 that can be accepted by
the automaton?
?- accepts(s1,[X1,X2,X3]).
X1 = a
X2 = a
X3 = a;
X1 = b
X2 = a
X3 = b
yes
CONCLUSION
 Prolog is the most popular language of the logic
programing languages.
 It is a declarative logic programming language
 It is goal based language, it has automatic
backtracking and uses recursion.
THANK YOU

More Related Content

What's hot (20)

PDF
AI 7 | Constraint Satisfaction Problem
Mohammad Imam Hossain
 
PPTX
Lecture 26 local beam search
Hema Kashyap
 
PPTX
AI: Logic in AI
DataminingTools Inc
 
PPT
BackTracking Algorithm: Technique and Examples
Fahim Ferdous
 
PPTX
Greedy algorithms
sandeep54552
 
PPTX
NLP_KASHK:Minimum Edit Distance
Hemantha Kulathilake
 
PDF
List comprehensions
Jordi Gómez
 
PPTX
Chess board problem(divide and conquer)
RASHIARORA8
 
PDF
10 logic+programming+with+prolog
baran19901990
 
PPTX
Backtracking-N Queens Problem-Graph Coloring-Hamiltonian cycle
varun arora
 
PPT
Asymptotic notations
Ehtisham Ali
 
PPT
Prolog basics
shivani saluja
 
PPTX
Asymptotic Notation
Protap Mondal
 
PPT
Divide and conquer
Dr Shashikant Athawale
 
PPTX
15 puzzle problem using branch and bound
Abhishek Singh
 
PDF
Theta notation
Rajesh K Shukla
 
PPTX
Unification and Lifting
Megha Sharma
 
PPTX
DFS and BFS
satya parsana
 
PPTX
Constraint Satisfaction Problem (CSP) : Cryptarithmetic, Graph Coloring, 4- Q...
Mahbubur Rahman
 
AI 7 | Constraint Satisfaction Problem
Mohammad Imam Hossain
 
Lecture 26 local beam search
Hema Kashyap
 
AI: Logic in AI
DataminingTools Inc
 
BackTracking Algorithm: Technique and Examples
Fahim Ferdous
 
Greedy algorithms
sandeep54552
 
NLP_KASHK:Minimum Edit Distance
Hemantha Kulathilake
 
List comprehensions
Jordi Gómez
 
Chess board problem(divide and conquer)
RASHIARORA8
 
10 logic+programming+with+prolog
baran19901990
 
Backtracking-N Queens Problem-Graph Coloring-Hamiltonian cycle
varun arora
 
Asymptotic notations
Ehtisham Ali
 
Prolog basics
shivani saluja
 
Asymptotic Notation
Protap Mondal
 
Divide and conquer
Dr Shashikant Athawale
 
15 puzzle problem using branch and bound
Abhishek Singh
 
Theta notation
Rajesh K Shukla
 
Unification and Lifting
Megha Sharma
 
DFS and BFS
satya parsana
 
Constraint Satisfaction Problem (CSP) : Cryptarithmetic, Graph Coloring, 4- Q...
Mahbubur Rahman
 

Similar to Introduction to Prolog (20)

PPTX
Introduction on Prolog - Programming in Logic
Vishal Tandel
 
PPT
Chaps 1-3-ai-prolog
saru40
 
PPT
PROLOGPROLOGPROLOGPROLOGPROLOGPROLOGPROLOGPROLOGPROLOG
Kdas004
 
PDF
"That scripting language called Prolog"
Sergei Winitzki
 
PPTX
Prolog 7-Languages
Pierre de Lacaze
 
DOCX
Prolog_Programminvfygugy7gtugbugtg_Notes.docx
ap04944
 
PPT
Prolog programming
Young Alista
 
PPT
Prolog programming
Tony Nguyen
 
PPT
Prolog programming
James Wong
 
PPT
Prolog programming
Luis Goldster
 
PPT
Prolog programming
Harry Potter
 
PPT
Prolog programming
David Hoen
 
PPT
Prolog programming
Fraboni Ec
 
PDF
Introduction to prolog
Rakhi Sinha
 
DOCX
COMM 166 Final Research Proposal GuidelinesThe proposal should.docx
monicafrancis71118
 
DOCX
AI Lab Manual.docx
KPRevathiAsstprofITD
 
PDF
PROLOG in artificial intelligence(Basic of pprolog)).pdf
sakshamkumar272464
 
PDF
Prolog,Prolog Programming IN AI.pdf
CS With Logic
 
DOCX
COMM 166 Final Research Proposal GuidelinesThe proposal should.docx
cargillfilberto
 
Introduction on Prolog - Programming in Logic
Vishal Tandel
 
Chaps 1-3-ai-prolog
saru40
 
PROLOGPROLOGPROLOGPROLOGPROLOGPROLOGPROLOGPROLOGPROLOG
Kdas004
 
"That scripting language called Prolog"
Sergei Winitzki
 
Prolog 7-Languages
Pierre de Lacaze
 
Prolog_Programminvfygugy7gtugbugtg_Notes.docx
ap04944
 
Prolog programming
Young Alista
 
Prolog programming
Tony Nguyen
 
Prolog programming
James Wong
 
Prolog programming
Luis Goldster
 
Prolog programming
Harry Potter
 
Prolog programming
David Hoen
 
Prolog programming
Fraboni Ec
 
Introduction to prolog
Rakhi Sinha
 
COMM 166 Final Research Proposal GuidelinesThe proposal should.docx
monicafrancis71118
 
AI Lab Manual.docx
KPRevathiAsstprofITD
 
PROLOG in artificial intelligence(Basic of pprolog)).pdf
sakshamkumar272464
 
Prolog,Prolog Programming IN AI.pdf
CS With Logic
 
COMM 166 Final Research Proposal GuidelinesThe proposal should.docx
cargillfilberto
 
Ad

Recently uploaded (20)

PDF
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 - GLOBAL SUCCESS - CẢ NĂM - NĂM 2024 (VOCABULARY, ...
Nguyen Thanh Tu Collection
 
PPT
Talk on Critical Theory, Part One, Philosophy of Social Sciences
Soraj Hongladarom
 
PDF
The-Ever-Evolving-World-of-Science (1).pdf/7TH CLASS CURIOSITY /1ST CHAPTER/B...
Sandeep Swamy
 
PPTX
STAFF DEVELOPMENT AND WELFARE: MANAGEMENT
PRADEEP ABOTHU
 
PDF
LAW OF CONTRACT (5 YEAR LLB & UNITARY LLB )- MODULE - 1.& 2 - LEARN THROUGH P...
APARNA T SHAIL KUMAR
 
PPTX
2025 Winter SWAYAM NPTEL & A Student.pptx
Utsav Yagnik
 
PDF
LAW OF CONTRACT ( 5 YEAR LLB & UNITARY LLB)- MODULE-3 - LEARN THROUGH PICTURE
APARNA T SHAIL KUMAR
 
PDF
Chapter-V-DED-Entrepreneurship: Institutions Facilitating Entrepreneurship
Dayanand Huded
 
PDF
Generative AI: it's STILL not a robot (CIJ Summer 2025)
Paul Bradshaw
 
PPTX
Unit 2 COMMERCIAL BANKING, Corporate banking.pptx
AnubalaSuresh1
 
PPTX
Universal immunization Programme (UIP).pptx
Vishal Chanalia
 
PPTX
grade 5 lesson matatag ENGLISH 5_Q1_PPT_WEEK4.pptx
SireQuinn
 
PPTX
Soil and agriculture microbiology .pptx
Keerthana Ramesh
 
PDF
Lesson 2 - WATER,pH, BUFFERS, AND ACID-BASE.pdf
marvinnbustamante1
 
PPTX
Growth and development and milestones, factors
BHUVANESHWARI BADIGER
 
PDF
Isharyanti-2025-Cross Language Communication in Indonesian Language
Neny Isharyanti
 
PPTX
SPINA BIFIDA: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
PPTX
I AM MALALA The Girl Who Stood Up for Education and was Shot by the Taliban...
Beena E S
 
PDF
The Constitution Review Committee (CRC) has released an updated schedule for ...
nservice241
 
PPTX
How to Set Maximum Difference Odoo 18 POS
Celine George
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 - GLOBAL SUCCESS - CẢ NĂM - NĂM 2024 (VOCABULARY, ...
Nguyen Thanh Tu Collection
 
Talk on Critical Theory, Part One, Philosophy of Social Sciences
Soraj Hongladarom
 
The-Ever-Evolving-World-of-Science (1).pdf/7TH CLASS CURIOSITY /1ST CHAPTER/B...
Sandeep Swamy
 
STAFF DEVELOPMENT AND WELFARE: MANAGEMENT
PRADEEP ABOTHU
 
LAW OF CONTRACT (5 YEAR LLB & UNITARY LLB )- MODULE - 1.& 2 - LEARN THROUGH P...
APARNA T SHAIL KUMAR
 
2025 Winter SWAYAM NPTEL & A Student.pptx
Utsav Yagnik
 
LAW OF CONTRACT ( 5 YEAR LLB & UNITARY LLB)- MODULE-3 - LEARN THROUGH PICTURE
APARNA T SHAIL KUMAR
 
Chapter-V-DED-Entrepreneurship: Institutions Facilitating Entrepreneurship
Dayanand Huded
 
Generative AI: it's STILL not a robot (CIJ Summer 2025)
Paul Bradshaw
 
Unit 2 COMMERCIAL BANKING, Corporate banking.pptx
AnubalaSuresh1
 
Universal immunization Programme (UIP).pptx
Vishal Chanalia
 
grade 5 lesson matatag ENGLISH 5_Q1_PPT_WEEK4.pptx
SireQuinn
 
Soil and agriculture microbiology .pptx
Keerthana Ramesh
 
Lesson 2 - WATER,pH, BUFFERS, AND ACID-BASE.pdf
marvinnbustamante1
 
Growth and development and milestones, factors
BHUVANESHWARI BADIGER
 
Isharyanti-2025-Cross Language Communication in Indonesian Language
Neny Isharyanti
 
SPINA BIFIDA: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
I AM MALALA The Girl Who Stood Up for Education and was Shot by the Taliban...
Beena E S
 
The Constitution Review Committee (CRC) has released an updated schedule for ...
nservice241
 
How to Set Maximum Difference Odoo 18 POS
Celine George
 
Ad

Introduction to Prolog

  • 1. INTRODUCTION TO PROLOG - Brian Hutchinson Present by - W.J.A.I.U. Jayaweera- 100227D G.K.M.C Sajeewa- 100470N M.M.D.T.K Wijewardane- 100612E
  • 2. OUTLINE  Introduction  Language Features  More Features  Behind the scenes  Language Classifications  Examples
  • 3. INTRODUCTION  Prolog is the most popular language of the logic programing languages.  It is goal based language, it has automatic backtracking and uses recursion.  Prolog stands for programmation en logique", or programming in logic."
  • 4. INTRODUCTION [CTD...]  Invented by Alain Colmerauer and Philippe Roussel of the Groupe d'Intelligence Articielle (GIA) in early 1970s.  The earliest Prolog interpreter was written in Algol in1972 by Roussel.  The official ISO standard for Prolog was published in 1996.
  • 5. CURRENT IMPLEMENTATIONS  There are several popular Prolog interpreters available. They include:  GNU Prolog (http://pauillac.inria.fr/vdiaz/gnu- prolog/)  SWI-Prolog (http://www.swi-prolog.org/)  Visual Prolog (http://www.visual- prolog.com/vip6/Download/Default.htm)  BProlog (http://www.cad.mse.kyutech.ac.jp/people/zhou/bpr olog.html)
  • 7. LANGUAGE FEATURES[CTD...]  Facts-Something that is declared to always be true. Ex-father(bob,george) mother(alice,jeffrey)  Rules- Something which is true only if all conditions (sub goals) on the right are true Ex- parent(X,Y) :- father(X,Y). parent(X,Y) :- mother(X,Y). grandparent(X,Z) :- parent(X,Y), parent(Y,Z).
  • 8. LANGUAGE FEATURES[CTD...]  Questions- Something which asks from the system Ex- ?-ancestor(X,cindy),sibling(X,jeffrey)  Clauses- Something which has a head and a body.  Fact = head  Rules = head + body  Question=body
  • 9. LANGUAGE FEATURES [CTD...] Ex-  uncle(X,Y) :- sibling(X,Z), parent(Z,Y). (head) (body)  ?- ancestor(X,cindy),sibling(X,jeffrey) (body)  father(john,mary) (head)
  • 10. LANGUAGE FEATURES[CTD...]  Terms - term can be number, constant (Albert) or variable(X).  Compound Terms- data structure, convenient way of grouping relevant data together Ex- fullname( joe,brown ) student( fullname( joe,brown ), 25 ) Full name , Student are called as functors.
  • 11. MORE FEATURES  Order- order matters in prolog, order is top to bottom. Ex- dog(rover). dog(duke). We enter the following question: ?- dog(X). Answer : X = rover  Order is important for the efficiency and correctness of the program.
  • 12. MORE FEATURES[CTD...]  Backtracking-  prolog stores data in tree.  It uses depth first search to find answers.  In its attempt to prove a goal, Prolog sometimes goes down a dead-end, at which point it needs to backtrack.ck
  • 13. MORE FEATURES[CTD...] Ex- Sample Code Facts- green(poisonivy). green(broccoli). edible(icecream). edible(broccoli). Question- ?- green(X),edible(X). Answer- X = broccoli
  • 14. MORE FEATURES[CTD...] Execution trace- ?- green(X),edible(X). 1 1 Call: green(poisoniyy) ? 1 1 Exit: green(poisonivy) ? 2 1 Call: edible(poisonivy) ? 2 1 Fail: edible(poisonivy) ? 1 1 Redo:green(poisonivy)1 1 1 Call: green(broccoli) ? 1 1 Exit: green(broccoli) ? 2 1 Call: edible(broccoli) ? 2 1 Exit: edible(broccoli) ? Green(p) Edible(p) Green(b) Root Edible(b) Answer
  • 15. MORE FEATURES[CTD...]  Cuts- The cut is denoted by exclamation mark “!” and disallows prolog from backtracking past that point.  Ex- With Out Cut grade(G,a) :- G > 90. grade(G,b) :- G > 80. grade(G,c) :- G > 70. grade(G,d) :- G > 60. grade(_,f). With Cut grade2(G,a) :- G > 90, !. grade2(G,b) :- G > 80, !. grade2(G,c) :- G > 70, !. grade2(G,d) :- G > 60, !. grade2(_,f).
  • 16. MORE FEATURES[CTD...] Forced Backtrack With Grade ?- grade(83,X) X = b; X = c; X = d; X = f yes Forced Backtrack With Grade2 ?- grade2(83,X) X = b; yes Forced back tracking with semi colon. Types of Cuts Red Cuts Green Cuts
  • 17. MORE FEATURES[CTD...] Recursion- like functional languages prolog uses recursion. Ex- ancestor(X,Z) :- parent(X,Z). (Base Case) ancestor(X,Z) :- parent(X,Y),ancestor(Y,Z). (Recursive Rule)
  • 18. MORE FEATURES [CTD...]  Lists- important data structure in prolog and are processed recursively. Ex- [a, b, a, a, c, d] [] [the, dog] List= Head + Tail List= [Head | Tail ] Ex- List- [a,b,a] can be represented as [a | [b,a] ] or [a, b | [a]] or [a, b, a | []]
  • 19. MORE FEATURES [CTD...] There are several other features in prolog  Negation  Assertion and Retract
  • 21. RESOLUTION AND UNIFICATION  Resolution  The resolution principle,  If C1 and C2 are Horn clauses and the head of C1 matches one of the terms in the body of C2 then we can replace the term in C2 with the body of C1.  Example :  takes(Saman, cs123).  classmates(X, Y) :- takes(X, Z), takes(Y, Z).  classmates(Saman, Y) :- takes(Y, cs123).
  • 22. RESOLUTION AND UNIFICATION [CTD…]  Unification  Prolog associates variables and values using a process known as unification  Variables that receive a value are said to be instantiated  Example :  The pattern-matching process used to associate variable X with Saman and Z with cs123 is known as unification.
  • 23. RESOLUTION AND UNIFICATION [CTD…] The unification rules for Prolog :  A constant unifies only with itself.  Two structures unify if and only if they have the same functor and the same number of arguments, and the corresponding arguments unify recursively.  Example :  ?- f(a, b) = f(a, b, c). No  A variable unifies with anything.
  • 24. DEPTH FIRST SEARCH Prolog uses a depth-first search strategy when traversing the tree.  Advantage :  Less memory usage  Disadvantage :  Prolog may descend down an endless branch (Black holes)
  • 25. TOP DOWN VERSUS BOTTOM UP  Top Down Control  we start from the goal and attempt to reach the hypotheses  Bottom Up Control  we start with the hypotheses and attempt to reach the goal
  • 26. BOTTOM UP CONTROL  Example :  Method for calculating a fibonacci number,  Starting with the bases cases and accumulating until it reaches the goal. fib(0,1). fib(1,1). fib(N,F) :- N=M+1, M=K+1, fib(M,G), fib(K,H), F=G+H, N>1. :-fib(3,F). N=3, M=2, K=1, F = G + H :-fib(2,F). N=2, M=1, K=0, F = G + H :-fib(1,F). F = 1 :-fib(1,1). :-fib(0,F). F = 1 :-fib(0,1). :-fib(1,F). F = 1 :-fib(1,1).
  • 27. COMPILING PROLOG CODE  A program exists called wamcc, based on the Warren Abstract Machine.  C code may then be compiled to produce stand alone executable. GNU Prolog logo
  • 28. STRENGTHS OF PROLOG [CTD…]  Simplicity of Prolog  Ability to model certain problems very concisely and elegantly  Capability of solving problems that it wasn't originally designed to solve  Ability to manipulate symbolic data
  • 29. STRENGTHS OF PROLOG [CTD…] Prolog’s strength to manipulate symbolic data: “There are well-known examples of symbolic computation whose implementation in other standard languages took tens of pages of indigestible code. When the same algorithms were implemented in Prolog, the result was a crystal-clear program easily fitting on one page.” ‒ Bratko
  • 30. WEAKNESSES OF PROLOG  Lack of structure  Issues with readability of Prolog code  serious implications for the readability and declarativeness of code due to cut predicate (!).  Inefficiency of Prolog code  Logical imperfectness
  • 32. HIERARCHY OF LANGUAGES According to Programming Language Pragmatics by Michael L. Scott,  Declarative  functional  Lisp/Scheme  ML  Haskell  dataflow  Id  Val  logic  Prolog  VisiCalc
  • 33. HIERARCHY OF LANGUAGES [CTD…]  Imperative  von Neumann  Fortran  Pascal  Basic  C  Object-Oriented  Smalltalk  Eiel  C++  Java
  • 34. SCOPE  Scope of a variable  in scope within a clause  Scope of the head of each clause  in global scope  Scope of constants  in global scope • Example 1. hates(X,Y) :- friends(X,Z),hates(Z,Y). 2. loves(X,Y) :- hates(X,Z),hates(Y,Z).
  • 35. TYPE SYSTEMS  Prolog is dynamically typed.  At runtime, if a built-in predicate is given the wrong type of argument an error will occur.  For example: 1. ?- X is 1+1. X = 2 Yes 2. ?- X is 1+dog. uncaught exception: error(type_error(evaluable,dog/0),(is)/2)
  • 36. TYPE SYSTEMS [CTD…]  A term can be quarried to find out its type with Prolog in the following way:  ?- number(5). yes  ?- number(dog). no  ?- var(X). yes  ?- var(5). no
  • 37. BINDINGS  Variable Cells  A variable is stored in a single heap cell.  This cell contains a tag and a store address of the that which it is bound to.  Unbound variables,  by convention, point at their own cell. 3 REF 5 2 REF 2
  • 38. BINDINGS [CTD…]  Structure Cells  A non-variable term is stored in a structure cell.  For a structure f(t1:::tn), there will be n + 2 cells in the heap. 0 STR 1 1 f/n 2 REF 2 …… …… …… …… n + 1 REF n + 1
  • 39. EXAMPLES 1. Implementing the Towers of Hanoi problem 2. Implementing a non-deterministic finite state automaton
  • 40. TOWERS OF HANOI  In this puzzle, we have three pegs and several disks, initially stacked from largest to smallest on the left peg
  • 41.  Our goal is to move the entire tower to the middle peg  We can only move one disk at a time  We can use right peg to temporally hold the disks  We can never place a larger disk on a smaller disk in any peg
  • 42. A B C
  • 43. A B C
  • 44. A B C
  • 45. A B C
  • 46. A B C
  • 47. A B C
  • 48. A B C
  • 49. A B C
  • 50. Recursive solution - Move N - 1 discs from stack 1 to 3 with the help of stack 2. - Move the Nth disc from 1 to 2 - Move N - 1 discs from stack 3 to 2 with the help of stack 1
  • 51. Implementation in Prolog hanoi(N) :- dohanoi(N, 1, 2, 3). dohanoi(0, _ , _ , _ ) :- !. dohanoi(N, A, B, C) :- N_1 is N-1, dohanoi(N_1, A, C, B), moveit(A, B), dohanoi(N_1, C, B, A). moveit(F, T) :- write([move, F, -->, T]), nl.
  • 52. Output when n=3 ?- hanoi(3). [move,1,-->,2] [move,1,-->,3] [move,2,-->,3] [move,1,-->,2] [move,3,-->,1] [move,3,-->,2] [move,1,-->,2] yes
  • 53. Output when n=4 ?- hanoi(4). [move,1,-->,3] [move,1,-->,2] [move,3,-->,2] [move,1,-->,3] [move,2,-->,1] [move,2,-->,3] [move,1,-->,3] [move,1,-->,2] [move,3,-->,2] [move,3,-->,1] [move,2,-->,1] [move,3,-->,2] [move,1,-->,3] [move,1,-->,2] [move,3,-->,2] yes
  • 56. accepts(State,[]) :- final(State). accepts(State, [X|Rest]) :- trans(State,X,State1), accepts(State1,Rest). accepts(State, String) :- silent(State,State1), accepts(State1,String).
  • 57. Questions we can ask 1) Whether a given string is accepted by the automaton ?- accepts(s1,[a,a,a,b]). yes
  • 58. Questions we can ask (cont.) 2) What states can we start in if we accept a certain string? ?- accepts(S,[a,b]). S = s1; S = s3
  • 59. Questions we can ask (cont.) 3) What are all strings of length 3 that can be accepted by the automaton? ?- accepts(s1,[X1,X2,X3]). X1 = a X2 = a X3 = a; X1 = b X2 = a X3 = b yes
  • 60. CONCLUSION  Prolog is the most popular language of the logic programing languages.  It is a declarative logic programming language  It is goal based language, it has automatic backtracking and uses recursion.

Editor's Notes

  • #7: A Prolog program consists of facts, rules (relationships), and questions (goals),all of which are clauses.
  • #8: The first line states that bob is the father of george, the second line states that alice is the mother of jeffrey. Facts represents the data base of the programme.The comma denotes the logical and relationship. For example, the third rule says that X is the grandparent of Z if X is the parent of some Y, and Y is the parentof Z. Notice that in Prolog variables begin with an upper-case letter. Rules based on facts. Complex rules are based on simple rules
  • #9: These question (or goal) is asking: is there somebody, X, who is an ancestor of cindy, where this same X is a sibling to jerey.Prolog will combine facts and rules to answer this question.Facts rules and questions are altogether called as clauses.
  • #10: 1- rule2-quetsion3-fact
  • #11: Prolog variable are upper case letters.Compound terms are user as data structures. 1- contains first name and last name 2- full name + age
  • #12: In a pure logic programming language, order does not affect the meaning ofthe program. However, as you will see in later section, in Prolog order is veryimportant for the effciency and even the correctness of the program
  • #17: The semi-colon, in a sense, tells Prolog to imagine that the solution it came upwith had failed. Prolog then backtracks and attempts to find another solution.In grade 2 forced backtracking did not work due to the cut.
  • #20: Programmers may add or remove clauses from a program dynamically, withassert and retract. Retract(C) removes the firrst instance of clause.Assert typically has two forms, asserta(C) and assertz(C), which insert clause C at the beginning and end of the program, respectively
  • #21: In this section we consider a variety of topics about, how Prolog does what it does, strengths weaknesses
  • #22: These are two approaches use with Prolog when proving goalsHorn clauses is a clause who’s,head is true if the body is true
  • #23: B) The process use to associate variables and values in Prolog is unification.A) In Prolog,saying that two terms are equal is saying that they are unifiable.
  • #24: A) If the other thing has a value, then the variable is instantiated. If the other thing is an uninstantiated variable, then the two variables are associated in such a way that if either is given a value later, that value will be shared by both.
  • #25: B) The process of backtracking which was mentioned, is essentially a traversal of a tree.A) DisadvantageEndless branches will, preventing it from ever finding the solution
  • #26: B) There are two principal ways in which,sub goals can be generated: top-down - recursive and bottom-up - iterativeA) Prolog uses the technique of bottom-up control
  • #27: B) Bottom-up method, more iterative more efficient
  • #28: B) wamcc compiles Prolog code to C code
  • #29: 3rd point - The flexibility to choose which variables to instantiate in a goal make4th point – This makes it a very useful tool for artificial intelligence applications
  • #32: In this section Prolog will be classified according to, its place in the language hierarchy,its scope, bindings and type systems.
  • #33: B) Main two types: Declarative ImperativeA) Prolog is a Declarative – Logic language
  • #35: B) In Prolog there are no,procedures other typical blocks of code therefore concept of scope is a little different for Prolog1) Each X refers to the same thing in first lineThe variable X in line one has nothing to do with the X in line two2) The head of each clause can be either a fact or part of a ruleThe predicate hates(X;Z) in second line refers to the same predicate in the first line
  • #36: A) In the first case checks whether, 1+1 equals 2In the second case trying to checks solution for 1+dog, as argument type dog doesn’t match with the given predicate, Prolog produces an exceptionHowever, this program can be compiled with no problem, GNU Prolog compiler does no type-checking at compile time.All type checking would have to occur at run-time.
  • #38: B) Terms in Prolog are stored in an “addressable heap”.There are, variable cells structure cells
  • #39: A) f is the functorti are the remaining items in this data structure, First, there will be a structure cell (denoted STR), which points to the address of the functor cell.Structure cell, and the functor cell need not be contiguous.The functor cell will always be followed by n contiguous blocks containing the cells of the terms ti.
  • #40: 2 -> In theory of computing
  • #41: Ancient, famousEverybody knows itJust to refresh ur memory
  • #42: In this example, goal is moving the entire left stack to middle stack3 rules
  • #50: We are done.But this is for n equals 3For a general solution we have to consider an arbitrary N value
  • #51: In the general solution that can be implemented to solve using a computer, there are 3 steps involved1Pls remember our final goal is to move the stack 1 to stack 2 not to 323Recursive solution, we considering an arbitrary N valueMoving N-1 -> similar and smaller versionDoesn’t violate the rule: larger cant be on smaller
  • #52: 1st rule -> start2nd -> terminate. Stopping condition3N A B C F T are variables4Write -> implemented function in prolog. Like println in javaNothing more is needed
  • #53: Same as we did it manually
  • #55: 2nd exampleImplementing ----- in prolog
  • #56: Have to define some FactsConstants not variablesDefines this state diagramStore it in prolog
  • #57: Basic function of FA to accept strings 1st -> no string
  • #58: What we can get from this implementation
  • #61: Declarative----- imperative