Lesson 4 Typed Arithmetic Typed Lambda Calculus

Slides:



Advertisements
Similar presentations
Programmed Strategies for Program Verification Richard B. Kieburtz OHSU/OGI School of Science and Engineering and Portland State University.
Advertisements

Types and Programming Languages Lecture 4 Simon Gay Department of Computing Science University of Glasgow 2006/07.
Types and Programming Languages Lecture 7 Simon Gay Department of Computing Science University of Glasgow 2006/07.
- Vasvi Kakkad.  Formal -  Tool for mathematical analysis of language  Method for precisely designing language  Well formed model for describing and.
Formal Semantics of Programming Languages 虞慧群 Topic 5: Axiomatic Semantics.
0 PROGRAMMING IN HASKELL Chapter 10 - Declaring Types and Classes.
String is a synonym for the type [Char].
Foundations of Programming Languages: Introduction to Lambda Calculus
Inductive Definitions COS 510 David Walker. Inductive Definitions Inductive definitions play a central role in the study of programming languages They.
Programming Language Semantics Mooly SagivEran Yahav Schrirber 317Open space html://
Type Inference David Walker COS 441. Criticisms of Typed Languages Types overly constrain functions & data polymorphism makes typed constructs useful.
Type Inference David Walker CS 510, Fall Criticisms of Typed Languages Types overly constrain functions & data polymorphism makes typed constructs.
Introduction Even though the syntax of Scheme is simple, it can be very difficult to determine the semantics of an expression. Hacker’s approach: Run it.
Logic Gates Circuits to manipulate 0’s and 1’s. 0’s and 1’s used for numbers Also to make decisions within the computer. In that context, 1 corresponds.
PPL Syntax & Formal Semantics Lecture Notes: Chapter 2.
Chapter 4 Context-Free Languages Copyright © 2011 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1.
CSE S. Tanimoto Lambda Calculus 1 Lambda Calculus What is the simplest functional language that is still Turing complete? Where do functional languages.
Typed Lambda Calculus Chapter 9 Benjamin Pierce Types and Programming Languages.
Lesson 4 Typed Arithmetic Typed Lambda Calculus 1/21/02 Chapters 8, 9, 10.
Type Safety Kangwon National University 임현승 Programming Languages.
Semantics. Semantics is a precise definition of the meaning of a syntactically and type-wise correct program. Ideas of meaning: –Operational Semantics.
© Kenneth C. Louden, Chapter 11 - Functional Programming, Part III: Theory Programming Languages: Principles and Practice, 2nd Ed. Kenneth C. Louden.
CSE 230 The -Calculus. Background Developed in 1930’s by Alonzo Church Studied in logic and computer science Test bed for procedural and functional PLs.
Ceg860 (Prasad)LADT1 Specification and Implementation of Abstract Data Types Algebraic Techniques.
Types and Programming Languages Lecture 12 Simon Gay Department of Computing Science University of Glasgow 2006/07.
12/9/20151 Programming Languages and Compilers (CS 421) Elsa L Gunter 2112 SC, UIUC Based in part on slides by Mattox.
Type Checking Textbook: Types and Programming Languages Benjamin Pierce.
Lambda Calculus CSE 340 – Principles of Programming Languages Fall 2015 Adam Doupé Arizona State University
Advanced Formal Methods Lecture 3: Simply Typed Lambda calculus Mads Dam KTH/CSC Course 2D1453, Some material from B. Pierce: TAPL + some from.
Types and Programming Languages Lecture 3 Simon Gay Department of Computing Science University of Glasgow 2006/07.
Compiler Construction Lecture Five: Parsing - Part Two CSC 2103: Compiler Construction Lecture Five: Parsing - Part Two Joyce Nakatumba-Nabende 1.
Lecture 9 : Universal Types
Lesson 10 Type Reconstruction
CS5205: Foundation in Programming Languages Type Reconstruction
Chapter 2: Lambda Calculus
Lesson 5 Simple extensions of the typed lambda calculus
CS5205: Foundations in Programming Languages
String is a synonym for the type [Char].
CS 550 Programming Languages Jeremy Johnson
Unit – 3 :LAMBDA CALCULUS AND FUNCTIONAL PROGRAMMING
Lambda Calculus CSE 340 – Principles of Programming Languages
CSE-321 Programming Languages Simply Typed -Calculus
CS510 Compiler Lecture 4.
Introduction to Parsing (adapted from CS 164 at Berkeley)
More on Lambda Calculus
CS 611: Lecture 9 More Lambda Calculus: Recursion, Scope, and Substitution September 17, 1999 Cornell University Computer Science Department Andrew Myers.
September 4, 1997 Programming Languages (CS 550) Lecture 6 Summary Operational Semantics of Scheme using Substitution Jeremy R. Johnson TexPoint fonts.
Corky Cartwright January 18, 2017
Proving Properties of Recursive Functions and Data Structures
Propositional Calculus: Boolean Algebra and Simplification
Typed Arithmetic Expressions
Carlos Varela Rennselaer Polytechnic Institute September 6, 2016
Lesson2 Lambda Calculus Basics
Amazing fact #3: -calculus is Turing-complete!
Announcements Quiz 6 HW7 due Tuesday, October 30
Carlos Varela Rennselaer Polytechnic Institute September 8, 2017
Types and Classes in Haskell
PROGRAMMING IN HASKELL
Organization of Programming Languages
L Calculus.
Programming Languages and Compilers (CS 421)
Programming Languages and Compilers (CS 421)
6.001 SICP Interpretation Parts of an interpreter
CSE S. Tanimoto Lambda Calculus
Compilers Principles, Techniques, & Tools Taught by Jing Zhang
Programming Languages
Switching Lemmas and Proof Complexity
Amazing fact #3: -calculus is Turing-complete!
Carlos Varela Rennselaer Polytechnic Institute September 8, 2015
Carlos Varela Rennselaer Polytechnic Institute September 10, 2019
Presentation transcript:

