a theoretician s programming language
play

A Theoreticians Programming Language Do we need... Function - PowerPoint PPT Presentation

A Theoreticians Programming Language Do we need... Function definition? Martin Henz From the Lambda Calculus to JavaScript A Theoreticians Programming Language Do we need... Function definition? granted! Martin Henz From the Lambda


  1. A Theoretician’s Programming Language Do we need... Function definition? Martin Henz From the Lambda Calculus to JavaScript

  2. A Theoretician’s Programming Language Do we need... Function definition? granted! Martin Henz From the Lambda Calculus to JavaScript

  3. A Theoretician’s Programming Language Do we need... Function definition? granted! Function application? Martin Henz From the Lambda Calculus to JavaScript

  4. A Theoretician’s Programming Language Do we need... Function definition? granted! Function application? granted! Martin Henz From the Lambda Calculus to JavaScript

  5. A Theoretician’s Programming Language Do we need... Function definition? granted! Function application? granted! Functions with multiple parameters? Martin Henz From the Lambda Calculus to JavaScript

  6. A Theoretician’s Programming Language Do we need... Function definition? granted! Function application? granted! Functions with multiple parameters? no! Martin Henz From the Lambda Calculus to JavaScript

  7. A Theoretician’s Programming Language Do we need... Function definition? granted! Function application? granted! Functions with multiple parameters? no! Numbers? Martin Henz From the Lambda Calculus to JavaScript

  8. A Theoretician’s Programming Language Do we need... Function definition? granted! Function application? granted! Functions with multiple parameters? no! Numbers? no! Martin Henz From the Lambda Calculus to JavaScript

  9. A Theoretician’s Programming Language Do we need... Function definition? granted! Function application? granted! Functions with multiple parameters? no! Numbers? no! Conditionals? Martin Henz From the Lambda Calculus to JavaScript

  10. A Theoretician’s Programming Language Do we need... Function definition? granted! Function application? granted! Functions with multiple parameters? no! Numbers? no! Conditionals? no! Martin Henz From the Lambda Calculus to JavaScript

  11. A Theoretician’s Programming Language Do we need... Function definition? granted! Function application? granted! Functions with multiple parameters? no! Numbers? no! Conditionals? no! Recursive functions? Martin Henz From the Lambda Calculus to JavaScript

  12. A Theoretician’s Programming Language Do we need... Function definition? granted! Function application? granted! Functions with multiple parameters? no! Numbers? no! Conditionals? no! Recursive functions? no! Martin Henz From the Lambda Calculus to JavaScript

  13. A Theoretician’s Programming Language Do we need... Function definition? granted! Function application? granted! Functions with multiple parameters? no! Numbers? no! Conditionals? no! Recursive functions? no! Martin Henz From the Lambda Calculus to JavaScript

  14. Some Examples function square(x) { return x * x; } square(13); Martin Henz From the Lambda Calculus to JavaScript

  15. Do we need multiple arguments? function plus(x,y) { return x + y; } plus(5,7); Martin Henz From the Lambda Calculus to JavaScript

  16. Do we need multiple arguments? function plus(x,y) { return x + y; } plus(5,7); becomes function plus(x) { function plusx(y) { return x + y; } return plusx; } var plusfive = plus(5); plusfive(7); Martin Henz From the Lambda Calculus to JavaScript

  17. Another Example function power(x,y) { if (y === 0) return 1; return x * power(x,y-1); } power(2,4); Martin Henz From the Lambda Calculus to JavaScript

  18. Do we need multiple arguments? function power(x,y) { if (y === 0) return 1; return x * power(x,y-1); } power(2,4); translates to: function power(x) { return function(y) { if (y === 0) return 1; return x * power(x)(y-1); }; } power(2)(4); Martin Henz From the Lambda Calculus to JavaScript

  19. Do we need numbers? Representing 0 using Church numerals: function zero(f) { return function(x) { return x; } } zero(’something’)(’somethingelse’) Martin Henz From the Lambda Calculus to JavaScript

  20. Do we need numbers? Representing 1 using Church numerals: function one(f) { return function(x) { return f(x); } } one(function(x) { return x*2; })(4) Martin Henz From the Lambda Calculus to JavaScript

  21. Do we need numbers? Representing 2 using church numerals: function two(f) { return function(x) { return f(f(x)); } } two(function(x) { return x*2; })(4) Martin Henz From the Lambda Calculus to JavaScript

  22. Getting the number back function two(f) { return function(x) { return f(f(x)); } } function church2js(c) { return c(function(x) { return x+1; })(0); } church2js(two); Martin Henz From the Lambda Calculus to JavaScript

  23. Can you do the reverse? Wanted: Define a function js2church that takes a JediScript number as argument and returns its Church numeral? Martin Henz From the Lambda Calculus to JavaScript

  24. Multiplication function times(x) { return function(y) { return function(f) { return x(y(f)); } } } function two(f) { return function(x) { return f(f(x)); } } Martin Henz From the Lambda Calculus to JavaScript

  25. Multiplication function three(f) { return function(x) { return f(f(f(x))); } } function church2js(c) { return c(function(x) { return x+1; })(0); } church2js(times(two)(three)); Martin Henz From the Lambda Calculus to JavaScript

  26. Conditionals Conditional statements if (20 < 10) { return 5; } else { return 7; } Conditional expressions (20 < 10) ? 5 : 7 Martin Henz From the Lambda Calculus to JavaScript

  27. Do we need conditionals? Idea Represent booleans with functions The function “true” function True(x) { return function(y) { return x; } } Martin Henz From the Lambda Calculus to JavaScript

  28. Do we need conditionals? Idea Represent booleans with functions The function “false” function False(x) { return function(y) { return y; } } Martin Henz From the Lambda Calculus to JavaScript

  29. Do we need conditionals? Conditional in JediScript True ? 5 : 7; Conditional using Encoding True(5)(7); Martin Henz From the Lambda Calculus to JavaScript

  30. Factorial using Conditional Expressions function factorial(x) { return (x === 0) ? 1 : x * factorial(x - 1); } factorial(5); Martin Henz From the Lambda Calculus to JavaScript

  31. Step 1: Eliminate Recursive Call function F(f) { return function(x) { return (x === 0) ? 1 : x * f(x - 1); }; } Martin Henz From the Lambda Calculus to JavaScript

  32. Step 2: Find a Fix-Point Function (aka Y-Combinator) We need a function Y with the following properties: Y ( F ) ≡ F ( Y ( F )) Martin Henz From the Lambda Calculus to JavaScript

  33. Step 2: A Y-Combinator function (f) { return (function (x) { return f(function(y) { return x(x)(y); }); }) (function (x) { return f(function(y) { return x(x)(y); }); }); } Martin Henz From the Lambda Calculus to JavaScript

  34. The Pure (Untyped) Lambda Calculus As a sublanguage of JediScript, the Lambda Calculus looks like this: L ::= � id � | ( L )( L ); | function ( � id � ) { return L ; } Martin Henz From the Lambda Calculus to JavaScript

  35. So: Why don’t we program using the Lambda Calculus? Answer Other design goals are equally important! Martin Henz From the Lambda Calculus to JavaScript

  36. So: Why don’t we program using the Lambda Calculus? Answer Other design goals are equally important! Some design goals for full JavaScript Expressive Easy to learn Convenient to use Martin Henz From the Lambda Calculus to JavaScript

  37. So: Why don’t we program using the Lambda Calculus? Answer Other design goals are equally important! Some design goals for full JavaScript Expressive Easy to learn Convenient to use At the expense of... Martin Henz From the Lambda Calculus to JavaScript

  38. So: Why don’t we program using the Lambda Calculus? Answer Other design goals are equally important! Some design goals for full JavaScript Expressive Easy to learn Convenient to use At the expense of... simplicity! Martin Henz From the Lambda Calculus to JavaScript

  39. Lambda Calculus: Some History Introduced by Alonzo Church in 1930s as a minimal formal system for recursion theory Later found to be equivalent to other computing frameworks (Church-Turing thesis) Used extensively in programming language theory and theoretical computer science Martin Henz From the Lambda Calculus to JavaScript

  40. Summary Simplicity is an important and highly useful driving force behind science and engineering Martin Henz From the Lambda Calculus to JavaScript

  41. Summary Simplicity is an important and highly useful driving force behind science and engineering Enables insights that would otherwise remain lost in a thicket of details Martin Henz From the Lambda Calculus to JavaScript

  42. Summary Simplicity is an important and highly useful driving force behind science and engineering Enables insights that would otherwise remain lost in a thicket of details In practice, simplicity competes with other goals; keep it in mind when thinking about complex systems Martin Henz From the Lambda Calculus to JavaScript

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