Presentation is loading. Please wait.

Presentation is loading. Please wait.

CHAPTER 15 & 16 Functional & Logic Programming Languages.

Similar presentations


Presentation on theme: "CHAPTER 15 & 16 Functional & Logic Programming Languages."— Presentation transcript:

1 CHAPTER 15 & 16 Functional & Logic Programming Languages

2 Copyright © 2009 Addison-Wesley. All rights reserved.1-2 Chapter 15 Topics Introduction Mathematical Functions Fundamentals of Functional Programming Languages Comparison of Functional and Imperative Languages

3 Copyright © 2009 Addison-Wesley. All rights reserved.1-3 Introduction The design of the imperative languages is based directly on the von Neumann architecture –Efficiency is the primary concern, rather than the suitability of the language for software development The design of the functional languages is based on mathematical functions –A solid theoretical basis that is also closer to the user, but relatively unconcerned with the architecture of the machines on which programs will run

4 Copyright © 2009 Addison-Wesley. All rights reserved.1-4 Mathematical Functions A mathematical function is a mapping of members of one set, called the domain set, to another set, called the range set A lambda expression specifies the parameter(s) and the mapping of a function in the following form (x) x * x * x for the function cube (x) = x * x * x

5 Copyright © 2009 Addison-Wesley. All rights reserved.1-5 Lambda Expressions Lambda expressions describe nameless functions Lambda expressions are applied to parameter(s) by placing the parameter(s) after the expression e.g., ( (x) x * x * x)(2) which evaluates to 8

6 Copyright © 2009 Addison-Wesley. All rights reserved.1-6 Functional Forms A higher-order function, or functional form, is one that either takes functions as parameters or yields a function as its result, or both

7 Copyright © 2009 Addison-Wesley. All rights reserved.1-7 Function Composition A functional form that takes two functions as parameters and yields a function whose value is the first actual parameter function applied to the application of the second Form: h  f ° g which means h (x)  f ( g ( x)) For f (x)  x + 2 and g (x)  3 * x, h  f ° g yields (3 * x)+ 2

8 Copyright © 2009 Addison-Wesley. All rights reserved.1-8 Apply-to-all A functional form that takes a single function as a parameter and yields a list of values obtained by applying the given function to each element of a list of parameters Form:  For h (x)  x * x  ( h, (2, 3, 4)) yields (4, 9, 16)

9 Copyright © 2009 Addison-Wesley. All rights reserved.1-9 Fundamentals of Functional Programming Languages The objective of the design of a FPL is to mimic mathematical functions to the greatest extent possible The basic process of computation is fundamentally different in a FPL than in an imperative language –In an imperative language, operations are done and the results are stored in variables for later use –Management of variables is a constant concern and source of complexity for imperative programming In an FPL, variables are not necessary, as is the case in mathematics

10 Copyright © 2009 Addison-Wesley. All rights reserved.1-10 Fundamentals of Functional Programming Languages - continued Referential Transparency - In an FPL, the evaluation of a function always produces the same result given the same parameters Tail Recursion – Writing recursive functions that can be automatically converted to iteration

11 Copyright © 2009 Addison-Wesley. All rights reserved.1-11 Comparing Functional and Imperative Languages Imperative Languages: –Efficient execution –Complex semantics –Complex syntax –Concurrency is programmer designed Functional Languages: –Simple semantics –Simple syntax –Inefficient execution –Programs can automatically be made concurrent

12 Copyright © 2009 Addison-Wesley. All rights reserved.1-12 Chapter 16 Topics Introduction A Brief Introduction to Predicate Calculus Predicate Calculus and Proving Theorems An Overview of Logic Programming Applications of Logic Programming

13 Copyright © 2009 Addison-Wesley. All rights reserved.1-13 Introduction Logic programming languages, sometimes called declarative programming languages Express programs in a form of symbolic logic Use a logical inferencing process to produce results Declarative rather that procedural: –Only specification of results are stated (not detailed procedures for producing them)

14 Copyright © 2009 Addison-Wesley. All rights reserved.1-14 Proposition A logical statement that may or may not be true –Consists of objects and relationships of objects to each other

15 Copyright © 2009 Addison-Wesley. All rights reserved.1-15 Symbolic Logic Logic which can be used for the basic needs of formal logic: –Express propositions –Express relationships between propositions –Describe how new propositions can be inferred from other propositions Particular form of symbolic logic used for logic programming called predicate calculus

16 Copyright © 2009 Addison-Wesley. All rights reserved.1-16 Object Representation Objects in propositions are represented by simple terms: either constants or variables Constant: a symbol that represents an object Variable: a symbol that can represent different objects at different times –Different from variables in imperative languages

