Exercise 1 ( = 18 points)

Similar documents
Exercise 1 ( = 24 points)

Exercise 1 (2+2+2 points)

Exercise 1 ( = 22 points)

Functional Programming. Overview. Topics. Definition n-th Fibonacci Number. Graph

CS 4110 Programming Languages & Logics. Lecture 17 Programming in the λ-calculus

Functional Languages and Higher-Order Functions

CS 320: Concepts of Programming Languages

Lecture 5: Lazy Evaluation and Infinite Data Structures

The University of Nottingham

CSCE 314 Programming Languages

Shell CSCE 314 TAMU. Higher Order Functions

Programming Languages. Programming with λ-calculus. Lecture 11: Type Systems. Special Hour to discuss HW? if-then-else int

Lecture 19: Functions, Types and Data Structures in Haskell

CITS3211 FUNCTIONAL PROGRAMMING. 10. Programming in the pure λ calculus

CSE-321 Programming Languages 2010 Midterm

Trees. Solution: type TreeF a t = BinF t a t LeafF 1 point for the right kind; 1 point per constructor.

CSE 505. Lecture #9. October 1, Lambda Calculus. Recursion and Fixed-points. Typed Lambda Calculi. Least Fixed Point

INTRODUCTION TO FUNCTIONAL PROGRAMMING

Functional Programming. Overview. Topics. Recall λ-terms. Examples

Concepts of programming languages

n n Try tutorial on front page to get started! n spring13/ n Stack Overflow!

CS 320: Concepts of Programming Languages

Graphical Untyped Lambda Calculus Interactive Interpreter

If a program is well-typed, then a type can be inferred. For example, consider the program

Lecture #13: Type Inference and Unification. Typing In the Language ML. Type Inference. Doing Type Inference

Theorem Proving Principles, Techniques, Applications Recursion

9/23/2014. Why study? Lambda calculus. Church Rosser theorem Completeness of Lambda Calculus: Turing Complete

Lecture 4: Higher Order Functions

Lambda calculus. Wouter Swierstra and Alejandro Serrano. Advanced functional programming - Lecture 6

Recursion. Tjark Weber. Functional Programming 1. Based on notes by Sven-Olof Nyström. Tjark Weber (UU) Recursion 1 / 37

Typed Scheme: Scheme with Static Types

λ calculus is inconsistent

CSC173 Lambda Calculus Lambda Calculus Evaluation (10 min) Evaluate this expression (β-reduce with normal-order evaluation):

Type-indexed functions in Generic Haskell

Inductive Definitions, continued

CSE 3302 Programming Languages Lecture 8: Functional Programming

CMSC 330: Organization of Programming Languages

Programming Language Features. CMSC 330: Organization of Programming Languages. Turing Completeness. Turing Machine.

CMSC 330: Organization of Programming Languages

CIS 500 Software Foundations Midterm I

Dependencies by case or by function?

Polymorphic lambda calculus Princ. of Progr. Languages (and Extended ) The University of Birmingham. c Uday Reddy

The University of Nottingham SCHOOL OF COMPUTER SCIENCE A LEVEL 4 MODULE, SPRING SEMESTER MATHEMATICAL FOUNDATIONS OF PROGRAMMING ANSWERS

CS 209 Functional Programming

Pattern Matching and Abstract Data Types

More Untyped Lambda Calculus & Simply Typed Lambda Calculus

CSE-321 Programming Languages 2011 Final

Metaprogramming assignment 3

Harvard School of Engineering and Applied Sciences CS 152: Programming Languages. Lambda calculus

Type Systems. Parametric Polymorphism. 1. Recall Let-Polymorphism. 1. Recall Let-Polymorphism. Lecture 9 Dec. 15th, 2004 Sebastian Maneth

CS 440: Programming Languages and Translators, Spring 2019 Mon

Overview. A normal-order language. Strictness. Recursion. Infinite data structures. Direct denotational semantics. Transition semantics

CIS 500 Software Foundations Midterm I Answer key October 8, 2003

Introduction to Functional Programming in Haskell 1 / 56

CS152: Programming Languages. Lecture 7 Lambda Calculus. Dan Grossman Spring 2011

Logic - CM0845 Introduction to Haskell

