from frege to gosling 19 th century logic and 21 st
play

From Frege to Gosling: 19th Century Logic and 21st Century - PowerPoint PPT Presentation

From Frege to Gosling: 19th Century Logic and 21st Century Programming Languages Philip Wadler Avaya Labs Gottlob Frege, Begriffsschrift , 1879 Part I The Curry-Howard Isomorphism Modus ponens Frege, 1879 Gentzen, 1934 B A


  1. From Frege to Gosling: 19’th Century Logic and 21’st Century Programming Languages Philip Wadler Avaya Labs

  2. Gottlob Frege, Begriffsschrift , 1879

  3. Part I The Curry-Howard Isomorphism

  4. Modus ponens Frege, 1879 Gentzen, 1934 ⊢ B → A ⊢ B → -I ⊢ A

  5. Inference rules Id x 1 : A 1 , . . . , x n : A n ⊢ x i : A i Γ ⊢ s : A → B Γ ⊢ t : A Γ , x : A ⊢ u : B → -E → -I Γ ⊢ s ( t ) : B Γ ⊢ λx : A. u : A → B Γ ⊢ s : ∀ X. B Γ ⊢ u : B ∀ -E ∀ -I ( X �∈ Γ) Γ ⊢ s � A � : B [ A/X ] Γ ⊢ Λ X. u : ∀ X. B

  6. Inference rules Id x 1 : A 1 , . . . , x n : A n ⊢ x i : A i Γ ⊢ s : A → B Γ ⊢ t : A Γ , x : A ⊢ u : B → -E → -I Γ ⊢ s ( t ) : B Γ ⊢ λx : A. u : A → B Γ ⊢ s : ∀ X. B Γ ⊢ u : B ∀ -E ∀ -I ( X �∈ Γ) Γ ⊢ s � A � : B [ A/X ] Γ ⊢ Λ X. u : ∀ X. B

  7. A proof Id f : A → X ⊢ f : A → X Γ ⊢ t : A → -E Γ , f : A → X ⊢ f ( t ) : X → -I Γ ⊢ λf : A → X. f ( t ) : ( A → X ) → X ∀ -I Γ ⊢ Λ X. λf : A → X. f ( t ) : ∀ X. ( A → X ) → X

  8. A proof Id f : A → X ⊢ f : A → X Γ ⊢ t : A → -E Γ , f : A → X ⊢ f ( t ) : X → -I Γ ⊢ λf : A → X. f ( t ) : ( A → X ) → X ∀ -I Γ ⊢ Λ X. λf : A → X. f ( t ) : ∀ X. ( A → X ) → X

  9. Another proof Id Γ ⊢ s : ∀ X. ( A → X ) → X x : A ⊢ x : A ∀ -E → -I Γ ⊢ s � A � : ( A → A ) → A ⊢ λx : A. x : A → A → -E Γ ⊢ s � A � ( λx : A. x ) : A

  10. Another proof Id Γ ⊢ s : ∀ X. ( A → X ) → X x : A ⊢ x : A ∀ -E → -I Γ ⊢ s � A � : ( A → A ) → A ⊢ λx : A. x : A → A → -E Γ ⊢ s � A � ( λx : A. x ) : A

  11. A combined proof Id f : A → X ⊢ f : A → X Γ ⊢ t : A → -E Γ , f : A → X ⊢ f ( t ) : X → -I Γ ⊢ λf : A → X. f ( t ) : ( A → X ) → X ∀ -I Id Γ ⊢ Λ X. λf : A → X. f ( t ) : ∀ X. ( A → X ) → X x : A ⊢ x : A ∀ -E → -I Γ ⊢ (Λ X. λf : A → X. f ( t )) � A � : ( A → A ) → A ⊢ λx : A. x : A → A → -E Γ ⊢ (Λ X. λf : A → X. f ( t )) � A � ( λx : A. x ) : A

  12. A combined proof Id f : A → X ⊢ f : A → X Γ ⊢ t : A → -E Γ , f : A → X ⊢ f ( t ) : X → -I Γ ⊢ λf : A → X. f ( t ) : ( A → X ) → X ∀ -I Id Γ ⊢ Λ X. λf : A → X. f ( t ) : ∀ X. ( A → X ) → X x : A ⊢ x : A ∀ -E → -I Γ ⊢ (Λ X. λf : A → X. f ( t )) � A � : ( A → A ) → A ⊢ λx : A. x : A → A → -E Γ ⊢ (Λ X. λf : A → X. f ( t )) � A � ( λx : A. x ) : A

  13. Reductions Γ , x : A ⊢ u : B → -I Γ ⊢ λx : A. u : A → B Γ ⊢ t : A → -E ⇒ Γ ⊢ u [ t/x ] : B Γ ⊢ ( λx : A. u )( t ) : B Γ ⊢ u : B ∀ -I Γ ⊢ Λ X. u : ∀ X. B ∀ -E ⇒ Γ ⊢ u [ A/X ] : B [ A/X ] Γ ⊢ (Λ X. u ) � A � : B [ A/X ]

  14. Reductions Γ , x : A ⊢ u : B → -I Γ ⊢ λx : A. u : A → B Γ ⊢ t : A → -E ⇒ Γ ⊢ u [ t/x ] : B Γ ⊢ ( λx : A. u )( t ) : B Γ ⊢ u : B ∀ -I Γ ⊢ Λ X. u : ∀ X. B ∀ -E ⇒ Γ ⊢ u [ A/X ] : B [ A/X ] Γ ⊢ (Λ X. u ) � A � : B [ A/X ]

  15. Simplifying a proof Id f : A → X ⊢ f : A → X Γ ⊢ t : A → -E Γ , f : A → X ⊢ f ( t ) : X → -I Γ ⊢ λf : A → X. f ( t ) : ( A → X ) → X ∀ -I Id Γ ⊢ Λ X. λf : A → X. f ( t ) : ∀ X. ( A → X ) → X x : A ⊢ x : A ∀ -E → -I Γ ⊢ (Λ X. λf : A → X. f ( t )) � A � : ( A → A ) → A ⊢ λx : A. x : A → A → -E Γ ⊢ (Λ X. λf : A → X. f ( t )) � A � ( λx : A. x ) : A

  16. Simplifying a proof Id f : A → A ⊢ f : A → A Γ ⊢ t : A → -E Id Γ , f : A → A ⊢ f ( t ) : A x : A ⊢ x : A → -I → -I Γ ⊢ λf : A → X. f ( t ) : ( A → A ) → A ⊢ λx : A. x : A → A → -E Γ ⊢ ( λf : A → A. f ( t ))( λx : A. x ) : A

  17. Simplifying a proof Id x : A ⊢ x : A → -I ⊢ λx : A. x : A → A Γ ⊢ t : A → -E Γ ⊢ ( λx : A. x )( t ) : A

  18. Simplifying a proof Γ ⊢ t : A

  19. Additional reductions Id Γ ⊢ s : A → B x : A ⊢ x : A → -E Γ , x : A ⊢ s ( x ) : B → -I ⇒ Γ ⊢ s : A → B Γ ⊢ λx : A. s ( x ) : A → B Γ ⊢ s : ∀ X. B ∀ -E Γ ⊢ s � X � : B ∀ -I ⇒ Γ ⊢ s : ∀ X. B Γ ⊢ Λ X. s � X � : ∀ X. B

  20. Summary • Gottlob Frege, 1879 logic • Alonzo Church, 1932, 1940 lambda calculus • Gerhard Gentzen, 1935 natural deduction, proof normalization • Haskell Curry, 1958 combinators correspond to logic • Dag Prawitz, 1965 proof normalization for natural deduction • W. A. Howard, 1980 lambda calculus corresponds to logic

  21. Part II Parametricity

  22. Lists and map map : ∀ X. ∀ Y. ( X → Y ) → ( list � X � → list � Y � ) For example, if num : Int → Str then map � Int �� Str � ( num )([ 1 , 2 , 3 ]) = [ "i" , "ii" , "iii" ]

  23. A magic trick Think of a function with this type: r : ∀ X. list � X � → list � X �

  24. Theorems for Free! for all r : ∀ X. list � X � → list � X � , for all A , B , f : A → B , r � A � ❅ list � A � list � A � � map � A �� B � ( f ) map � A �� B � ( f ) ❅� ❅� ❅ list � B � list � B � � r � B �

  25. Theorems for Free! — an example take r = rev : ∀ X. list � X � → list � X � , take A = Int , B = Str , f = num : Int → Str , [ 1 , 2 , 3 ] rev � Int � [ 3 , 2 , 1 ] ❅ list � Int � list � Int � � map � Int �� Str � ( num ) map � Int �� Str � ( num ) ❅� ❅� ❅ list � Str � list � Str � � [ "i" , "ii" , "iii" ] rev � Str � [ "iii" , "ii" , "i" ]

  26. Part III Generic Java Gilad Bracha, JavaSoft, Sun Microsystems Martin Odersky, University of Lausanne David Stoutamire, JavaSoft, Sun Microsystems Philip Wadler, Avaya Labs

  27. Lists in Java and GJ in Java in GJ integer list List List<Integer> string list List List<String> string list list List List<List<String>>

  28. Lists in Java and GJ in Java in GJ integer list List List<Integer> string list List List<String> string list list List List<List<String>>

  29. Lists in Java and GJ in Java in GJ integer list List List<Integer> string list List List<String> string list list List List<List<String>>

  30. Lists in Java and GJ in Java in GJ integer list List List<Integer> string list List List<String> string list list List List<List<String>>

  31. Lists in Java and GJ in Java in GJ integer list List List<Integer> string list List List<String> string list list List List<List<String>>

  32. Support for reuse at multiple types • C++: templates • Ada: generics • Standard ML, Haskell: parametric polymorphism • Java: ???

  33. Lists in Java interface List { public void add (Object x); public Iterator iterator (); } interface Iterator { public Object next (); public boolean hasNext (); }

  34. Lists in GJ interface List<A> { public void add (A x); public Iterator<A> iterator (); } interface Iterator<A> { public A next (); public boolean hasNext (); }

  35. Translating lists from GJ to Java interface List { public void add (Object x); public Iterator iterator (); } interface Iterator { public Object next (); public boolean hasNext (); }

  36. Accessing lists in Java // integer list List xs = new LinkedList(); xs.add(new Integer(2)); Integer x = (Integer)xs.iterator().next(); space // string list list List ys = new LinkedList(); ys.add("ii"); List yss = new LinkedList(); yss.add(ys); String y = (String)((List)yss.iterator().next()).iterator().next(); space // string list treated as integer list Integer z = (Integer)ys.iterator().next(); // run-time exception

  37. Accessing lists in GJ // integer list List<Integer> xs = new LinkedList<Integer>(); xs.add(new Integer(2)); Integer x = xs.iterator().next(); space // string list list List<String> ys = new LinkedList<String>(); ys.add("ii"); List<List<String>> yss = new LinkedList<List<String>>(); yss.add(ys); String y = yss.iterator().next().iterator().next(); space // string list treated as integer list Integer z = ys.iterator().next(); // compile-time error

  38. Implementing lists in Java class LinkedList implements List { protected class Node { Object elt; Node next; Node (Object e) { elt=e; next=null; } } protected Node h, t; public LinkedList () { h=new Node(null); t=h; } public void add (Object elt) { t.next=new Node(elt); t=t.next; } public Iterator iterator () { return new Iterator () { protected Node p=h.next; public boolean hasNext () { return p!=null; } public Object next () { Object e=p.elt; p=p.next; return e; } }; } }

  39. Implementing lists in GJ class LinkedList<A> implements List<A> { protected class Node { A elt; Node next; Node (A e) { elt=e; next=null; } } protected Node h, t; public LinkedList () { h=new Node(null); t=h; } public void add (A elt) { t.next=new Node(elt); t=t.next; } public Iterator<A> iterator () { return new Iterator<A> () { protected Node p=h.next; public boolean hasNext () { return p!=null; } public A next () { A e=p.elt; p=p.next; return e; } }; } }

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend