Prof. Dr. Max Mühlhäuser Dr. Guido Rößling

Slides:



Advertisements
Similar presentations
1 A B C
Advertisements

Simplifications of Context-Free Grammars
Variations of the Turing Machine
ALAK ROY. Assistant Professor Dept. of CSE NIT Agartala
AP STUDY SESSION 2.
9 Programming Languages
1
Copyright © 2003 Pearson Education, Inc. Slide 1.
Chapter 7 Constructors and Other Tools. Copyright © 2006 Pearson Addison-Wesley. All rights reserved. 7-2 Learning Objectives Constructors Definitions.
STATISTICS HYPOTHESES TEST (I)
STATISTICS INTERVAL ESTIMATION Professor Ke-Sheng Cheng Department of Bioenvironmental Systems Engineering National Taiwan University.
STATISTICS POINT ESTIMATION Professor Ke-Sheng Cheng Department of Bioenvironmental Systems Engineering National Taiwan University.
David Burdett May 11, 2004 Package Binding for WS CDL.
Introduction to Algorithms 6.046J/18.401J
CALENDAR.
Programming Language Concepts
© Vinny Cahill 1 Writing a Program in Java. © Vinny Cahill 2 The Hello World Program l Want to write a program to print a message on the screen.
The 5S numbers game..
1.
Week 2 The Object-Oriented Approach to Requirements
Break Time Remaining 10:00.
Factoring Quadratics — ax² + bx + c Topic
EE, NCKU Tien-Hao Chang (Darby Chang)
Chapter 11: Models of Computation
Turing Machines.
Chair of Software Engineering Einführung in die Programmierung Introduction to Programming Prof. Dr. Bertrand Meyer Exercise Session 5.
Database Performance Tuning and Query Optimization
Lilian Blot TO PROGRAMMING & PYTHON Introduction Autumn 2012 TPOP 1.
PP Test Review Sections 6-1 to 6-6
Modern Programming Languages, 2nd ed.
Digital Lessons on Factoring
Briana B. Morrison Adapted from William Collins
Scheme: Functions Chapter 3 of HTDP Ms. Knudtzon September 12.
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Outline 24.1 Test-Driving the Ticket Information Application.
Telecooperation/RBG Technische Universität Darmstadt Copyrighted material; for TUD student use only Introduction to Computer Science I Topic 4: Evaluation.
Copyright © 2012, Elsevier Inc. All rights Reserved. 1 Chapter 7 Modeling Structure with Blocks.
 Copyright I/O International, 2013 Visit us at: A Feature Within from Item Class User Friendly Maintenance  Copyright.
Chapter 1: Expressions, Equations, & Inequalities
Lilian Blot PART III: ITERATIONS Core Elements Autumn 2012 TPOP 1.
A Third Look At ML 1. Outline More pattern matching Function values and anonymous functions Higher-order functions and currying Predefined higher-order.
Adding Up In Chunks.
MaK_Full ahead loaded 1 Alarm Page Directory (F11)
1 Termination and shape-shifting heaps Byron Cook Microsoft Research, Cambridge Joint work with Josh Berdine, Dino Distefano, and.
: 3 00.
5 minutes.
1 hi at no doifpi me be go we of at be do go hi if me no of pi we Inorder Traversal Inorder traversal. n Visit the left subtree. n Visit the node. n Visit.
Chapter Three Arithmetic Expressions and Assignment Statements
Chapter 9 Interactive Multimedia Authoring with Flash Introduction to Programming 1.
Types of selection structures
Lilian Blot CORE ELEMENTS SELECTION & FUNCTIONS Lecture 3 Autumn 2014 TPOP 1.
12 System of Linear Equations Case Study
Chapter 2 JAVA FUNDAMENTALS
Converting a Fraction to %
CSE20 Lecture 15 Karnaugh Maps Professor CK Cheng CSE Dept. UC San Diego 1.
Clock will move after 1 minute
Physics for Scientists & Engineers, 3rd Edition
Select a time to count down from the clock above
16. Mean Square Estimation
Copyright Tim Morris/St Stephen's School
1.step PMIT start + initial project data input Concept Concept.
9. Two Functions of Two Random Variables
1 Dr. Scott Schaefer Least Squares Curves, Rational Representations, Splines and Continuity.
1 Decidability continued…. 2 Theorem: For a recursively enumerable language it is undecidable to determine whether is finite Proof: We will reduce the.
1 Non Deterministic Automata. 2 Alphabet = Nondeterministic Finite Accepter (NFA)
4/11/20151 Programming Languages and Compilers (CS 421) Elsa L Gunter 2112 SC, UIUC Based in part on slides by Mattox.
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.
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.
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.
Presentation transcript:

