For Friday No reading Prolog handout 3 Chapter 9, exercises 9-11.

Slides:



Advertisements
Similar presentations
Artificial Intelligence: Natural Language and Prolog
Advertisements

Logic Programming Lecture 1: Getting started. Getting started We’ll use SICStus Prolog Free for UofE students Available on all DICE machines
Chapter 11 :: Logic Languages
1. An Overview of Prolog.
Prolog.
LING 388: Language and Computers Sandiway Fong Lecture 5: 9/5.
Introduction to PROLOG ME 409 Lab - 1. Introduction to PROLOG.
LING 388: Language and Computers Sandiway Fong Lecture 5: 9/8.
COMMONWEALTH OF AUSTRALIA Copyright Regulations 1969 WARNING This material has been reproduced and communicated to you by or on behalf of Monash University.
Prolog The language of logic. History Kowalski: late 60’s Logician who showed logical proof can support computation. Colmerauer: early 70’s Developed.
1 Introduction to Prolog References: – – Bratko, I., Prolog Programming.
1 Logic Programming. 2 A little bit of Prolog Objects and relations between objects Facts and rules. Upper case are variables. parent(pam, bob).parent(tom,bob).
1 COMP313A Programming Languages Logic Programming (3)
About prolog  History  Symbolic Programming Language  Logic Programming Language  Declarative Programming Language.
4. PROLOG Data Objects And PROLOG Arithmetic
CS 330 Programming Languages 12 / 02 / 2008 Instructor: Michael Eckmann.
Chapter 12 - Logic Programming
MB: 2 March 2001CS360 Lecture 31 Programming in Logic: Prolog Prolog’s Declarative & Procedural Semantics Readings: Sections
CS 330 Programming Languages 12 / 12 / 2006 Instructor: Michael Eckmann.
For Friday Read “lectures” 1-5 of Learn Prolog Now: prolog-now/
(9.1) COEN Logic Programming  Logic programming and predicate calculus  Prolog statements  Facts and rules  Matching  Subgoals and backtracking.
ISBN Chapter 16 Logic Programming Languages.
Logic Programming Languages
Formal Models of Computation Part II The Logic Model
Notes for Chapter 12 Logic Programming The AI War Basic Concepts of Logic Programming Prolog Review questions.
For Wednesday Read chapter 10 Prolog Handout 4. Exam 1 Monday Take home due at the exam.
30/09/04 AIPP Lecture 3: Recursion, Structures, and Lists1 Recursion, Structures, and Lists Artificial Intelligence Programming in Prolog Lecturer: Tim.
F28PL1 Programming Languages Lecture 16: Prolog 1.
For Wednesday No new reading Prolog handout 2 Chapter 9, exercise 4.
For Wednesday Read “lectures” 7-10 of Learn Prolog Now Chapter 9, exs 4 and 6. –6 must be in Horn clause form Prolog Handout 2.
Introduction to Prolog Facts, Questions & Rules Atoms & Variables.
CT214 – Logical Foundations of Computing Lecture 8 Introduction to Prolog.
For Monday Read “lectures” 6,9-12 of Learn Prolog Now: saarland.de/~kris/learn-prolog-now/ saarland.de/~kris/learn-prolog-now/
Logic Programming CSC 358/ Outline Pattern matching Unification Logic programming.
By: Cory Canter CSC 415 Programming Languages. History  Created by Alain Colmerauer, Phillipe Roussel and Robert Kowalski in 1971  Started as a natural.
Ch. 13 Ch. 131 jcmt CSE 3302 Programming Languages CSE3302 Programming Languages (notes?) Dr. Carter Tiernan.
For Monday Read “lectures” 1-5 of Learn Prolog Now: prolog-now/
UNIVERSITI TENAGA NASIONAL CMPB454 ARTIFICIAL INTELLIGENCE (AI) CHAPTER 6 LOGIC PROGRAMMING USING PROLOG CHAPTER 6 LOGIC PROGRAMMING USING PROLOG Instructor:
Introduction to Prolog. Outline What is Prolog? Prolog basics Prolog Demo Syntax: –Atoms and Variables –Complex Terms –Facts & Queries –Rules Examples.
CS 337 Programming Languages Logic Programming I (Logic, Intro to Prolog)
© Kenneth C. Louden, Chapter 12 - Logic Programming Programming Languages: Principles and Practice, 2nd Ed. Kenneth C. Louden.
Programming Languages Third Edition Chapter 4 Logic Programming.
Lists in Prolog Sections 3.1, 3.2. Lists n List = sequence of values –[1, 2, 3, 4, 5] –[bob, brian, cathy, mark, david, loretta] –[birds(4, calling),
Programming Language Concepts Lecture 17 Prepared by Manuel E. Bermúdez, Ph.D. Associate Professor University of Florida Logic Programming.
ISBN Chapter 16 Logic Programming Languages.
For Monday Exam 1 is Monday Takehome due Prolog Handout 3 due.
Artificial Intelligence CIS 342 The College of Saint Rose David Goldschmidt, Ph.D.
For Friday No reading Prolog Handout 2. Homework.
Prolog 3 Tests and Backtracking 1. Arithmetic Operators Operators for arithmetic and value comparisons are built-in to Prolog = always accessible / don’t.
07/10/04 AIPP Lecture 5: List Processing1 List Processing Artificial Intelligence Programming in Prolog Lecturer: Tim Smith Lecture 5 07/10/04.
For Wednesday No reading Prolog handout 2 Chapter 9, exercise 4.
Prolog Fundamentals. 2 Review Last Lecture A Prolog program consists of a database of facts and rules, and queries (questions). –Fact:.... –Rule:... :-....
Logic Programming Logic programming Candidates should be familiar with the concept of logic programming for declaring logical relationships.
CS 330 Programming Languages 12 / 06 / 2007 Instructor: Michael Eckmann.
Section 16.5, 16.6 plus other references
Prolog a declarative language
For Wednesday Read “lectures” 7-10 of Learn Prolog Now:
Tests, Backtracking, and Recursion
Prolog Primarily for Symbolic (nonnumeric) Computation
Prolog fundamentals Module 14.2 COP4020 – Programming Language Concepts Dr. Manuel E. Bermudez.
Logic Programming Languages
Chapter 11 :: Logic Languages
Prolog a declarative language
Prolog a declarative language
For Monday Read chapter 10, sections 1-3 Prolog handout 4
Prolog a declarative language
Chapter 12 :: Logic Languages
Logic Programming Language
Chapter 12 :: Logic Languages
PROLOG.
Presentation transcript:

For Friday No reading Prolog handout 3 Chapter 9, exercises 9-11

Bibliography Clocksin and Mellish, Programming in Prolog Bratko, Prolog Programming for Artificial Intelligence Sterling and Shapiro, The Art of Prolog O’Keefe, The Craft of Prolog

Working with Prolog You interact with the Prolog listener. Normally, you operate in a querying mode which produces backward chaining. New facts or rules can be entered into the Prolog database either by consulting a file or by switching to consult mode and typing them into the listener.

Prolog and Logic First order logic with different syntax Horn clauses Does have extensions for math and some efficiency.

The parent Predicate Definition of parent/2 (uses facts only) %parent(Parent,Child). parent(pam, bob). parent(tom, liz). parent(bob, ann). parent(bob, pat). parent(pat, jim).

Constants in Prolog Two kinds of constants: Numbers (much like numbers in other languages) Atoms Alphanumeric strings which begin with a lowercase letter Strings of special characters (usually used as operators) Strings of characters enclosed in single quotes

Variables in Prolog Prolog variables begin with capital letters. We make queries by using variables: ?- parent(bob,X). X = ann Prolog variables are logic variables, not containers to store values in. Variables become bound to their values. The answers from Prolog queries reflect the bindings.

Query Resolution When given a query, Prolog tries to find a fact or rule which matches the query, binding variables appropriately. It starts with the first fact or rule listed for a given predicate and goes through the list in order. If no match is found, Prolog returns no.

Backtracking We can get multiple answers to a single Prolog query if multiple items match: ?- parent(X,Y). We do this by typing a semi-colon after the answer. This causes Prolog to backtrack, unbinding variables and looking for the next match. Backtracking also occurs when Prolog attempts to satisfy rules.

Rules in Prolog Example Prolog Rule: offspring(Child, Parent) :- parent(Parent, Child). You can read “:-” as “if” Variables with the same name must be bound to the same thing.

Rules in Prolog Suppose we have a set of facts for male/1 and female/1 (such as female(ann).). We can then define a rule for mother/2 as follows: mother(Mother, Child) :- parent(Mother, Child), female(Mother). The comma is the Prolog symbol for and. The semi-colon is the Prolog symbol for or.

Recursive Predicates Consider the notion of an ancestor. We can define a predicate, ancestor/2, using parent/2 if we make ancestor/2 recursive.

Lists in Prolog The empty list is represented as []. The first item is called the head of the list. The rest of the list is called the tail.

List Notation We write a list as: [a, b, c, d] We can indicate the tail of a list using a vertical bar: L = [a, b, c,d], L = [Head | Tail], L = [ H1, H2 | T ]. Head = a, Tail = [b, c, d], H1 = a, H2 = b, T = [c, d]

Some List Predicates member/2 append/3

Try It reverse(List,ReversedList) evenlength(List) oddlength(List)

The Anonymous Variable Some variables only appear once in a rule Have no relationship with anything else Can use _ for each such variable

Arithmetic in Prolog Basic arithmetic operators are provided for by built-in procedures: +, -, *, /, mod, // Note carefully: ?- X = 1 + 2. X = 1 + 2 ?- X is 1 + 2. X = 3

Arithmetic Comparison Comparison operators: > < >= =< (note the order: NOT <=) =:= (equal values) =\= (not equal values)

Arithmetic Examples Retrieving people born 1950-1960: ?- born(Name, Year), Year >= 1950, Year =< 1960. Difference between = and =:= ?- 1 + 2 =:= 2 + 1. yes ?- 1 + 2 = 2 + 1. no ?- 1 + A = B + 2. A = 2 B = 1

Length of a List Definition of length/2 length([], 0). length([_ | Tail], N) :- length(Tail, N1), N is 1 + N1. Note: all loops must be implemented via recursion

Counting Loops Definition of sum/3 sum(Begin, End, Sum) :- sum(Begin, End, Begin, Sum). sum(X, X, Y, Y). sum(Begin, End, Sum1, Sum) :- Begin < End, Next is Begin + 1, Sum2 is Sum1 + Next, sum(Next, End, Sum2, Sum).

Negation Can’t say something is NOT true Use a closed world assumption Not simply means “I can’t prove that it is true”