1 / 185

Functional Languages

Functional Languages. Early in AI research, there was a need for symbolic computing handling symbols instead of numbers or strings recursion Design goals of functional approach programs would comprise functions and function calls , utilizing recursion as much as possible

saniya
Télécharger la présentation

Functional Languages

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Functional Languages • Early in AI research, there was a need for symbolic computing • handling symbols instead of numbers or strings • recursion • Design goals of functional approach • programs would comprise functions and function calls, utilizing recursion as much as possible • controlled through loops, rather than a series of imperative statements with local variables

  2. Lisp • The earliest functional language was not Lisp, but Lisp was the successful language to come out of this research • Some details on Lisp • Lisp began as a purely functional language although it picked up many imperative features (loops, go to statements, local vars, etc) from other languages over time • Lisp is interpreted (although compilers later became available) leading to the ability to develop programs in a piecemeal fashion • eventually, Lisp compilers for better performance • Lisp initially was dynamically scoped but later Lisp was statically scoped • Lisp uses only implicit heap dynamic variables

  3. Mathematical Function (MF) • A mathematical function (MF) is a mapping of members of one set, called the domain set, to another set, called the range set Determine the domain set and the range set of the following MF

  4. Mathematical Function (MF)

  5. Functional Forms • A function maps from a domain set to a range set • Along with the mapping, the range of these two sets is specified by the function • Example • Cube(x) x * x * x, where x is a real number. • The domain and range sets are the real numbers. • is used to mean “is defined as”. • During the evaluation of the function expression, the parameter x is fixed to represent one specific element. • Cube(2.0) = 2.0 * 2.0 * 2.0 = 8 is an evaluation.

  6. Functional Forms • Alonzo Church use Lambda notation to provide a method for defining nameless functions. • A lambda specifies the parameters and the mapping of a function. • A lambda expression is the function itself, which is nameless. • For example λ(x)x*x*x

  7. Functional Forms • Lamda calculus – devised by Church • A formal computation model - a formal system for • function definition, • λ(x)x*x*x • function application, and • (λ(x)x*x*x)(2) • recursion. • Lambda expression can have more than one parameters.

  8. Functional Forms • A functional form is a higher-order function, that is, a function that applies to functions • this can either be a function that accepts a function as a parameter, or a function that returns a function • these are important in Lisp as they allow functions to generate new functions (that is, code that can produce code)

  9. Functional Forms • Function Composition °is a functional form • It has two functional parameters and yields a function who value is the first actual parameter function applied to the result of the second. • h f °g • For example, if f(x) x + 2 and g(x) = 3 * x then h(x) f(g(x)) f(3*x) (3*x) + 2

  10. Functional Forms • Apply-to-all, α, is a functional form • It takes a single function as a parameter. • If applied to a list of parameters, apply-to-all applies its functional parameter to each of the values in the list parameter and collects the results in a list or sequence. • For example, if h(x) = x * x then α(h, (2, 3, 4)) yields (4, 9, 16).

  11. Functional Form • Construction • a functional form in which the result of one function is applied to a second function (nested functions) • example: f(x) = x + 2, g(x) = 3 * x, h(x) = f °g = f(g(x)) = 3*(x+2) • Apply to all • a functional form in which the function is applied to a list of parameters, returning a list of values • example: (using f from above) apply(f(2, 5, 12)) = (4, 7, 14)

  12. Fundamental of LISP • In a typeless language, we do not declare variables, and variables are merely pointers that can point to any type of data • In early Lisp, there were NO local variables, only parameters • Data Structures are either atomsand lists • atom – a literal value (char, string, number) usually denoted as atom • hello • 31415 • () • list – nil or ( x ) where x is an atom, a series of atoms, or a sub list, or any combination of these • example of a list (A (B C D) E F)

  13. Fundamental of LISP • In Lisp, functions are stored in lists and written in prefix notation • form of a Lisp function is: (function_name param1 param2 …) • examples: • (+ 5 7)  returns 12 • (equal? a b)  returns T (true) if a = b, nil (false) otherwise • (/ (+ a b) (- c d))  returns (a + b) / (c – d) • (cube x)  returns x3 • Functions can also be written as Lambda expressions • a Lambda expression is an unnamed function in which the parameters are specified after the function • e.g. (λ (x) (* x x)) (5)25

  14. ( A ( D E F ) B C ) A B C Each list node consists of a data structure (as shown to the right) consisting of two pointers, the CAR points to the item being stored in that node, the CDR points to the next node D E F The terms CAR and CDR are historical, named after registers in an early machine that ran Lisp CDR CAR Representing Lists The CDR of a node can equal to nil (equivalent to null or NULL in Java and C) CDRs for C & F are nil

  15. Lisp and the EvalFunction • Lisp’s primary function is EVAL which evaluates a list or atom at run-time • functions are special cases of lists: they are lists whose car is a function name and whose cdr is a list of parameters • EVAL will evaluate the function name on the parameters • i.e., (EVALlis) does (EVAL (car lis) (cdrlis)) • this makes Lisp an interpreted language – the eval function is the interpreter • lists are known as s-expressions (symbolic expressions) and can represent either data or functions

  16. Lisp and the Eval Function • Evaluating a list which is not a function will return an error • For example: if lis1 is (a b c d) then (eval lis1) would attempt to evaluate a on (b c d) but a is an atom, not a function! • Use the following notation to define a function: • (function_name (LAMBDA (arg1 … argn) expression)) • where function_name is the name of the function to be called by other functions and where expression consists of lists of Lisp function calls

  17. Example Math Functions in Lisp • 42 returns 42 • `42 returns 42 • A returns an error but `A returns A • (* 3 7) returns 21 • (+ 5 7 8) returns 20 • (- 5 6) returns -1 • (- 15 7 2) returns 6 • (- 24 (* 4 3)) returns 12 • (> 5 6) returns nil (false) • (= 5 (+ 2 3)) returns t (true) • (* (+ 5 4) (- 8 (/ 6 2)) returns 45 (quote a) or `A means to take something literally, do not evaluate it A without the ` would be interpreted as a variable, but if A has not already been assigned a value

  18. Variables vs. Symbols and Lists • Variables point to data items which are either symbols (similar in ways to strings) or lists • a variable is denoted by its name (e.g., A) • An atom or list is denoted using a quote mark as in `A or `(A B C)

  19. Variables vs. Symbols and Lists • To create a symbol, use the function QUOTE as in (QUOTE A) which returns ’A or use the shorthand ’A • note that ‘ has a different meaning in Lisp to ’ as the ‘ is used in macro definitions, something we will briefly discuss later • Notice that `(+ 3 5) does not return 8, it returns the literal list (+ 3 5) because ` says “do not evaluate this” • we could evaluate this list by doing (eval`(+ 3 5)) which would return 8 • so the ` will allow us to construct a list whether the list stores data or code, and the eval function will allow us to execute a list that is code

  20. Why Not Lisp? • Lisp was a pioneering programming language in AI and functional programming, but it had many problems • The lack of variables led to the programmer having to be tricky in how to use recursion • Dynamic scoping was also a problem • We concentrate our examination on Lisp by looking at Scheme and later Common Lisp, rather than Lisp itself because it is awkward and difficult

  21. The main programming paradigms A main programming paradigm stems anidea within some basic discipline which is relevant for performing computations

  22. The main programming paradigms Let identify four main programming paradigms and a number of minor programming paradigms • . Main programming paradigms • · The imperative paradigm • · The functional paradigm • · The logical paradigm • · The object-oriented paradigm • · Other possible programming paradigms • · The visual paradigm • · One of the parallel paradigms • · The constraint based paradigm

  23. Overview of the four main programming paradigms Overview of the imperative paradigm: The word 'imperative' can be used both as an adjective it means 'expressing a command or plea'. i.e., asking for something to be done. as a noun, an imperative is a command or an order. Some programming languages, such as the object oriented language Beta, uses the word 'imperative' for commands in the language.

  24. Overview of the four main programming paradigms • Overview of the imperative paradigm: • The “first do this and next do that” • The phrase describes the spirit of the imperative paradigm. • The basic idea is the command. • It has a measurable effect on the program state. • The phrase also gives the order to the commands. • 'First do that, then do this' would be different from 'first do this, then do that'.

  25. Overview of the imperative paradigm: • The main properties of the imperative paradigm. • · Characteristics: • · Discipline and idea • · Digital hardware technology and the ideas of Von Neumann • · Incremental change of the program state as a function • of time. • · Execution of computational steps in an order • governed by control structures • · We call the steps for commands • · Straightforward abstractions of the way a traditional • Von Neumann computer works • · ….

  26. Overview of the imperative paradigm: • The main properties of the imperative paradigm. • · Characteristics: • . …. • · Similar to descriptions of everyday routines, • such as food recipes and car repair • · Typical commands offered by imperative languages • · Assignment, IO, procedure calls • · Language representatives • · Fortran, Algol, Pascal, Basic, C • · The natural abstraction is the procedure • · Abstracts one or more actions to a procedure, • which can be called as a single command. • · "Procedural programming"

  27. Overview of the four main programming paradigms Overview of the functional paradigm • “Evaluate an expression and use the resulting value for something” • The paradigm originates from a purely mathematical discipline: the theory of functions.

  28. Overview of the four main programming paradigms Overview of the functional paradigm • Functional programming is in many respects a simpler and more clean programming paradigm than the imperative one. • The reason is that the imperative paradigm is rooted in the key technological ideas of the digital computer, which are more complicated, and less 'clean' than mathematical function theory.

  29. Overview of the functional paradigm Let characterize the most important, overall properties of the functional programming paradigm- “Evaluate an expression and use the resulting value for something”: Characteristics: · Discipline and idea · Mathematics and the theory of functions · The values produced are non-mutable · Impossible to change any constituent of a composite value · As a remedy, it is possible to make a revised copy of composite value · ….

  30. Overview of the functional paradigm Let characterize the most important, overall properties of the functional programming paradigm- “Evaluate an expression and use the resulting value for something”: Characteristics: · …. · A temporal · Abstracts a single expression to a function which can be evaluated as an expression · Functions are first class values · Functions are full-fledged data just like numbers, lists, ... · Fits well with computations driven by needs · Opens a new world of possibilities

  31. Overview of the four main programming paradigms Overview of the logic paradigm The logic paradigm fits extremely well when applied in problem domains that deal with the extraction of knowledge from basic facts and relations. The logical paradigm seems less natural in the more general areas of computation. “Answer a question via search for a solution”

  32. Overview of the logic paradigm • Let briefly characterize the main properties of the logic programming paradigm. • · Characteristics: • · Discipline and idea • · Automatic proofs within artificial intelligence • · Based on axioms, inference rules, and queries. • · Program execution becomes a systematic search • in a set of facts, making use of a set of inference • rules

  33. Overview of the four main programming paradigms Overview of the object-oriented paradigm The object-oriented paradigm has the strong support of encapsulation and the logical grouping of program aspects. These properties are very important when programs become larger and larger. The success of the object-oriented paradigm is probably the conceptual anchoring of the paradigm. An object-oriented program is constructed with the outset in concepts, which are important in the problem domain of interest. In that way, all the necessary technicalities of programming come in second row.

  34. Overview of the four main programming paradigms Overview of the object-oriented paradigm “Send messages between objects to simulate the temporal evolution of a set of real world phenomena”

  35. Overview of the four main programming paradigms • Overview of the object-oriented paradigm • Let describe the most important properties of object-oriented programming, seen as a school of thought in the area of computer programming. • · Characteristics: • · Discipline and idea • · The theory of concepts, and models of human • interaction with real world phenomena • · Data as well as operations are encapsulated in • objects • · Information hiding is used to protect internal • properties of an object • . ….

  36. Overview of the object-oriented paradigm • · Characteristics: • · …. • · Objects interact by means of message passing • · A metaphor for applying an operation on an • object • · In most object-oriented languages objects are • grouped in classes • · Objects in classes are similar enough to allow programming of the classes, as opposed to • programming of the individual objects • · Classes represent concepts whereas objects • represent phenomena • · Classes are organized in inheritance hierarchies • · Provides for class extension or specialization

  37. Overview of the four main programming paradigms Consider a functional programming in Scheme, with special emphasis on examples drawn from the domain of web program development. [] Foldoc: object-oriented programming http://wombat.doc.ic.ac.uk/foldoc/foldoc.cgi?query=object-oriented+programming [] Foldoc: logic programming http://wombat.doc.ic.ac.uk/foldoc/foldoc.cgi?query=logic+programming [] Foldoc: functional programming http://wombat.doc.ic.ac.uk/foldoc/foldoc.cgi?query=functional+programming [] Foldoc: imperative http://wombat.doc.ic.ac.uk/foldoc/foldoc.cgi?query=imperative

  38. Lisp and Scheme start with a brief discussion of the family of languages, to which Scheme belongs. This is the Lisp family of languages. Lisp – Lisp was invented by John McCarthy in the late fifties. In these days the dominating use of computers was for numeric purposes. One of the purposes of Lisp was to support symbolic computation.

  39. Lisp and Scheme • Lisp – One of the purposes of Lisp was to support symbolic computation. • As an example of symbolic computation, consider the calculation of differentiated mathematical functions. The symbolic derivation of the function f(x) = x * x is the function g(x) = 2 * x. • The numeric derivation of f will never deliver the function g on source form. • The best. we can hope for, is some sort of numeric approximation to g, which can be applied to numbers.

  40. Lisp and Scheme Lisp – One of the purposes of Lisp was to support symbolic computation. As an example of symbolic computation, let consider the calculation of differentiated mathematical functions. The symbolic derivation of the function f(x) = x * x is the function g(x) = 2 * x. It is worth noticing that transformation and compilation of programs also can be considered as symbolic computations. In fact it turns out, that the computer is better suited to do symbolic computations than numeric computations, because the former(SC) always can be done exactly, whereas the latter(NC) often are inexact.

  41. Lisp and Scheme • Lisp - • “Lisp is the next oldest programming language - only Fortran is older.” • Today, many Lisp languages are not in use any more. Lisp 1.5 and Interlisp are two of these. • 'Lisp' is today used as a family name of all 'Lisp languages', which includes such languages and Emacs Lisp, Common Lisp, and Scheme.

  42. Lisp and Scheme • Lisp - • Let summarize the main characteristics of Lisp. • · Lisp characteristics: • · Invented for symbolic computations • · Superficially inspired by mathematical function theory • · Is syntactically and uniformly based on parenthesized • prefix notation • · Parsing a Lisp program is trivial • · Programming goes hand in hand with language • development • · It is easy to access and manipulate programs from • programs • · Calls for tool making in Lisp

  43. Lisp and Scheme • Lisp - • Lists – is the primary data structure in the language, used for the representation of programs. • This is the reason why we use all these parentheses in a Lisp program! • Originally, this characteristic program representation was only thought as an intermediate representation, not to be used by the human programmer. • Eventually, it turned out that the representation had some very useful properties. • Therefore, the following 'equation' is an important characteristic of all Lisp languages. • Program = Data = Lists

  44. Scheme • Scheme was one of many versions of Lisp that adds functionality to the language • Scheme emerged from MIT in the mid 70’s • characterized by a small subset of Lisp features, static scoping and classes • Scheme continues to be taught today as an example of a functional language although Scheme itself has not been used much in AI (AI tends to use Common Lisp today if it uses any version of Lisp at all)

  45. Lisp and Scheme Scheme is a programming language in the Lisp family. Scheme is formally defined in the Scheme report [Abelson98], which is revised from time to time. Currently, the fifth revision is the most current one. 'The fifth Revised Report on the Algorithmic Language Scheme'. “Scheme is a small, yet powerful language in the Lisp family”

  46. Lisp and Scheme • Scheme • · Scheme characteristics: • · Supports functional programming - but not on an • exclusive basis • · Functions are first class data objects • · Uses static binding of free names in procedures • and functions • · Types are checked and handled at run time - no • static type checking • · Parameters are evaluated before being passed - no • lazyness

  47. Lisp and Scheme • Scheme • Hard core Lisp programmers are also likely to meet Common Lisp, which is much bigger than Scheme. • The statement below compares very briefly Common Lisp and Emacs Lisp with Scheme. • “Scheme is an attractive alternative to Common Lisp (a big monster) and Emacs Lisp (the rather primitive extension language of the Emacs text editor).”

  48. References [-] Foldoc: Scheme http://wombat.doc.ic.ac.uk/foldoc/foldoc.cgi?query=Scheme [-] The Scheme Language Report http://www.cs.auc.dk/~normark/prog3-03/external-material/r5rs/r5rs-html/r5rs_1.html [-] Schemers.org home page http://www.schemers.org/ [-] Foldoc: prefix notation http://wombat.doc.ic.ac.uk/foldoc/foldoc.cgi?query=prefix+notation [-] Foldoc: Lisp http://wombat.doc.ic.ac.uk/foldoc/foldoc.cgi?query=Lisp [abelson98] Richard Kelsey, William Clinger and Jonathan Rees, "Revised^5 Report on the Algorithmic Language Scheme", Higher-Order and Symbolic Computation, Vol. 11, No. 1, August 1998, pp. 7--105. [fsf02] Free Software Foundation, "Programming in Emacs Lisp (Second Edition)", January 2002. [fsf02a] GNU Emacs Lisp Reference Manual. The Free Software FundationInc, May 2002.

More Related