Prof. Dr. Max Mühlhäuser Dr. Guido Rößling Introduction to Computer Science I Topic 1: Basic Elements of Programming Prof. Dr. Max Mühlhäuser Dr. Guido Rößling

What is Programming? Let us take a look at what some godfathers of programming have to say: „To program is to understand“ Kristen Nygaard „Programming is a Good Medium for Expressing Poorly Understood and Sloppily Formulated Ideas“ Marvin Minsky, Gerald J. Sussman

The Elements of Programming A powerful programming language (PL) is more than just a means for instructing a computer to perform tasks It also serves as a framework within which we organize our ideas about a problem domain When we describe a language, we should pay attention to the means that it provides for combining simple ideas to more complex ones.

The Elements of Programming Every powerful language has three mechanisms to structure ideas about processes: Primitive expressions Represent the simplest entities of the language Means of combination Compound elements are built from simpler ones Means of abstraction Compound elements can be named and manipulated as units

Keys to Engineering Design Primitives Resistors, capacitors, inductors, voltage sources, … Means of combination Rules for how to wire together in a circuit Standard interfaces (e.g. voltages, currents) between elements Means of abstraction “Black box” abstraction – think about sub-circuit as a unit: e.g. amplifier, modulator, receiver, transmitter, …

Language Elements - Primitives Numbers Examples: 23, -36 Numbers are self-evaluating: the values of the digits are the numbers they denote 23 → 23 -36 → -36 Boolean values true and false Also self evaluating Names for built-in procedures Examples: +, *, /, -, =, … What is the value of such an expression? The value of + is a procedure We will later refer to these kinds of values as “first-class procedures” Evaluating by looking up the value associated with the name

(+ 2 3) Compound Elements left parenthesis right parenthesis Operator Operands prefix notation The value of a compound element is determined by executing the procedure (denoted by the operator) with the values of the operands. Vorteile der Präfix Notation …

(+ 2 3) Compound Elements Compound Elements: Example: left parenthesis A sequence of expressions enclosed in parentheses the expressions are primitives or compounds themselves Example: Expressions representing numbers may be combined with expressions representing a primitive procedure (+ or *) to form a compound expression represents the application of the procedure to the numbers (+ 2 3) left parenthesis Operator Operands right parenthesis Vorteile der Präfix Notation …

Compound Elements (+ 4 (* 2 3)) = (4 + (2 * 3)) = 10 Can use nested combinations just apply rules recursively (+ 4 (* 2 3)) = (4 + (2 * 3)) = 10 (* (+ 3 4) (- 8 2)) = ((3 + 4) * (8 - 2)) = 42 A combination always denotes a procedure application  parentheses cannot be inserted or omitted without changing the meaning of the expression

Abstractions Create a complex thing by combining more primitive things, name it, treat it like a primitive. Simple mean of abstraction: define (define score (+ 23 7)) (define PI 3.14)

Naming Compound Elements Special form: A bracketed expression, starting with one of the few keywords of scheme Example: define using define we can pair a name with a value example: (define score (+ 23 7)) The define special form does not evaluate the second expression (in the example: score) Rather, it pairs that name with the value of the third expression in an environment The return value of a special form is unspecified

Naming and the Environment An important aspect of a programming language is the means it provides to refer to computational objects using names. A name identifies a variable whose value is the object Environment: the interpreter maintains some sort of memory to keep track of the name-object pairs. Associating values with symbols Retrieve them later

Naming and the Environment To get the value of a name, just look it up in environment Example: the evaluation of score is 30 (define score (+ 27 3)) (define total (+ 30 15)) (* 100 (/ score total)) Note: we already did this implicty (looking up a name in an environment) for +, *, … + * / … 30 score 25 total