Lesson 4 Typed Arithmetic Typed Lambda Calculus Lesson 4: Typed Arithmetic and Lambda Calculus Lesson 4 Typed Arithmetic Typed Lambda Calculus 1/21/02 Chapters 8, 9, 10

Lesson 4: Typed Arith & Lambda Outline Types for Arithmetic types the typing relation safety = progress + preservation The simply typed lambda calculus Function types Curry-Howard correspondence Erasure: Curry-style vs Church-style Implementation Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Terms for arithmetic Terms Values t :: = true false if t then t else t succ t pred t iszero t v :: = true false nv nv ::= 0 succ nv Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Boolean and Nat terms Some terms represent booleans, some represent natural numbers. t :: = true false if t then t else t succ t pred t iszero t if t then t else t Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Nonsense terms Some terms don’t make sense. They represent neither booleans nor natural numbers. succ true iszero false if succ(0) then true else false These terms are stuck -- no evaluation rules apply, but they are not values. But what about the following? if iszero(0) then true else 0 Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Space of terms Terms if true then 0 else succ(0) succ(0) true succ(succ(0)) false iszero(pred(0)) Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Bool and Nat values Nat values Terms if true then 0 else succ(0) succ(0) true succ(succ(0)) false iszero(pred(0)) Boolean values Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Bool and Nat types Evals to Nat value Terms Bool type true false Nat type Evals to Bool value Lesson 4: Typed Arith & Lambda

Evaluation preserves type Terms Nat Bool Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda A Type System type expressions: T ::= . . . typing relation : t : T typing rules giving an inductive definition of t: T Lesson 4: Typed Arith & Lambda