Fall 2013 Midterm Exam 10/22/13. This is a closed-book, closed-notes exam. Problem Points Score. Various definitions are provided in the exam.

Haskell Overview II (2A) Young Won Lim 8/9/16

The Polymorphic Blame Calculus and Parametricity

Lambda Calculus and Type Inference

CSCE 314 TAMU Fall CSCE 314: Programming Languages Dr. Flemming Andersen. Haskell Functions

Whereweare. CS-XXX: Graduate Programming Languages. Lecture 7 Lambda Calculus. Adding data structures. Data + Code. What about functions

PROGRAMMING IN HASKELL. Chapter 5 - List Comprehensions

Computer Science 203 Programming Languages Fall Lecture 10. Bindings, Procedures, Functions, Functional Programming, and the Lambda Calculus

Lecture #23: Conversion and Type Inference

Haskell 98 in short! CPSC 449 Principles of Programming Languages

CS 320 Homework One Due 2/5 11:59pm

Conversion vs. Subtyping. Lecture #23: Conversion and Type Inference. Integer Conversions. Conversions: Implicit vs. Explicit. Object x = "Hello";

Introduction to Programming, Aug-Dec 2006

1.3. Conditional expressions To express case distinctions like

Haskell Overview II (2A) Young Won Lim 8/23/16

Generalized Iteration and Coiteration for Higher-Order Nested Datatypes

Lambda Calculus as a Programming Language

Type families and data kinds

Types and Programming Languages. Lecture 5. Extensions of simple types

More Lambda Calculus and Intro to Type Systems

CSE505, Fall 2012, Midterm Examination October 30, 2012

Inductive datatypes in HOL. lessons learned in Formal-Logic Engineering

Lambda Calculus as a Programming Language

According to Larry Wall (designer of PERL): a language by geniuses! for geniuses. Lecture 7: Haskell. Haskell 98. Haskell (cont) - Type-safe!

Lambda Calculus and Type Inference

Programming Language Concepts: Lecture 19

Polymorphism and Type Inference

The type checker will complain that the two branches have different types, one is string and the other is int

Lecture 9: More Lambda Calculus / Types

- M ::= v (M M) λv. M - Impure versions add constants, but not necessary! - Turing-complete. - true = λ u. λ v. u. - false = λ u. λ v.

Organization of Programming Languages CS3200/5200N. Lecture 11

Tree Equality: The Problem

Lambda Calculus. Concepts in Programming Languages Recitation 6:

CS Lecture 6: Map and Fold. Prof. Clarkson Spring Today s music: Selections from the soundtrack to 2001: A Space Odyssey

M. Snyder, George Mason University LAMBDA CALCULUS. (untyped)

Functional Programming Languages (FPL)

The Haskell HOP: Higher-order Programming

CS 4110 Programming Languages & Logics. Lecture 28 Recursive Types

Haskell through HUGS THE BASICS

Programming Languages Lecture 15: Recursive Types & Subtyping

Imperative languages

λ calculus Function application Untyped λ-calculus - Basic Idea Terms, Variables, Syntax β reduction Advanced Formal Methods

Types, Type Inference and Unification

Lists. Michael P. Fourman. February 2, 2010

Transcription:

1 Exercise 1 (4 + 5 + 4 + 5 = 18 points) The following data structure represents polymorphic binary trees that contain values only in special Value nodes that have a single successor: data Tree a = Leaf Node (Tree a) (Tree a) Value a (Tree a) Consider the tree t of characters on the right-hand side. The representation of t as an object of type Tree Char in Haskell would be: (Node (Value a (Value b Leaf)) (Node (Node Leaf Leaf) (Value c Leaf))) Implement the following functions in Haskell. a b c (a) The function foldtree of type (a -> b -> b) -> (b -> b -> b) -> b -> Tree a -> b works as follows: foldtree f g h x replaces all occurrences of the constructor Value in the tree x by f, it replaces all occurrences of the constructor Node in x by g, and it replaces all occurrences of the constructor Leaf in x by h. So for the tree t above, should compute foldtree (:) (++) [] t ((++) ((:) a ((:) b [])) ((++) ((++) [] []) ((:) c []))), which in the end results in "abc" (i.e., in the list [ a, b, c ]). Here, Value is replaced by (:), Node is replaced by (++), and Leaf is replaced by []. foldtree f g h (Value n x) = f n (foldtree f g h x) foldtree f g h (Node x y) = g (foldtree f g h x) (foldtree f g h y) foldtree h Leaf = h