Evaluation Rules Self evaluating  return the value The values of digits are the numbers that they name Built-in operator  return the machine instruction sequence that carry out the corresponding operations. Name  return the value that is associated with that name in the environment. Special form  do something special. Combination  Evaluate the sub expressions (arbitrary order) Apply the procedure that is the value of the leftmost sub expression (the operator) to the arguments that are the values of the other sub expressions (the operands). Example of a combination: (+ 4 (* 2 3)) Selbst komplexe Ausdrucke bearbeitet der Interpreter nach Grundzyklus Interpreter muss nicht explizit angewiesen werden, den Wert des Ausdrucks auszugeben Die Regel 2 kann als spezial fall von 3 betrachtet werden Betonne die Schlüsselrole der Umgebung für die Auswertung Hebe die Sonderformen hervor

Evaluating Combinations The evaluation rule is recursive  as one of its steps, the rule needs to invoke itself Every element has to be evaluated before the whole evaluation can be done Evaluating the following combination requires that the evaluation rule be applied to 4 different combinations. ( * (+ 2 (* 4 6) ) (+ 3 5 7) )

Read-Eval-Print-Loop define-rule: Only evaluate the second operand The name of the first operand is bound to the calculated value The overall value of the expression is undefined print Differences between Scheme versions (define PI 3.14) eval define-rule ”PI --> 3.14" Visible world Execution world Name Value undefined PI 3.14

Read-Eval-Print-Loop printed representation of the value Expression Expression 23 23 PI 3.14 eval name-rule print Visible World print calculate self-rule Execution World 23 Value Value Naming-rule: Look-up the value in the current environment using the name

Capturing common patterns Here are some common patterns (* 3.14 (* 5 5)) (* 3.14 (* 23.2 23.2)) (* 3.14 (* x x)) How do we generalize (e.g. the last expression)? i.e. how to express the idea of “circle area computation”? They are instances of a circle area computation Kurze Wiederholung der bis hier Besprochenes Prozedurdefinition als eine weitaus leistungsfähigere Abstraktionsmittel: Eine zusammengesetzte Operation einen Namen geben mit dem man auf sie sich beziehen kann.

Creating new procedures We use procedures to capture ways of doing things sometimes we also use the name function similar to a function in mathematics The define special form is used to create new procedures Name Parameter (define (area-of-disk r) (* 3.14 (* r r))) Body of procedure

Creating new Procedures As soon as a procedure has been defined, we can use it as if it were a primitive procedure (such as +, * etc.) Example - area of a circle: (area-of-disk 5)  = 78.5 Example - area of a ring: (- (area-of-disk 5) (area-of-disk 3))  = (78.5 - 28.26) = 50.24 - =

Creating new procedures Existing procedures can be combined to new, more powerful procedures Example: calculate area of a ring Example: Using the new procedure (area-of-ring 5 3) = (- (area-of-disk 5) (area-of-disk 3)) = (- (* 3.14 (* 5 5)) (* 3.14 (* 3 3))) = … = 50.24 (define (area-of-ring outer inner) (- (area-of-disk outer) (area-of-disk inner)))

Informal specifications Typical program specification Usually not in mathematical terms that can be directly transformed into programs Often rather informal problem specifications May contain irrelevant or ambiguous information Example: “Company XYZ & Co. pays all its employees $12 per hour. A typical employee works between 20 and 65 hours per week. Develop a program that determines the wage of an employee from the number of hours of work.” problem analysis (define (wage hours) (* 12 hours))