Typing rules for Arithmetic: BN (typed) T ::= Bool | Nat (type expressions) true : Bool (T-True) false : Bool (T-False) 0 : Nat (T-Zero) t1: Nat (T-Succ) succ t1 : Nat t1: Nat (T-Pred) pred t1 : Nat t1: Nat (T-IsZero) iszero t1 : Bool t1: Bool t2: T t3: T (T-If) if t1 then t2 else t3 : T Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Typing relation Defn: The typing relation t: T for arithmetic expressions is the smallest binary relation between terms and types satisfying the given rules. A term t is typable (or well typed) if there is some T such that t : T. Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Inversion Lemma Lemma (8.2.2). [Inversion of the typing relation] 1. If true : R then R = Bool 2. If false : R then R = Bool 3. If if t1 then t2 else t3 : R then t1 : Bool and t2, t3 : R 4. If 0: R then R = Nat 5. If succ t1 : R then R = Nat and t1 : Nat 6. If pred t1 : R then R = Nat and t1 : Nat 7. If iszero t1 : R then R = Bool and t1 : Nat Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Typing Derivations A type derivation is a tree of instances of typing rules with the desired typing as the root. (T-Zero) (T-Zero) 0: Nat 0: Nat (T-IsZero) (T-Pred) iszero(0): Bool 0: Nat pred(0): Nat (T-If) if iszero(0) then 0 else pred 0 : Nat The shape of the derivation tree exactly matches the shape of the term being typed. Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Uniqueness of types Theorem (8.2.4). Each term t has at most one type. That is, if t is typable, then its type is unique, and there is a unique derivation of its type. Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Safety (or Soundness) Safety = Progress + Preservation Progress: A well-typed term is not stuck -- either it is a value, or it can take a step according to the evaluation rules. Preservation: If a well-typed term makes a step of evaluation, the resulting term is also well-typed. Preservation is also known as “subject reduction” Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Cannonical forms Defn: a cannonical form is a well-typed value term. Lemma (8.3.1). 1. If v is a value of type Bool, then v is true or v is false. 2. If v is a value of type Nat, then v is a numeric value, i.e. a term in nv, where nv ::= 0 | succ nv. Lesson 4: Typed Arith & Lambda

Progress and Preservation for Arithmetic Theorem (8.3.2) [Progress] If t is a well-typed term (that is, t: T for some type T), then either t is a value or else t  t’ for some t’. Theorem (8.3.3) [Preservation] If t: T and t  t’ then t’ : T. Proofs are by induction on the derivation of t: T. Lesson 4: Typed Arith & Lambda

Simply typed lambda calculus To type terms of the lambda calculus, we need types for functions (lambda terms): T1 -> T2 A function type T1 -> T2 specifies the argument type T1 and the result type T2 of the function. Lesson 4: Typed Arith & Lambda

Simply typed lambda calculus The abstract syntax of type terms is T ::= base types T -> T We need base types (e.g Bool) because otherwise we could build no type terms. We also need terms of these base types,so we have an “applied” lambda calculus. In this case, we will take Bool as the sole base type and add corresponding Boolean terms. Lesson 4: Typed Arith & Lambda

Abstract syntax and values Terms Values t :: = true false if t then t else t x x: T . t t t v :: = true false x: T . t Note that terms contain types! Lambda expressions are explicitly typed. Lesson 4: Typed Arith & Lambda

Typing rule for lambda terms , x: T1 |- t2 : T2 (T-Abs)  |- x: T1. t2 : T1 -> T2 The body of a lambda term (usually) contains free variable occurrences. We need to supply a context () that gives types for the free variables. Defn. A typing context  is a list of free variables with their types. A variable can appear only once in a context.  ::=  | , x: T Lesson 4: Typed Arith & Lambda

Typing rule for applications  |- t1 : T11 -> T12  |- t2 : T11 (T-App)  |- t1 t2 : T12 The type of the argument term must agree with the argument type of the function term. Lesson 4: Typed Arith & Lambda

Typing rule for variables x : T   (T-Var)  |- x : T The type of a variable is taken from the supplied context. Lesson 4: Typed Arith & Lambda