17 Copyright © 2009 Addison-Wesley. All rights reserved.1-17 Compound Terms Atomic propositions consist of compound terms Compound term: one element of a mathematical relation, written like a mathematical function –Mathematical function is a mapping –Can be written as a table

18 Copyright © 2009 Addison-Wesley. All rights reserved.1-18 Parts of a Compound Term Compound term composed of two parts –Functor: function symbol that names the relationship –Ordered list of parameters (tuple) Examples: student(jon) like(seth, OSX) like(nick, windows) like(jim, linux)

19 Copyright © 2009 Addison-Wesley. All rights reserved.1-19 Forms of a Proposition Propositions can be stated in two forms: –Fact: proposition is assumed to be true –Query: truth of proposition is to be determined Compound proposition: –Have two or more atomic propositions –Propositions are connected by operators

20 Copyright © 2009 Addison-Wesley. All rights reserved.1-20 Logical Operators NameSymbolExampleMeaning negation   anot a conjunction  a  ba and b disjunction  a  ba or b equivalence  a  ba is equivalent to b implication  a  b a  b a implies b b implies a

21 Copyright © 2009 Addison-Wesley. All rights reserved.1-21 Quantifiers NameExampleMeaning universal  X.PFor all X, P is true existential  X.PThere exists a value of X such that P is true Example:  X.(woman(X)  human(X))  X.(mother(mary, X)  male(X))

22 Copyright © 2009 Addison-Wesley. All rights reserved.1-22 Clausal Form Too many ways to state the same thing Use a standard form for propositions Clausal form: –B 1  B 2  …  B n  A 1  A 2  …  A m –means if all the As are true, then at least one B is true Antecedent: right side Consequent: left side Example: father(louis, al)  father(louis, violet)  father(al, bob)  mother(violet, bob)  grandfather(louis, bob)

23 Copyright © 2009 Addison-Wesley. All rights reserved.1-23 Predicate Calculus and Proving Theorems A use of propositions is to discover new theorems that can be inferred from known axioms and theorems Resolution: an inference principle that allows inferred propositions to be computed from given propositions Example: Given the two propositions: father(bob, jake)  mother(bob, jake)  parent(bob, jake) grandfather(bob, fred)  father(bob, jake)  father(jake, fred) Resolution says: mother(bob, jake)  grandfather(bob, fred)  parent(bob, jake)  father(jake, fred)

24 Copyright © 2009 Addison-Wesley. All rights reserved.1-24 Resolution Unification: finding values for variables in propositions that allows matching process to succeed Instantiation: assigning temporary values to variables to allow unification to succeed After instantiating a variable with a value, if matching fails, may need to backtrack and instantiate with a different value

25 Copyright © 2009 Addison-Wesley. All rights reserved.1-25 Proof by Contradiction Hypotheses: a set of pertinent propositions Goal: negation of theorem stated as a proposition Theorem is proved by finding an inconsistency

26 Copyright © 2009 Addison-Wesley. All rights reserved.1-26 Theorem Proving Basis for logic programming When propositions used for resolution, only restricted form can be used Horn clause - can have only two forms –Headed: single atomic proposition on left side Example: likes(bob, trout)  likes(bob, fish)  fish(trout) –Headless: empty left side (used to state facts) Example: father(bob, jake) Most propositions can be stated as Horn clauses

27 Copyright © 2009 Addison-Wesley. All rights reserved.1-27 Overview of Logic Programming Declarative semantics –There is a simple way to determine the meaning of each statement –Simpler than the semantics of imperative languages Programming is nonprocedural –Programs do not state how a result is to be computed, but rather the form of the result

28 Copyright © 2009 Addison-Wesley. All rights reserved.1-28 Example: Sorting a List Describe the characteristics of a sorted list, not the process of rearranging a list sort(old_list, new_list)  permute (old_list, new_list)  sorted (new_list) sorted (list)   j such that 1  j < n, list(j)  list (j+1)

29 Copyright © 2009 Addison-Wesley. All rights reserved.1-29 Applications of Logic Programming Relational database management systems Expert systems Natural language processing

30 Copyright © 2009 Addison-Wesley. All rights reserved.1-30 Summary Functional programming languages use function application, conditional expressions, recursion, and functional forms to control program execution instead of imperative features such as variables and assignments Purely functional languages have advantages over imperative alternatives, but their lower efficiency on existing machine architectures has prevented them from enjoying widespread use Symbolic logic provides basis for logic programming Logic programs should be nonprocedural Although there are a number of drawbacks with the current state of logic programming it has been used in a number of areas


Download ppt "CHAPTER 15 & 16 Functional & Logic Programming Languages."

Similar presentations


Ads by Google