Errors Your programs will contain errors Possible errors: This is normal Don’t get confused or frustrated by your errors Possible errors: Wrong number of brackets, i.e. (* 3 (5) The operator of a procedure call is not a procedure (10) (10 + 20) other typical runtime errors: (+ 3 true) (/ 3 0) Try out what is happening in erroneous programs and try to understand the error message!

Designing Programs The design of programs is not trivial The following design recipe helps you in writing your first program: step-by-step prescription of what you should do Later we will refine this recipe Any program development requires at least the following four activities: Understanding the program's purpose Thinking about program examples Implementing the program body Testing

“If you can't write it down in English, you can't code it.“ Designing Programs “If you can't write it down in English, you can't code it.“ Peter Halpern Understanding the program's purpose calculate the area of a ring: calculate the area of the ring that has an outer radius ‘outer’ and an inner radius ‘inner’ It can be calculated using the radius of the circle with radius ‘outer’ and subtracting the area of the circle with radius ‘inner’ …

Designing Programs Understanding the program's purpose Giving the program a meaningful name Definition of a contract What kind of information is consumed and produced? Adding the program header Formulate a short purpose statement for the program, that is a brief comment of what the program is to compute ;; area-of-ring :: number number -> number ;; ;; to compute the area of a ring, ;; whose hole has a radius of “inner” (define (area-of-ring outer inner) … )

Designing Programs Program Examples Help to characterize the input and output Examples help us to understand the computational process of a program and to discover logical errors It is easier to understand something difficult with an example For our example: ;; area-of-ring :: number number -> number ;; to compute the area of a ring, ;; whose hole has a radius of “inner” ;; Example: (area-of-ring 5 2) is 65.94 (define (area-of-ring outer inner) … )

Designing Programs Implement the program body Replace the “...” in our header with an expression If the input-output relationship is given as a mathematical formula, we just translate In case of an informally stated formula, we have to understand the computational task the examples of step 2 can help us ;; area-of-ring :: number number -> number ;; to compute the area of a ring, ;; whose hole has a radius of “inner” ;; Example: (area-of-ring 5 2) is 65.94 (define (area-of-ring outer inner) (- (area-of-disk outer) (area-of-disk inner)))

Designing Programs 4. Testing i.e. with the DrScheme Testcases (Special -> Insert Testcase) to discover mistakes in particular for non local errors

“Testing can show the presence of bugs, but not their absence.” Edsger W. Dijkstra “Beware of bugs in the above code; I have only proved it correct, not tried it“ Donald E. Knuth

Auxiliary Functions When should we use auxiliary functions? Example: The owner of a performance theater wants you to design a program that computes the relationship between profit and ticket price At a price of 5€ per ticket, 120 people attend a performance. Decreasing the price by 0.10€ increases attendance by 15 people. Each performance costs the owner 180€. Each attendee costs 0.04€.

Auxiliary Functions: Bad Design ;; How NOT to design a program (define (profit price) (- (* (+ 120 (* (/ 15 .10) (- 5.00 price))) price) (+ 180 (* .04 (+ 120 (- 5.00 price)))))))

Auxiliary Functions: Good Design ;; How to design a program (define (profit ticket-price) (- (revenue ticket-price) (cost ticket-price))) (define (revenue ticket-price) (* (attendees ticket-price) ticket-price)) (define (cost ticket-price) (+ 180 (* 0.04 (attendees ticket-price)))) (define (attendees ticket-price) (+ 120 (* 15 (/ (- 5.00 ticket-price) 0.10))))

Guideline on Auxiliary Functions Formulate auxiliary function definitions for every dependency between quantities mentioned in the problem statement or quantities discovered with example calculations.

Procedures as Black-Box-Abstractions Abstraction helps hiding complexity Details that are irrelevant for understanding from a special point of view are ignored.

Procedures as Black-Box abstractions Will consider several fundamental kinds of abstraction in this course. Procedural abstraction is one: area-of-ring computes the area of a ring user doesn't have to think about the internals black-box-abstraction Input Output We know what it does, but not how.

Procedures as Black-Box abstractions A computing problem is often broken down into natural, smaller sub-problems. Example: area of a ring  2* Calculating the area of a circle Procedures are written for each of these sub problems. area-of-disk,… primitive procedures …

Procedures as Black-Box abstractions The procedure attendees can be seen as black box. We know that it calculates the number of attendees. But we do not want to know how it works. These details can be ignored. attendees is a procedural abstraction for revenue/cost. profit revenue cost attendees

Procedures as Black-Box abstractions A user defined procedure is called by a name, as are primitive procedures How a procedure works remains hidden. area-of-ring area-of-circle square At this level of abstraction, any procedure that calculates squares is as good as any other. (define (square x) (* x x)) (define (square x) (* (* x 10) (/ x 10)))