Inversion of typing relation Lemma (9.3.1). [Inversion of the typing relation] 1. If  |- x : R then x: R   2. If  |- x: T1. t2 : R then R = T1 -> R2 for some R2 with , x: T1 |- t2 : R2. 3. If  |- t1 t2 : R, then there is a T11 such that  |- t1: T11 -> R and  |- t2 : T11. 4. If  |- true : R then R = Bool 5. If  |- false : R then R = Bool 6. If  |- if t1 then t2 else t3 : R then  |- t1 : Bool and  |- t2, t3 : R Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Uniqueness of types Theorem (9.3.3): In a given typing context  containing all the free variables of term t, there is at most one type T such that  |- t: T. Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Canonical Forms () Lemma (9.3.4): 1. If v is a value of type Bool, then v is either true or false. 2. If v is a value of type T1->T2, then v = x: T1.t. Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Progress () Theorem (9.3.5): Suppose t is a closed, well-typed term (so |- t: T for some T). Then either t is a value, or t  t’ for some t’. Proof: by induction on the derivation of |- t: T. Note: if t is not closed, e.g. f true, then it may be in normal form yet not be a value. Lesson 4: Typed Arith & Lambda

Permutation and Weakening Lemma (9.3.6)[Permutation]: If  |- t: T and  is a permutation of , then  |- t: T. Lemma (9.3.7)[Weakening]: If  |- t: T and xdom(), then for any type S, , x: S |- t: T, with a derivation of the same depth. Proof: by induction on the derivation of |- t: T. Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Substitution Lemma Lemma (9.3.8) [Preservation of types under substitutions]: If , x: S |- t : T and  |- s: S, then  |- [x  s]t: T. Proof: induction of the derivation of , x: S |- t : T. Replace leaf nodes for occurences of x with copies of the derivation of  |- s: S. Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Substitution Lemma Lemma (9.3.8) [Preservation of types under substitutions]: If , x: S |- t : T and  |- s: S, then  |- [x  s]t: T. Proof: induction of the derivation of , x: S |- t : T. Replace leaf nodes for occurences of x with copies of the derivation of  |- s: S. Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Preservation () Theorem (9.3.9) [Preservation]: If  |- t : T and t  t’, then  |- t’ : T. Proof: induction of the derivation of  |- t : T, similar to the proof for typed arithmetic, but requiring the Substitution Lemma for the beta redex case. Homework: write a detailed proof of Thm 9.3.9. Lesson 4: Typed Arith & Lambda

Introduction and Elimination rules , x: T1 |- t2 : T2 (T-Abs)  |- x: T1. t2 : T1 -> T2  Elimination  |- t1 : T11 -> T12  |- t2 : T11 (T-App)  |- t1 t2 : T12 Typing rules often come in intro-elim pairs like this. Sometimes there are multiple intro or elim rules for a construct. Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Erasure Defn: The erasure of a simply typed term is defined by: erase(x) = x erase(x: T. t) = x. erase(t) erase(t1 t2) = (erase(t1))(erase(t2)) erase maps a simply typed term in  to the corresponding untyped term in . erase(x: Bool. y: Bool -> Bool. y x) = x. y. y x Lesson 4: Typed Arith & Lambda

Erasure commutes with evaluation erase t m eval eval erase t’ m’ Theorem (9.5.2) 1. if t  t’ in  then erase(t)  erase(t’) in . 2. if erase(t)  m in  then there exists t’ such that t  t’ in  and erase(t’) = m. Lesson 4: Typed Arith & Lambda

Curry style and Church style define evaluation for untyped terms, then define the well-typed subset of terms and show that they don’t exhibit bad “run-time” behaviors. Erase and then evaluate. Church: define the set of well-typed terms and give evaluation rules only for such well-typed terms. Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Homework Modify the simplebool program to add arithmetic terms and a second primitive type Nat. Add Nat, 0, succ, pred, iszero tokens to lexer and parser. Extend the definition of terms in the parser with arithmetic forms (see tyarith) Add type and term constructors to abstract syntax in syntax.sml, and modify print functions accordingly. Modify the eval and typeof functions in core.sml to handle arithmetic expressions. Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Optional homework Can you define the arithmetic plus operation in  (BN)? Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Sample some text Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Rules prem1 prem2 (Label) concl prem1 (Label) concl axiom (Label) Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Symbols                                 Lesson 4: Typed Arith & Lambda

Lesson 4: Typed Arith & Lambda Space of terms succ Terms Nat true Bool iszero false Lesson 4: Typed Arith & Lambda