2 (b) Use the foldtree function from (a) to implement the average function which has the type Tree Int -> Int and returns the average of the values that are stored in the tree. This should be accomplished as follows: Use foldtree with suitable functions as arguments in order to compute the sum of the values stored in the trees. Use foldtree with suitable functions as arguments in order to compute the number of Value-objects in the tree. Perform integer division with the pre-defined function div :: Int -> Int -> Int on these values to obtain the result. Here your function is required to work correctly only on those trees that contain the constructor Value at least once. average t = div (foldtree (+) (+) 0 t) (foldtree (\x y -> y+1) (+) 0 t)

3 (c) Consider the following data type declaration for natural numbers: data Nats = Zero Succ Nats A graphical representation of the first four levels of the domain fornats could look like this: Succ (Succ Zero) Succ (Succ (Succ )) Succ Zero Succ (Succ ) Zero Succ Sketch a graphical representation of the first three levels of the domain for the data type Tree Bool. Node (Value ) Node (Node ) Value (Node ) Value (Value ) Node Leaf Value Leaf Value True Value False Node Leaf Node (Node ) Node (Value ) Value Leaf Node

4 (d) Write a Haskell function printstars that first reads a string from the user, then prints this string on the console, converts the string to a number n (using the pre-defined function read) and in the end also prints n times the character * on the console. Also give the type declaration for your function. You may use the do-notation, but you are not obliged to use it. You do not have to check whether the input string is really a number. Some of the following pre-defined functions can be helpful: getline :: IO String reads a string from the user read :: String -> Int converts a string to a number putstr :: String -> IO () writes a string to the console An example run should look as given below. Here the string 7 was read from the user. Main> printstars 7 7******* -- without do-notation printstars :: IO () printstars = getline >>= \s -> putstr s >> putstr (take (read s) (repeat * )) -- alternative: with do-notation printstars2 :: IO () printstars2 = do s <- getline putstr s putstr (take (read s) (repeat * ))