constant definition Guideline on Variable Definitions: Better to read Easier to maintain changes must be made at one point only In our example: (define PI 3.14) We only need one change for a better approximation (define PI 3.14159) Give names to frequently used constants and use the names instead of the constants in programs

Conditional Expressions Two modes: 1) (if <test> <then-expr> <else-expr>) not optional in Scheme Example: (define (absolute x) (if (< x 0) (- x) x))

Conditional Expressions Two modes: 2) (cond [<test1> <expr1>] [<test2> <expr2>] . . . [else <last-expr>]) optional Example: (define (absolute x) (cond [(> x 0) x] [(= x 0) 0] [else (- x)])) Eigentlich habe ich gelogen. Der <else-expr> Ausdruck in if Anweisung und in dem else Zweig in cond Anweisungen sind optional, aber der Rückgabewert ist nicht spezifiziert, also lassen Sie es besser nicht aus.

Comments on conditionals A test is „true“ if the evaluation is true A branch of a cond can have more than one expression: (<test> <expr1> <expr2> . . . <exprN>) As long as we have no „side effects“, we do not need more than one expression (<test>) returns value of <test> The else branch must contain at least one expression

Boolean functions (and <expr_1> <expr_2> . . . <expr_N>) <expr_i> (i = 1..N) evaluated in order of appearance; returns false if any expression is evaluated to false, else the return is true (shortcut). If one of the expressions returns neither true or false, then an error will occur. Some expressions will not be evaluated due to the shortcut-Rule (and (= 4 4) (< 5 3))  false (and true (+ 3 5))  Error: and: question result is not true or false: 8 (and false (+ 3 5))  Shortcut-Rule: false

Boolean functions (or <expr_1> <expr_2> . . . <expr_N>) <expr_i> (i = 1..N) evaluated in order of occurrence; returns true after the first value is evaluated to true; returns false if all expressions are false An error occurs if a value evaluates to neither true or false (or (= 4 4) (< 5 3))  true (or true (+ 3 5))  Shortcut-Rule: true (or false (+ 3 5))  Error: or: question result is not true or false: 8

Boolean functions (boolean=? <expr1> <expr2>) expr1, expr2 evaluated in order of appearance; returns true, if expr1 and expr2 both produce true or both produce false returns false, if the operands have different Boolean values an error occurs, if an operand evaluates to neither true or false (not <expr>) returns true when <expr> evaluates to false returns false when <expr> evaluates to true Füge Tabellen hier

Designing Conditional Functions How does our design process change? New Phase: Data analysis Which different situations exist? Examples choose at least one example per situation Implementing the program body First write down the skeleton of a cond/if expression, then implement the individual cases Testing tests should cover all situations Program development requires at least the following four activities Understanding the program's purpose Making up examples Implementing the program body Testing

Symbols Up to this point, we know numbers and Booleans as primitive values Often we want to store symbolic information names, words, directions A symbol in Scheme is a sequence of characters, headed by a single quotation mark: ‘the ‘dog ‘ate ‘a ‘cat! ‘two^3 ‘and%so%on? Not all characters are allowed (i.e. no space) Only one operation on this data type: symbol=? (symbol=? ‘hello ‘hello)  true (symbol=? ‘hello ‘abc)  false (symbol=? 1 2)  error Symbols are atomic (like numbers, Booleans) Symbols cannot be separated

