Basic Scheme February 8, 2007 Compound expressions Rules of evaluation Creating procedures by capturing common patterns.

Slides:



Advertisements
Similar presentations
Procedural programming in Java
Advertisements

1 Programming Languages (CS 550) Lecture Summary Functional Programming and Operational Semantics for Scheme Jeremy R. Johnson.
Getting started with ML ML is a functional programming language. ML is statically typed: The types of literals, values, expressions and functions in a.
Fall 2008Programming Development Techniques 1 Topic 2 Scheme and Procedures and Processes September 2008.
6.001 SICP SICP – September Processes, Substitution, Recusion, and Iteration Trevor Darrell 32-D web page:
Functional programming: LISP Originally developed for symbolic computing Main motivation: include recursion (see McCarthy biographical excerpt on web site).
"Loose ends"CS-2301 D-term “Loose Ends” CS-2301 System Programming C-term 2009 (Slides include materials from The C Programming Language, 2 nd edition,
מבוא מורחב 1 Lecture 3 Material in the textbook Sections to
מבוא מורחב - שיעור 2 1 Lecture 2 - Substitution Model (continued) - Recursion - Block structure and scope (if time permits)
SICP Interpretation part 1 Parts of an interpreter Arithmetic calculator Names Conditionals and if Store procedures in the environment.
SICP Variations on a Scheme Scheme Evaluator – A Grand Tour Techniques for language design: Interpretation: eval/apply Semantics vs. syntax Syntactic.
Functional programming: LISP Originally developed for symbolic computing First interactive, interpreted language Dynamic typing: values have types, variables.
PPL Syntax & Formal Semantics Lecture Notes: Chapter 2.
1 Extended Introduction to Computer Science 2 Administration סגל הקורס: –מרצים: ד"ר דניאל דויטש, איל כהן –מתרגלת:לבנת ג'רבי –בודק: ינון פלד Book: Structure.
מבוא מורחב 1 Your turn (Review) What does a lambda expression return when it is evaluated? the value of a lambda expression is a procedure What three things.
Principles of Programming Languages Lecture 1 Slides by Daniel Deutch, based on lecture notes by Prof. Mira Balaban.
מבוא מורחב 1 Review: scheme language things that make up scheme programs: self-evaluating 23, "hello", #t names +, pi combinations (+ 2 3) (* pi 4) special.
SICP Interpretation Parts of an interpreter Arithmetic calculator Names Conditionals and if Storing procedures in the environment Environment as.
Procedural programming in Java Methods, parameters and return values.
1 The Evaluator. 2 Compiler vs. Interpreter Command Processing Unit The Computer Program in Low Level Machine Language Program in High Level Language.
Principles of Programming Languages Lecture 1 Slides by Yaron Gonen, based on slides by Daniel Deutch and lecture notes by Prof. Mira Balaban.
CS220 Programming Principles 프로그래밍의 이해 2003 가을학기 Class 2 한 태숙.
What is the main focus of this course? This course is about Computer Science Geometry was once equally misunderstood. Term comes from ghia & metra or earth.
1 Lecture 14: Assignment and the Environment Model (EM)
1/32 This Lecture Substitution model An example using the substitution model Designing recursive procedures Designing iterative procedures Proving that.
1/33 Basic Scheme February 8, 2007 Compound expressions Rules of evaluation Creating procedures by capturing common patterns.
1 Programming Languages (CS 550) Lecture 4 Summary Functional Programming and Operational Semantics for Scheme Jeremy R. Johnson.
1 FP Foundations, Scheme In Text: Chapter Chapter 14: FP Foundations, Scheme Mathematical Functions Def: A mathematical function is a mapping of.
PPL Syntax & Formal Semantics Lecture Notes: Chapter 2.
CS314 – Section 5 Recitation 9
Operational Semantics of Scheme
Functional Programming
Lecture #5 מבוא מורחב.
Basic Scheme February 8, 2007 Compound expressions Rules of evaluation
September 4, 1997 Programming Languages (CS 550) Lecture 6 Summary Operational Semantics of Scheme using Substitution Jeremy R. Johnson TexPoint fonts.
Original material by Eric Grimson
CS21b: Structure and Interpretation
6.001 SICP Data abstractions
Higher-Order Procedures
Your turn (Review) What does a lambda expression return when it is evaluated? the value of a lambda expression is a procedure What three things are in.
Lecture #5 מבוא מורחב.
The Metacircular Evaluator
FP Foundations, Scheme In Text: Chapter 14.
This Lecture Substitution model
Dynamic Scoping Lazy Evaluation
What would be our focus ? Geometry deals with Declarative or “What is” knowledge. Computer Science deals with Imperative or “How to” knowledge 12/25/2018.
6.001 SICP Environment model
The Metacircular Evaluator (Continued)
6.001 SICP Further Variations on a Scheme
Extended Introduction to Computer Science
Streams, Delayed Evaluation and a Normal Order Interpreter
Lecture 12: Message passing The Environment Model
Lecture 13 - Assignment and the environments model Chapter 3
What would be our focus ? Geometry deals with Declarative or “What is” knowledge. Computer Science deals with Imperative or “How to” knowledge 2/23/2019.
Material in the textbook Sections to 1.2.1
6.001 SICP Variations on a Scheme
Lecture 5 Higher-order procedures מבוא מורחב - שיעור 5.
6.001: Structure and Interpretation of Computer Programs
Today’s topics Abstractions Procedural Data
Lecture 2 מבוא מורחב.
This Lecture Substitution model
6.001 SICP Interpretation Parts of an interpreter
6.001 SICP Environment model
Lecture 3: Rules of Evaluation CS200: Computer Science
Lecture 13: Assignment and the Environment Model (EM)
Introduction to the Lab
This Lecture Substitution model
Lecture 2 מבוא מורחב.
Rules of evaluation The value of a number is itself.
Good programming practices
Presentation transcript:

Basic Scheme February 8, 2007 Compound expressions Rules of evaluation Creating procedures by capturing common patterns

Previous lecture Basics of Scheme –Expressions and associated values (or syntax and semantics) Self-evaluating expressions –1, “this is a string”, #f Names –+, *, >=, < Combinations –(* (+ 1 2) 3) Define Rules for evaluation

Read-Eval-Print Visible world Execution world (+ 3 (* 4 5)) READ Internal representation for expression EVAL Value of expression PRINT 23 Visible world

Summary of expressions Numbers: value is expression itself Primitive procedure names: value is pointer to internal hardware to perform operation “Define”: has no actual value; is used to create a binding in a table of a name and a value Names: value is looked up in table, retrieving binding Rules apply recursively

Simple examples 25  25 (+ (* 3 5) 4)  60 +  [#primitive procedure …] (define foobar (* 3 5))  no value, creates binding of foobar and 15 foobar  15 (value is looked up) (define fred +)  no value, creates binding (fred 3 5)  15

This lecture Adding procedures and procedural abstractions to capture processes

Language elements -- procedures Need to capture ways of doing things – use procedures To process something multiply it by itself parameters body Special form – creates a procedure and returns it as value (lambda (x) (* x x))

Language elements -- procedures Use this anywhere you would use a procedure ( (* 5 5) (lambda(x)(* x x))5) lambda exp arg 25

Language elements -- abstraction Use this anywhere you would use a procedure ( Don’t want to have to write obfuscatory code – so can give the lambda a name (define square (lambda (x) (* x x))) (square 5)  25 Rumplestiltskin effect! (The power of naming things) (lambda(x)(* x x))5)

Scheme Basics Rules for evaluating 1.If self-evaluating, return value. 2.If a name, return value associated with name in environment. 3.If a special form, do something special. 4.If a combination, then a. Evaluate all of the subexpressions of combination (in any order) b. apply the operator to the values of the operands (arguments) and return result Rules for applying 1.If procedure is primitive procedure, just do it. 2.If procedure is a compound procedure, then: evaluate the body of the procedure with each formal parameter replaced by the corresponding actual argument value.

Interaction of define and lambda 1.(lambda (x) (* x x)) ==> #[compound-procedure 9] 2.(define square (lambda (x) (* x x))) ==> undef 3.(square 4) ==> 16 4.((lambda (x) (* x x)) 4) ==> 16 5.(define (square x) (* x x)) ==> undef This is a convenient shorthand (called “syntactic sugar”) for 2 above – this is a use of lambda!

Lambda special form lambda syntax (lambda (x y) (/ (+ x y) 2)) 1st operand position: the parameter list (x y) –a list of names (perhaps empty) () –determines the number of operands required 2nd operand position: the body (/ (+ x y) 2) –may be any expression(s) –not evaluated when the lambda is evaluated –evaluated when the procedure is applied –value of body is value of last expression evaluated mini-quiz: ( define x (lambda ()(+ 3 2))) – no value x - procedure (x) - 5 semantics of lambda:

THE VALUE OF A LAMBDA EXPRESSION IS A PROCEDURE

The value of a lambda expression is a procedure… The value of a lambda expression is a procedure… Achieving Inner Peace *Om Mani Padme Hum… * (and a good grade)

How can we use the idea of a procedure to capture a computational process? Using procedures to describe processes

What does a procedure describe? Capturing a common pattern –(* 3 3) –(* 25 25) –(* foobar foobar) (lambda (x) (* x x) ) Name for thing that changes Common pattern to capture

Modularity of common patterns Here is a common pattern: (sqrt (+ (* 3 3) (* 4 4))) (sqrt (+ (* 9 9) (* 16 16))) (sqrt (+ (* 4 4) (* 4 4)) Here is one way to capture this pattern: (define pythagoras (lambda (x y) (sqrt (+ (* x x) (* y y)))))

Modularity of common patterns Here is a common pattern: (sqrt (+ (* 3 3) (* 4 4))) (sqrt (+ (* 9 9) (* 16 16))) (sqrt (+ (* 4 4) (* 4 4))) So here is a cleaner way of capturing the pattern: (define square (lambda (x) (* x x))) (define pythagoras (lambda (x y) (sqrt (+ (square x) (square y)))))

Why? Breaking computation into modules that capture commonality –Enables reuse in other places (e.g. square) Isolates (abstracts away) details of computation within a procedure from use of the procedure –Useful even if used only once (i.e., a unique pattern) (define (comp x y)(/(+(* x y) 17)(+(+ x y) 4)))) (define (comp x y)(/ (prod+17 x y) (sum+4 x y)))

Why? May be many ways to divide up (define square (lambda (x) (* x x))) (define sum-squares (lambda (x y) (+ (square x) (square y)))) (define pythagoras (lambda (y x) (sqrt (sum-squares y x)))) (define square (lambda (x) (* x x))) (define pythagoras (lambda (x y) (sqrt (+ (square x) (square y)))))

Abstracting the process Stages in capturing common patterns of computation –Identify modules or stages of process –Capture each module within a procedural abstraction –Construct a procedure to control the interactions between the modules –Repeat the process within each module as necessary

A more complex example Remember our method for finding sqrts –To find the square root of X Make a guess, called G If G is close enough, stop Else make a new guess by averaging G and X/G When is something “close enough” How do we create a new guess How do we control the process of using the new guess in place of the old one The stages of “SQRT”

Procedural abstractions For “close enough”: (define close-enuf? (lambda (guess x) (< (abs (- (square guess) x)) 0.001))) Note use of procedural abstraction!

Procedural abstractions For “improve”: (define average (lambda (a b) (/ (+ a b) 2))) (define improve (lambda (guess x) (average guess (/ x guess))))

Why this modularity? “Average” is something we are likely to want in other computations, so only need to create once Abstraction lets us separate implementation details from use –Originally: (define average (lambda (a b) (/ (+ a b) 2))) –Could redefine as –No other changes needed to procedures that use average –Also note that variables (or parameters) are internal to procedure – cannot be referred to by name outside of scope of lambda (define average (lambda (x y) (* (+ x y) 0.5)))

Controlling the process Basic idea: –Given X, G, want (improve G X) as new guess –Need to make a decision – for this need a new special form (if )

The IF special form (if ) –Evaluator first evaluates the expression. –If it evaluates to a TRUE value, then the evaluator evaluates and returns the value of the expression. –Otherwise, it evaluates and returns the value of the expression. –Why must this be a special form? (i.e. why not just a regular lambda procedure?)

Controlling the process Basic idea: –Given X, G, want (improve G X) as new guess –Need to make a decision – for this need a new special form (if ) –So heart of process should be: (if (close-enuf? G X) G (improve G X) ) –But somehow we want to use the value returned by “improving” things as the new guess, and repeat the process

Controlling the process Basic idea: –Given X, G, want (improve G X) as new guess –Need to make a decision – for this need a new special form (if ) –So heart of process should be: (define sqrt-loop (lambda G X) (if (close-enuf? G X) G (sqrt-loop (improve G X) X ) –But somehow we want to use the value returned by “improving” things as the new guess, and repeat the process –Call process sqrt-loop and reuse it!

Putting it together Then we can create our procedure, by simply starting with some initial guess: (define sqrt (lambda (x) (sqrt-loop 1.0 x)))

Checking that it does the “right thing” Next lecture, we will see a formal way of tracing evolution of evaluation process For now, just walk through basic steps –(sqrt 2) (sqrt-loop 1.0 2) (if (close-enuf? 1.0 2) … …) (sqrt-loop (improve 1.0 2) 2) This is just like a normal combination (sqrt-loop 1.5 2) (if (close-enuf? 1.5 2) … …) (sqrt-loop ) And so on…

Abstracting the process Stages in capturing common patterns of computation –Identify modules or stages of process –Capture each module within a procedural abstraction –Construct a procedure to control the interactions between the modules –Repeat the process within each module as necessary

Summarizing Scheme Primitives –Numbers –Strings –Booleans –Built in procedures Means of Combination –(procedure argument 1 argument 2 … argument n ) Means of Abstraction –Lambda –Define Other forms –if 1, -2.5, 3.67e25 *, +, -, /, =, >, <,. Create a procedure. Create names. Control order of evaluation -- Names Creates a loop in system – allows abstraction of name for object