5 Exercise 2 (4 + 5 = 9 points) Consider the following Haskell declarations for the fib function, which for a natural number x computes the value fibonacci(x): fib :: Int -> Int fib 0 = 0 fib 1 = 1 fib (x+2) = fib (x+1) + fib x (a) Please give the Haskell declarations for the higher-order function f fib corresponding to fib, i.e., the higher-order function f fib such that the least fixpoint of f fib is fib. In addition to the function declaration(s), please also give the type declaration of f fib. Since you may use full Haskell for f fib, you do not need to translate fib into simple Haskell. f fib :: (Int -> Int) -> (Int -> Int) f fib fib 0 = 0 f fib fib 1 = 1 f fib fib (x+2) = fib (x+1) + fib x (b) We add the Haskell declaration bot = bot. For each n N please determine which function is computed by f fib n bot. Here f fib n bot represents the n-fold application of f fib to bot, i.e., it is short for f fib (f fib... (f fib bot)...). }{{} n times Let f n : Z Z be the function that is computed by f fib n bot. Give f n in closed form, i.e., using a non-recursive definition. In this definition, you may use the function fibonacci : N N where fibonacci(x) computes the x-th Fibonacci number. Here it suffices to give the result of your calculations. You do not need to present any intermediate steps. { (f fib n fibonacci(x), if n > 0 and 0 x n ( ))(x) =, otherwise

6 Exercise 3 (3 + 3 = 6 points) Let D 1, D 2, D 3 be domains with corresponding complete partial orders D1, D2, D3. As we know from the lecture, then also (D2 D 3 ) is a complete partial order on (D 2 D 3 ). Now let f : D 1 D 2 and g : D 1 D 3 be functions. We then define the function h : D 1 (D 2 D 3 ) via h(x) = (f(x), g(x)). (a) Prove or disprove: If f and g are strict functions, then also h is a strict function. The statement does not hold. Consider the following counterexample: D 1 = D 2 = D 3 = B and f = g = B B. Obviously f and g are strict functions, i.e., f( B ) = g( B ) = B. However, we have h( B ) = ( B, B ) (B B ). (b) Prove or disprove: If f and g are monotonic functions, then also h is a monotonic function. Let x D1 y. Then we have: h(x) = (f(x), g(x)) f and g are monotonic, def. of (D2 D 3 ) (f(y), g(y)) (D2 D 3 ) = h(y) Hence, also h is monotonic.

7 Exercise 4 (6 points) We define the following data structures for natural numbers and polymorphic lists: data Nats = Zero Succ Nats data List a = Nil Cons a (List a) Consider the following expression in complex Haskell: let get n Nil = Zero get Zero (Cons x xs) = x get (Succ n) (Cons x xs) = get n xs in get Please give an equivalent expression let get =... in get in simple Haskell. Your solution should use the functions defined in the transformation from the lecture such as sel n,i, isa constr, and argof constr. However, you do not have to use the transformation rules from the lecture. let get = \n -> \xs -> if (isa Nil xs) then Zero else if (isa Zero n) then (sel 2,1 (argof Cons xs)) else get (sel 1,1 (argof Succ n)) (sel 2,2 (argof Cons xs)) in get

8 Exercise 5 (4 + 5 = 9 points) Consider the following data structure for polymorphic lists: data List a = Nil Cons a (List a) (a) Please translate the following Haskell expression into an equivalent lambda term (e.g., using Lam). Recall that pre-defined functions like odd or (+) are translated into constants of the lambda calculus. It suffices to give the result of the transformation. let f = \x -> if (odd x) then (\y -> x) else f ((+) x 3) in f fix (λf x. if (odd x) (λy.x) (f ((+) x 3)) )

9 (b) Let δ be the set of rules for evaluating the lambda terms resulting from Haskell, i.e., δ contains at least the following rules: fix λf. f (fix f) times 3 2 6 Now let the lambda term t be defined as follows: t = (λx. (fix λg. x)) (λz. (times 3 2)) Please reduce the lambda term t by WHNO-reduction with the βδ -relation. You have to give all intermediate steps until you reach weak head normal form (and no further steps). (λx. (fix λg. x)) (λz. (times 3 2)) β fix (λg. λz. (times 3 2)) δ (λf. f (fix f)) (λg. λz. (times 3 2)) β (λg. λz. (times 3 2)) (fix (λg. λz. (times 3 2))) β λz. (times 3 2)

10 Exercise 6 (10 points) Use the type inference algorithm W to determine the most general type of the following lambda term under the initial type assumption A 0. Show the results of all sub-computations and unifications, too. If the term is not well typed, show how and why the W-algorithm detects this. ( (Cons λx. x) y ) The initial type assumption A 0 contains at least the following: A 0 (Cons) = a. (a (List a List a)) A 0 (x) = a. a A 0 (y) = a. a W(A 0, ( (Cons λx. x) y ) ) W(A 0, (Cons λx. x) ) W(A 0, Cons) = (id, (b 1 (List b 1 List b 1 )) ) W(A 0, λx. x ) W(A 0 + {x :: b 2 }, x ) = (id, b 2 ) = (id, (b 2 b 2 )) mgu( (b 1 (List b 1 List b 1 )), ((b 2 b 2 ) b 3 ) ) = [ b 1 /(b 2 b 2 ), b 3 /(List (b 2 b 2 ) List (b 2 b 2 )) ] = ( [ b 1 /(b 2 b 2 ), b 3 /(List (b 2 b 2 ) List (b 2 b 2 )) ], (List (b 2 b 2 ) List (b 2 b 2 )) ) W(A 0, y) = (id, b 4 ) mgu( (List (b 2 b 2 ) List (b 2 b 2 )), (b 4 b 5 ) ) = [ b 4 /List (b 2 b 2 ), b 5 /List (b 2 b 2 ) ] = ( [ b 1 /(b 2 b 2 ), b 3 /(List (b 2 b 2 ) List (b 2 b 2 )), b 4 /List (b 2 b 2 ), b 5 /List (b 2 b 2 ) ], List (b 2 b 2 ) ) Resulting type: List (b 2 b 2 )