Symbols: Example (define (reply s) (cond [(symbol=? s 'GoodMorning) 'Hi] [(symbol=? s 'HowAreYou?) 'Fine] [(symbol=? s 'GoodAfternoon) 'INeedANap] [(symbol=? s 'GoodEvening) 'BoyAmITired] [else 'Error_in_reply:unknown_case] ))

Symbols vs. Strings Many of you may know the data type String Symbols are different from Strings Symbols: Are used for symbolic names atomic, no manipulation, very efficient comparison certain restrictions which characters can be represented Strings: Are used for text data Manipulation possible (i.e. search, compose etc.) Comparison is expansive Any kind of character (string) is possible Strings are also available in Scheme To generate with a double quotation mark; compare with string=? For now we will ignore strings

Reminder: The Evaluation-Rule Up to now we have only considered built-in procedures. How to evaluate procedures that are defined by the programmer? self evaluated  … built-in operator  … Name  … special form  … Combination  Evaluate the sub expressions (in any order) Apply the procedure that is the value of the leftmost sub expression (the operator) to the arguments that are the values of the other sub expressions (the operands).

Extended Evaluation-Rule Evaluation rule for procedures The procedure is a primitive procedure execute the respective machine instructions. The procedure is a compound procedure Evaluate the procedure body Substitute each formal parameter with the respective actual value, that is passed when applying the procedure. (define (f x ) (* x x)) (f 5 )

Declaring the formal parameters Substitution Model Fictive names (formal parameters/variables): allow the definition of general procedures that can be reused in various situations. When using the procedures, the actual values need to be associated with the fictive names. As known from algebra: f(a, b) = a2 + b2 Declaring the formal parameters Defining the function using formal parameters Using the general function to solve a particular problem f (3, 2)

Substitution Model a b ... (define b 2) ... (f 3 2) ... Associating the actual values when executing (define (f a b) (+ (* a a) (* b b))) a b ... (define b 2) ... (f 3 2) ... ... (f b 2) ... ... a * a b * b + Calling environment Procedure environment of f

Substitution Model a 3 2 b ... (define b 2) ... (f 3 2) ... Associating the actual values when executing (define (f a b) (+ (* a a) (* b b))) a 3 2 b ... (define b 2) ... (f 3 2) ... ... (f b 2) ... ... a * a 3 * 3 b * b 2 * 2 + 13 Calling environment Procedure environment of f

Substitution Model 2 a b 2 ... (define b 2) ... (f 3 2) ... Associating the actual value when executing 2 a b 2 ... (define b 2) ... (f 3 2) ... ... (f b 2) ... ... 2 * 2 a * a b * b 2 * 2 + 8 Calling environment Procedure environment of f

Substitution Model The purpose of the substitution model is to help us think about procedure application It does not provide a description of how the interpreter really works Typically, an interpreter does not evaluate procedure applications by manipulating the text of a procedure to substitute values for the formal parameters. This is a simplified model to get started thinking formally about the evaluation process More detailed models will follow later on Allows you to “execute” a program on a piece of paper

Details of the Substitution Model: applicative order of evaluation (define (square x) (* x x))) (define (average x y) (/ (+ x y) 2))) (average 5 (square 3)) (average 5 (* 3 3)) (average 5 9) first evaluate the operands, then do the replacement (applicative order) (/ (+ 5 9) 2) (/ 14 2) If the operator is a simple procedure, replace it 7 with the result of the operation

Details of the Substitution Model: normal order of evaluation (define (square x) (* x x)) (define (average x y) (/ (+ x y) 2)) (average 5 (square 3)) (/ (+ 5 (square 3)) 2) (/ (+ 5 (* 3 3)) 2) (/ (+ 5 9) 2) (/ 14 2) 7 normal order

Applicative vs. normal order of evaluation Applicative: First evaluate the operator and all operands, then substitute Normal: Evaluate operator, then substitute the (not evaluated) operands for the formal arguments of the operator Important, non-trivial property: The result does not depend on the order of evaluation (confluence) However, termination of the evaluation process may depend on the evaluation order We will see features (assignment, in-/output) which destroy this characteristic later Sometimes both strategies can be very different in the number of evaluation steps argument is not required  normal order wins argument is required several times  applicative order wins

Review: Scheme Things that constitute a Scheme program: Syntax self evaluating 23, true, false, names +, PI, pi combinations (+ 2 3) (* pi 4) special forms (define PI 3.14) Syntax combination: (oper-expression other-expressions …) special form: a special keyword as first sub routine Semantics combinations: evaluate subroutines in any order, use the operator for the operands substitution for user-defined procedures special forms: each form has its own

Summary We have learned: The simplest elements (data/procedures) of Scheme Combination as a composing instrument of simpler elements into more complex elements How to make combinations to use them further as elements in other combinations How to define own procedures – process pattern – and use them as basic elements of combinations _______________________ Scheme ________________________ Separate problems to smaller exact defined tasks Procedures as Black-Box abstraction Semantic of a procedure call as a substitution process