SlideShare a Scribd company logo
var λ; Introduction to Functional Programming  with JavaScript (and a little Haskell) Will Kurt Will Kurt, Creative Commons Attribution-ShareAlike 3.0
"A language that doesn't effect how you think about programming is not worth learning" --Alan Perlis
So what is Functional Programming? http://www.flickr.com/photos/foundphotoslj/466713478/
What does this mean? http://www.flickr.com/photos/61417318@N00/4908148942/
No Side Effects! http://www.flickr.com/photos/rka/1733453/
http://www.flickr.com/photos/23912576@N05/3056871500/
Haskell! http://www.flickr.com/photos/micurs/4870514382/
JavaScript!!! http://www.flickr.com/photos/jurvetson/96972777/
Rules for Today λ
Lists!!! first( [1,2,3,4]) -> 1  (aka: car, head) rest( [1,2,3,4] ) -> [2,3,4] (aka: cdr, tail) empty( [1,2,3,4] ) -> false (aka: null?, nil? empty?,[]) empty( [ ] ) -> true build( 1 , [2,3,4]) -> [1,2,3,4]  (aka: cons, ':' ) build( [1] , [2,3,4]) -> [[1],2,3,4]
Recursion! "If you already know what recursion is, just remember the answer. Otherwise, find someone who is standing closer to Douglas Hofstadter than you are; then ask him or her what recursion is." -- Andrew Plotkin
Exercise set 1a 10 minutes
Answers to set 1a
problem 1 var fact = function(x) {      return(         (x===1) ? 1 :         x*fact(x-1)         ); } function fact (x) {       if(x==1){              return 1;        } else {          return x*fact2(x-1);        } }
problem 2 var fib = function(x){      return(            (x==0) ? 0 :            (x==1) ? 1 :            fib(x-1)+fib(x-2)      ); }
problem 2 continued... var fib_answers = [] fib_answers[0] = 0; fib_answers[1] = 1; var fibm = function (x) {       return fib_mem(x,fib_answer); } var fib_mem = function(x,m){      if(m[x] != undefined){           return m[x];      } else {           m[x] = fib_mem(x-1,m)+fib_mem(x-2,m);           return m[x];      } }
problem 2 last one I swear (also very functional)... var fib3wrapper = function(c){      return fib3(c,1,0); } var fib3 = function(c,last1,last2){       return(              (c==2) ? last1+last2:              fib3(c-1,last1+last2,last1)       ); }
Exercise set 1b 10 minutes
Answers to set 1b
problem 1 var length = function (xs) {       return(            empty (xs) ? 0 :            1 + length( rest (xs))       ); };
problem 2 var nth = function(n,xs){      return(           empty(xs) ? [] :           (n == 0) ? first(xs) :           nth(n-1, rest(xs))      ); };
problem 3 var removeAll = function (x, xs) {      return(          empty(xs) ?  [ ]  :          (x == first(xs)) ?  removeAll(x,                                      rest(xs))  :          build( first(xs),                 removeAll(x,rest(xs)))      ); };
First class functions http://www.flickr.com/photos/richardmoross/2211308689/
First Class Functions (Haskell) add2 x = 2 + x add3 x = 3 + x > add2 5 7 > add3 5 8
First Class Functions (Haskell) argIs2 func = (func) 2 argIs3 func = (func) 3 > argIs2(add2) 4 > argIs2(add3) 5 > argIs3(add2) 5 > argIs3(add3) 6
Lambda Functions http://www.flickr.com/photos/jeremymates/2362399109/
Lambda Function (Haskell) add4 =  (\x -> 4+x) >argIs2( (\x -> 4+x) ) 6
Lambda Function (JavaScript) $.ajax({ url: &quot;test.html&quot;, context: document.body, success:  function(){          $(this).addClass(&quot;done&quot;);        } }); $(&quot;#exec&quot;).click( function(){    $(&quot;#results&quot;).prepend(&quot;<li>Normal Handler</li>&quot;); } );
Exercise set 2 10 minutes
Answers to set 2
problem 1 var argIs2 = function(func) {      return func(2); }
problem 2 argIs2(function(x){ add(2,x);} );
problem 3 var flip = function (func) {         return(                    function(x,y){                           func(y,x);                   }         ); };
Break! 5 minutes
Closures http://www.flickr.com/photos/theredproject/3431459572/
Closures (Haskell) add5 = (+5) makeAdder val = (+val) makeAdderWithLambda val = (\x->x+val) add6 = makeAdder 6 add7 = makeAdderWithLambda 7 > add5 5 10 > add6 5 11 > add7 5 12
Exercise set 3 5 minutes
Answers to set 3
problem 1 var makeAdder = function (x) {      return(          function(y) {                    return add(x,y);                }      ); };
problem 2 var apiClosure = function(apiKey){       return(          function(x){               return apiSearch(apiKey,x);          }      ); };
problem 3 var compose = function (f1,f2) {       return(           function(x){               f1(f2(x));           }      ); };
Higher Order Functions http://www.flickr.com/photos/73416633@N00/2425022159/
Map http://www.flickr.com/photos/rosenkranz/3052214847/
Map (Haskell) doubleAll xs = map (*2) xs squareAll xs = map (^2) xs squareAndAdd xs = map (\x->x*x+x) xs upperCase s = map toUpper s > doubleAll [1,2,3,4] [2,4,6,8] > squareAll [1,2,3,4] [1,4,9,16] > squareAndAdd [1,2,3,4] [2,6,12,20] > upperCase &quot;doggie&quot; &quot;DOGGIE&quot;
Map (Haskell) doubleAllv2 = map (*2) squareAllv2 = map (^2) squareAndAddv2 = map (\x->x*x+x)
Exercise set 4a 5 minutes
Answers to set 4a
problem 1 var map = function (func, xs) {      return(          empty(xs) ?  [ ]  :          build(  func (first(xs)),                    map  (func,  rest  (xs))));      ); };
problem 2 map(function(x){                  return x*x},           xs);
Filter
Filter (Haskell) evenList xs = filter even xs mod17list xs = filter (== (`mod` 17) 0) xs doubleEvens xs = (doubleAll . evenList) xs > evenList  [1,2,3,4,5,6] [2,4,6] > mod17list  [1..100] [17,34,51,68,85] > doubleEvens  [0,3..27] [0,12,24,36,48]
Exercise set 4b 10 minutes
Answers to set 4b
problem 1 var filter = function (test,xs){      return(           empty(xs) ? [ ] :           test(first(xs)) ? filter(test, rest(xs)) :           build(first(xs),filter(test,rest(xs)))      ); };
problem 2 var removeAll = function(x,xs){      return(          filter( function(y){                            return y == x},                   xs )      ); };
Foldl (Reduce) http://en.wikipedia.org/wiki/File:Sermon_in_the_Deer_Park_depicted_at_Wat_Chedi_Liem-KayEss-1.jpeg
Foldl (Haskell) mySum xs = foldl (+) 0 xs sumOfSquares xs = foldl (+) 0 (map (^2) xs) sumOfSquaresv2 = (mySum . squareAll) > mySum [1..2000000] 2000001000000 > sumOfSquares [1..10] 385 > sumOfSquaresv2 [1..10] 385
Foldl (Haskell) myReverse xs = foldl (\x y -> y:x) [] xs myReverse [1,2,3] foldl (\x y -> y:x) [] [1,2,3] .. (\[] 1 -> 1:[]) .. => [1] foldl (\x y -> y:x) [1] [2,3] .. (\[1] 2 -> 2:[1]) .. => [2,1]
Exercise set 4c 5 minutes
Answers to set 4c
problem 1 var foldl = function (step, init, xs) {      return(           empty(xs) ?  init   :          foldl( step ,                  step(init,first(xs)),                  rest(xs)      ); };
problem 2 var sum = function(xs) {      return  foldl(add,0,xs); };
Map (JavaScript) 'The Spolsky Map' function spolsky_map(fn, a)      {          for (i = 0; i < a.length; i++)          {              a[i] = fn(a[i]) ;          }      } note the side effects
The Spolsky Reduce (foldl) function spolsky_reduce(fn, a, init)      {          var s = init;          for (i = 0; i < a.length; i++)              s = fn( s, a[i] );          return s;      }
Break 5 minutes
Exercise 5a 5 minutes
Answers to set 5a
problem 1 var last =  compose(first,reverse);
problem 2 var reverse = function (xs) {      return foldl(flip(build),[ ],xs); };
Standard Deviation 1. calculate the arithmetic mean of the list 2. subtract the mean from all the numbers in the list 3. square the number in that list 4. calculate the sum of the list 5. divide the sum by length of list by 1 6. get the square root of this number 
Standard Deviation 1. calculate the arithmetic mean of the list mean xs = sum xs / fromIntegral(length xs) 2. subtract the mean from all the numbers in the list deviations xs = map (\x -> x - m ) xs                  where m = mean xs 3. square the numbers in that list squareDeviations xs = map(^2) devs                        where devs = deviations xs 4. calculate the sum of the list sumSquareDeviations xs = (sum . squareDeviations) xs 5. divide the sum by length of list minus 1 6. get the square root of this number  sd xs = sqrt $ sumSqDev / lsub1   where sumSqDev = sumSquareDeviations xs         lsub1 = fromIntegral $ ((-1+) . length)xs
Exercise 5b 10 minutes
Answers to set 5b
Standard Deviation (JavaScript) var mean = function (xs){      return(sum(xs)/flength(xs)); }; var deviations = function (xs) {      var m = mean(xs);//we can remove this       return  map(function(x){return x-m;},xs); }; var squareDeviations = function(xs){      return  map(square,deviations(xs)); };
Standard Deviation (JavaScript) var sumSqDeviations = compose(sum,squareDeviations); var sd = function(xs){      return  Math.sqrt(     (sumSqDeviations(xs)/(length(xs)-1))); };
Standard Deviation Haskell > sd [1,4,5,9,2,10] 3.65604522218567 JavaScript > sd([1,4,5,9,2,10]); 3.65604522218567
Function Currying
Currying (Haskell) myAdd x y = x + y add8 = myAdd 8 add9  = (+9) > myAdd 8 9 17 > add8 9 17 > add9 8 17
Currying (JavaScript) var curry = function (f,a) {      return( function(){      var args =  Array.prototype.slice.call(arguments);        args.unshift(a);      return f.apply(this, args); }      ); };
Currying (JavaScript) purely functional var curry = function (f,a) {      return( function(){     return( ( function( args ){     return f.apply(this, build(a,args)); } ) (Array.prototype.slice.call(arguments))     ); }      ); };
Currying (JavaScript)  var add_three = function(a,b,c){      return a+b+c; }; >f1 = curry(add_three,1); >f1(2,3) 6 >f2 = curry(curry(add_three,1),2); >f2(3) 6
Exercise 6 10 minutes
Answers to set 6
problem 1 var makeAdder = curry(add,x); var apiClosure = curry(apiSearch,apiKey);
problem 2 var unrealisticFunction = function (a, b){      (function(c){          return((function(d){                                  if(c<d){                                             return c+d;                                             }else{                                             return c*d;                                            }                      };)(c+a)          );      })(a*b) };
Thanks! email: wckurt@gmail.com twitter: willkurt
Still have time? awesome!
Haskell vs JavaScript
Types!!! areaOfTrapezoid :: Float -> Float -> Float -> Float areaOfTrapezoid h b1 b2 = 0.5*h*(b1+b2) evenList :: (Integral a) => [a] -> [a] evenList xs  = filter even xs
Lazy Evaluation!!!   [2,4..] !! 108 > 218
Pattern Matching patternMatch [a,b,c] = b ++ c ++ a patternMatch [a,b] = a ++ b patternMatch [] = &quot;no list&quot; patternMatch as = &quot;a larger list&quot;
Pattern Matching patternMatch [&quot;a&quot;,&quot;b&quot;,&quot;c&quot;] >&quot;bca&quot; patternMatch [&quot;a&quot;,&quot;b&quot;] >&quot;ab&quot; patternMatch [ ] >&quot;no list&quot; patternMatch [&quot;a&quot;,&quot;b&quot;,&quot;c&quot;,&quot;d&quot;] >&quot;a larger list&quot;
Who actually uses this stuff? http://cufp.org/
Ocaml
 
 
more @ http://www.scala-lang.org/node/1658
Haskell
... continued more @ http://haskell.org/haskellwiki/Haskell_in_industry

More Related Content

PDF
Predictably
PDF
Continuation Passing Style and Macros in Clojure - Jan 2012
PDF
Futures e abstração - QCon São Paulo 2015
DOCX
QA Auotmation Java programs,theory
PPT
KEY
Into Clojure
ODP
Scala introduction
Predictably
Continuation Passing Style and Macros in Clojure - Jan 2012
Futures e abstração - QCon São Paulo 2015
QA Auotmation Java programs,theory
Into Clojure
Scala introduction

What's hot (20)

PDF
Clojure: The Art of Abstraction
PPTX
Is java8 a true functional programming language
PPTX
Is java8a truefunctionallanguage
PDF
Lambda? You Keep Using that Letter
PDF
Monadologie
PPTX
The Groovy Puzzlers – The Complete 01 and 02 Seasons
PDF
Clojure class
PDF
Java 8 - An Introduction by Jason Swartz
PPTX
Clojure for Data Science
PDF
Refactoring to Immutability
PDF
JDays 2016 - Beyond Lambdas - the Aftermath
PDF
The Ring programming language version 1.6 book - Part 34 of 189
PDF
From Lisp to Clojure/Incanter and RAn Introduction
PDF
Spotify 2016 - Beyond Lambdas - the Aftermath
PDF
Scala vs Java 8 in a Java 8 World
PDF
TI1220 Lecture 6: First-class Functions
PPTX
Advanced JavaScript
KEY
Google Guava
PDF
Clojure for Data Science
Clojure: The Art of Abstraction
Is java8 a true functional programming language
Is java8a truefunctionallanguage
Lambda? You Keep Using that Letter
Monadologie
The Groovy Puzzlers – The Complete 01 and 02 Seasons
Clojure class
Java 8 - An Introduction by Jason Swartz
Clojure for Data Science
Refactoring to Immutability
JDays 2016 - Beyond Lambdas - the Aftermath
The Ring programming language version 1.6 book - Part 34 of 189
From Lisp to Clojure/Incanter and RAn Introduction
Spotify 2016 - Beyond Lambdas - the Aftermath
Scala vs Java 8 in a Java 8 World
TI1220 Lecture 6: First-class Functions
Advanced JavaScript
Google Guava
Clojure for Data Science
Ad

Similar to Intro to Functional Programming Workshop (code4lib) (20)

PDF
Introduction to Functional Programming with Haskell and JavaScript
ODP
The secrets of inverse brogramming
PPT
LECTURE 5-Function in Matlab how to use mathlab
PPTX
Millionways
KEY
関数潮流(Function Tendency)
PPTX
ES6(ES2015) is beautiful
PDF
From Javascript To Haskell
PPT
Week 3-Using functions Week 3-Using functions
PPT
Python 101 language features and functional programming
PDF
PythonOOP
PDF
Haskell 101
PDF
TDC2016SP - Trilha Programação Funcional
PDF
INTRODUCTION TO MATLAB session with notes
PPTX
Javascript Basics
PPTX
Mat lab day 1
PDF
Transducers in JavaScript
PDF
Go Says WAT?
PDF
5.1 Quadratic Functions
PDF
Christian Gill ''Functional programming for the people''
PPTX
ES6 and AngularAMD
Introduction to Functional Programming with Haskell and JavaScript
The secrets of inverse brogramming
LECTURE 5-Function in Matlab how to use mathlab
Millionways
関数潮流(Function Tendency)
ES6(ES2015) is beautiful
From Javascript To Haskell
Week 3-Using functions Week 3-Using functions
Python 101 language features and functional programming
PythonOOP
Haskell 101
TDC2016SP - Trilha Programação Funcional
INTRODUCTION TO MATLAB session with notes
Javascript Basics
Mat lab day 1
Transducers in JavaScript
Go Says WAT?
5.1 Quadratic Functions
Christian Gill ''Functional programming for the people''
ES6 and AngularAMD
Ad

Recently uploaded (20)

PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
Network Security Unit 5.pdf for BCA BBA.
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PPTX
sap open course for s4hana steps from ECC to s4
PPTX
Big Data Technologies - Introduction.pptx
PPT
Teaching material agriculture food technology
PPTX
Spectroscopy.pptx food analysis technology
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Review of recent advances in non-invasive hemoglobin estimation
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Empathic Computing: Creating Shared Understanding
Programs and apps: productivity, graphics, security and other tools
Network Security Unit 5.pdf for BCA BBA.
MYSQL Presentation for SQL database connectivity
Spectral efficient network and resource selection model in 5G networks
gpt5_lecture_notes_comprehensive_20250812015547.pdf
The Rise and Fall of 3GPP – Time for a Sabbatical?
NewMind AI Weekly Chronicles - August'25-Week II
sap open course for s4hana steps from ECC to s4
Big Data Technologies - Introduction.pptx
Teaching material agriculture food technology
Spectroscopy.pptx food analysis technology
Mobile App Security Testing_ A Comprehensive Guide.pdf
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Review of recent advances in non-invasive hemoglobin estimation
Digital-Transformation-Roadmap-for-Companies.pptx
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Building Integrated photovoltaic BIPV_UPV.pdf
Chapter 3 Spatial Domain Image Processing.pdf
“AI and Expert System Decision Support & Business Intelligence Systems”
Empathic Computing: Creating Shared Understanding

Intro to Functional Programming Workshop (code4lib)

  • 1. var λ; Introduction to Functional Programming  with JavaScript (and a little Haskell) Will Kurt Will Kurt, Creative Commons Attribution-ShareAlike 3.0
  • 2. &quot;A language that doesn't effect how you think about programming is not worth learning&quot; --Alan Perlis
  • 3. So what is Functional Programming? http://www.flickr.com/photos/foundphotoslj/466713478/
  • 4. What does this mean? http://www.flickr.com/photos/61417318@N00/4908148942/
  • 5. No Side Effects! http://www.flickr.com/photos/rka/1733453/
  • 10. Lists!!! first( [1,2,3,4]) -> 1  (aka: car, head) rest( [1,2,3,4] ) -> [2,3,4] (aka: cdr, tail) empty( [1,2,3,4] ) -> false (aka: null?, nil? empty?,[]) empty( [ ] ) -> true build( 1 , [2,3,4]) -> [1,2,3,4]  (aka: cons, ':' ) build( [1] , [2,3,4]) -> [[1],2,3,4]
  • 11. Recursion! &quot;If you already know what recursion is, just remember the answer. Otherwise, find someone who is standing closer to Douglas Hofstadter than you are; then ask him or her what recursion is.&quot; -- Andrew Plotkin
  • 12. Exercise set 1a 10 minutes
  • 14. problem 1 var fact = function(x) {      return(        (x===1) ? 1 :        x*fact(x-1)         ); } function fact (x) {      if(x==1){              return 1;        } else {          return x*fact2(x-1);        } }
  • 15. problem 2 var fib = function(x){      return(            (x==0) ? 0 :            (x==1) ? 1 :            fib(x-1)+fib(x-2)      ); }
  • 16. problem 2 continued... var fib_answers = [] fib_answers[0] = 0; fib_answers[1] = 1; var fibm = function (x) {      return fib_mem(x,fib_answer); } var fib_mem = function(x,m){      if(m[x] != undefined){          return m[x];      } else {          m[x] = fib_mem(x-1,m)+fib_mem(x-2,m);           return m[x];      } }
  • 17. problem 2 last one I swear (also very functional)... var fib3wrapper = function(c){      return fib3(c,1,0); } var fib3 = function(c,last1,last2){      return(              (c==2) ? last1+last2:              fib3(c-1,last1+last2,last1)      ); }
  • 18. Exercise set 1b 10 minutes
  • 20. problem 1 var length = function (xs) {      return(            empty (xs) ? 0 :            1 + length( rest (xs))      ); };
  • 21. problem 2 var nth = function(n,xs){      return(          empty(xs) ? [] :          (n == 0) ? first(xs) :          nth(n-1, rest(xs))      ); };
  • 22. problem 3 var removeAll = function (x, xs) {      return(          empty(xs) ?  [ ]  :          (x == first(xs)) ?  removeAll(x,                                     rest(xs)) :          build( first(xs),                removeAll(x,rest(xs)))      ); };
  • 23. First class functions http://www.flickr.com/photos/richardmoross/2211308689/
  • 24. First Class Functions (Haskell) add2 x = 2 + x add3 x = 3 + x > add2 5 7 > add3 5 8
  • 25. First Class Functions (Haskell) argIs2 func = (func) 2 argIs3 func = (func) 3 > argIs2(add2) 4 > argIs2(add3) 5 > argIs3(add2) 5 > argIs3(add3) 6
  • 27. Lambda Function (Haskell) add4 = (\x -> 4+x) >argIs2( (\x -> 4+x) ) 6
  • 28. Lambda Function (JavaScript) $.ajax({ url: &quot;test.html&quot;, context: document.body, success: function(){         $(this).addClass(&quot;done&quot;);       } }); $(&quot;#exec&quot;).click( function(){   $(&quot;#results&quot;).prepend(&quot;<li>Normal Handler</li>&quot;); } );
  • 29. Exercise set 2 10 minutes
  • 31. problem 1 var argIs2 = function(func) {      return func(2); }
  • 33. problem 3 var flip = function (func) {        return(                  function(x,y){                          func(y,x);                  }        ); };
  • 36. Closures (Haskell) add5 = (+5) makeAdder val = (+val) makeAdderWithLambda val = (\x->x+val) add6 = makeAdder 6 add7 = makeAdderWithLambda 7 > add5 5 10 > add6 5 11 > add7 5 12
  • 37. Exercise set 3 5 minutes
  • 39. problem 1 var makeAdder = function (x) {      return(          function(y) {                    return add(x,y);                }      ); };
  • 40. problem 2 var apiClosure = function(apiKey){      return(          function(x){              return apiSearch(apiKey,x);          }      ); };
  • 41. problem 3 var compose = function (f1,f2) {      return(          function(x){              f1(f2(x));          }      ); };
  • 42. Higher Order Functions http://www.flickr.com/photos/73416633@N00/2425022159/
  • 44. Map (Haskell) doubleAll xs = map (*2) xs squareAll xs = map (^2) xs squareAndAdd xs = map (\x->x*x+x) xs upperCase s = map toUpper s > doubleAll [1,2,3,4] [2,4,6,8] > squareAll [1,2,3,4] [1,4,9,16] > squareAndAdd [1,2,3,4] [2,6,12,20] > upperCase &quot;doggie&quot; &quot;DOGGIE&quot;
  • 45. Map (Haskell) doubleAllv2 = map (*2) squareAllv2 = map (^2) squareAndAddv2 = map (\x->x*x+x)
  • 46. Exercise set 4a 5 minutes
  • 48. problem 1 var map = function (func, xs) {      return(          empty(xs) ?  [ ]  :          build(  func (first(xs)),                    map  (func,  rest (xs))));      ); };
  • 49. problem 2 map(function(x){                  return x*x},          xs);
  • 51. Filter (Haskell) evenList xs = filter even xs mod17list xs = filter (== (`mod` 17) 0) xs doubleEvens xs = (doubleAll . evenList) xs > evenList [1,2,3,4,5,6] [2,4,6] > mod17list [1..100] [17,34,51,68,85] > doubleEvens [0,3..27] [0,12,24,36,48]
  • 52. Exercise set 4b 10 minutes
  • 54. problem 1 var filter = function (test,xs){      return(          empty(xs) ? [ ] :          test(first(xs)) ? filter(test, rest(xs)) :          build(first(xs),filter(test,rest(xs)))      ); };
  • 55. problem 2 var removeAll = function(x,xs){      return(          filter( function(y){                            return y == x},                  xs )      ); };
  • 57. Foldl (Haskell) mySum xs = foldl (+) 0 xs sumOfSquares xs = foldl (+) 0 (map (^2) xs) sumOfSquaresv2 = (mySum . squareAll) > mySum [1..2000000] 2000001000000 > sumOfSquares [1..10] 385 > sumOfSquaresv2 [1..10] 385
  • 58. Foldl (Haskell) myReverse xs = foldl (\x y -> y:x) [] xs myReverse [1,2,3] foldl (\x y -> y:x) [] [1,2,3] .. (\[] 1 -> 1:[]) .. => [1] foldl (\x y -> y:x) [1] [2,3] .. (\[1] 2 -> 2:[1]) .. => [2,1]
  • 59. Exercise set 4c 5 minutes
  • 61. problem 1 var foldl = function (step, init, xs) {      return(           empty(xs) ?  init   :          foldl( step ,                  step(init,first(xs)),                  rest(xs)      ); };
  • 62. problem 2 var sum = function(xs) {      return  foldl(add,0,xs); };
  • 63. Map (JavaScript) 'The Spolsky Map' function spolsky_map(fn, a)     {         for (i = 0; i < a.length; i++)         {             a[i] = fn(a[i]) ;         }     } note the side effects
  • 64. The Spolsky Reduce (foldl) function spolsky_reduce(fn, a, init)     {         var s = init;         for (i = 0; i < a.length; i++)             s = fn( s, a[i] );         return s;     }
  • 66. Exercise 5a 5 minutes
  • 68. problem 1 var last = compose(first,reverse);
  • 69. problem 2 var reverse = function (xs) {      return foldl(flip(build),[ ],xs); };
  • 70. Standard Deviation 1. calculate the arithmetic mean of the list 2. subtract the mean from all the numbers in the list 3. square the number in that list 4. calculate the sum of the list 5. divide the sum by length of list by 1 6. get the square root of this number 
  • 71. Standard Deviation 1. calculate the arithmetic mean of the list mean xs = sum xs / fromIntegral(length xs) 2. subtract the mean from all the numbers in the list deviations xs = map (\x -> x - m ) xs                  where m = mean xs 3. square the numbers in that list squareDeviations xs = map(^2) devs                        where devs = deviations xs 4. calculate the sum of the list sumSquareDeviations xs = (sum . squareDeviations) xs 5. divide the sum by length of list minus 1 6. get the square root of this number  sd xs = sqrt $ sumSqDev / lsub1   where sumSqDev = sumSquareDeviations xs        lsub1 = fromIntegral $ ((-1+) . length)xs
  • 72. Exercise 5b 10 minutes
  • 74. Standard Deviation (JavaScript) var mean = function (xs){      return(sum(xs)/flength(xs)); }; var deviations = function (xs) {      var m = mean(xs);//we can remove this       return  map(function(x){return x-m;},xs); }; var squareDeviations = function(xs){      return  map(square,deviations(xs)); };
  • 75. Standard Deviation (JavaScript) var sumSqDeviations = compose(sum,squareDeviations); var sd = function(xs){      return  Math.sqrt(     (sumSqDeviations(xs)/(length(xs)-1))); };
  • 76. Standard Deviation Haskell > sd [1,4,5,9,2,10] 3.65604522218567 JavaScript > sd([1,4,5,9,2,10]); 3.65604522218567
  • 78. Currying (Haskell) myAdd x y = x + y add8 = myAdd 8 add9  = (+9) > myAdd 8 9 17 > add8 9 17 > add9 8 17
  • 79. Currying (JavaScript) var curry = function (f,a) {      return( function(){      var args =  Array.prototype.slice.call(arguments);        args.unshift(a);      return f.apply(this, args); }      ); };
  • 80. Currying (JavaScript) purely functional var curry = function (f,a) {      return( function(){     return( ( function( args ){     return f.apply(this, build(a,args)); } ) (Array.prototype.slice.call(arguments))     ); }      ); };
  • 81. Currying (JavaScript)  var add_three = function(a,b,c){      return a+b+c; }; >f1 = curry(add_three,1); >f1(2,3) 6 >f2 = curry(curry(add_three,1),2); >f2(3) 6
  • 82. Exercise 6 10 minutes
  • 84. problem 1 var makeAdder = curry(add,x); var apiClosure = curry(apiSearch,apiKey);
  • 85. problem 2 var unrealisticFunction = function (a, b){      (function(c){          return((function(d){                                  if(c<d){                                            return c+d;                                            }else{                                            return c*d;                                            }                      };)(c+a)          );      })(a*b) };
  • 86. Thanks! email: wckurt@gmail.com twitter: willkurt
  • 87. Still have time? awesome!
  • 89. Types!!! areaOfTrapezoid :: Float -> Float -> Float -> Float areaOfTrapezoid h b1 b2 = 0.5*h*(b1+b2) evenList :: (Integral a) => [a] -> [a] evenList xs  = filter even xs
  • 90. Lazy Evaluation!!!   [2,4..] !! 108 > 218
  • 91. Pattern Matching patternMatch [a,b,c] = b ++ c ++ a patternMatch [a,b] = a ++ b patternMatch [] = &quot;no list&quot; patternMatch as = &quot;a larger list&quot;
  • 92. Pattern Matching patternMatch [&quot;a&quot;,&quot;b&quot;,&quot;c&quot;] >&quot;bca&quot; patternMatch [&quot;a&quot;,&quot;b&quot;] >&quot;ab&quot; patternMatch [ ] >&quot;no list&quot; patternMatch [&quot;a&quot;,&quot;b&quot;,&quot;c&quot;,&quot;d&quot;] >&quot;a larger list&quot;
  • 93. Who actually uses this stuff? http://cufp.org/
  • 94. Ocaml
  • 95.  
  • 96.  

Editor's Notes

  • #4: Treats programming as the evaluation of mathematical processes Based on what&apos;s call the lambda calculus.  Mention this is turing complete way of representing a programing language with only anonymous function
  • #5: But what does this mean? Every function returns a value, that&apos;s what functions do they map one value to another. given an input a function always returns the same value in general it&apos;s more about stating what your problem is.
  • #6: The big this this all entails is there are no &apos;Side Effects&apos; in functional programming. When you call a function nothing about the world changes, can you say this is true about OOP?  This is much more meaningful that it may seem at first. If a variable is declared (and the usually aren&apos;t) it can never change it&apos;s value. This is even true for something like &apos;i&apos; in a &apos;for loop&apos; or the value a while loop checks... so that mean there are not classic iterators: no for loops, and no while loops.
  • #7: So why do all this? Number one reason by far for me is the really amazing abstractions you can come up with. For programming side effect free is an awesome guarantee There a lot of potential research that we can get some great and easy parallization from all this There are already functional features in languages like C#, python, ruby, LINQ. If you understand FP you can pick these things up a lot faster Big ideas are starting to come from the fp community.  When google release mapreduce, anyone with a background in lisp for functional programming would have instantly be able to guess roughly how the process worked.
  • #8: So I&apos;m going to talk about 2 languages tonight side by side. Haskell is an amazing language, but it has a reputation for being very difficult to learn.  As much as I would like to pretend that this is not the case, it really can be.  Tonight I&apos;m sticking to just a small subset of haskells expressiveness to go over the essentials of functional programming.  Get started with haskell isn&apos;t really so bad once you know the basics and understand fp a little better.
  • #9: Now JavaScript has the opposite problem. Most people view it as simply a mediocre clientside language. But it&apos;s actually an amazingly powerful language, and also probably the most functional of all mainstream languages. I want to show you that functional programming isn&apos;t really that hard, it&apos;s just different.  I&apos;m willing to bet that most anyone in the room has already used some really powerful functional features of javascript without even knowing it.
  • #11: Before we begin I want to just mentions lists a bit.  Functional programmin, with no standard loops, is very heavily based on recursion, and so it also relies heavily on lists. Here are some basic operations on a list that you&apos;ll need to be familiar with.  They go by many other names.
  • #24: The first essential feature of functional programming, is what is refered to as a &apos;first class function&apos; This is one of the easiest concepts to grasp, it seemly means that functions can be treated just like any other object, and most importantly that they can be passed just like arguments.
  • #25: so first we&apos;re going to put together a simple function this one adds &apos;2&apos; to a  number and this one addes &apos;3&apos; this are both in haskell and should be very simple to understand.  any questions
  • #26: Now we&apos;re going to make the opposite function, that is a function that takes a function and applies it to a predetermined argument. So arg is &apos;2&apos; takes whatever function you pass it and gives it the argument &apos;2&apos; &lt;walk them through the output&gt;
  • #27: How many of you have ever written any javascript at all? Everyone that just raised there hands has used a lambda function. All a lambda function is is an unnamed or anonymous function.  I&apos;ll show you in a bit how common these are in javascript Lambda functions are the core of funtional programming, although the can be all but removed from some languages. Initially what they offer may seem of limited use, but as we go on you should see how the become pretty essential. If you&apos;re insane you can literarly usual solely lambda functions to do all of your computation, you can even implment addition and subtraction without numbers.  Hell you can even implment recursion in using only unnamed functions.
  • #28: Now these examples are stupidly simple, but you&apos;ll see lambda popping up all over this presentaiton in various forms. so here we&apos;re defining a function, add4, as a lambda &lt;walk through notation? Now also notice how we can pass this function as a first class function directly to our previous argIsX function
  • #29: Here some everyday javascript, these snippets are just pulled straight from standard javascript tutorials.  You&apos;ve probably written code like this if you&apos;ve ever done any javascript.
  • #36: Closures sound more complicated then they are.  Closures let us capture some variable in the scope of a function we return... Examples will do you much better than me describing it.
  • #37: So here&apos;s add5 for reference. Now this pattern of addX is pretty obvious, there must be a way to abstract this away right? so we can make this functioncalled makeAdder that takes a values. here is the same code 2 different ways, in put cases we&apos;re returning a function that has this value we based enclosed in it. Now we can make adders more easily. So you can see in the about put the function we returned remembers what value we passed to it. This also demonstrates another important property of lambda functions.
  • #43: okay so proper first class functions, lambdas and closure are the core of functional programming.  coupled with recursion you&apos;re pretty much done. However these are really just the primative of functional programming.  Next we&apos;re going to answer what&apos;s probably the biggest question you have.  Since we throw out all the iterators I know of, how the hell do I get any actual work done? That brings us to higher order functions, by definiton these are just functions that take functions as an argument, but there are some that form the basis of how you should think about problems in fp.
  • #44: Map is the most obvious, it solve the problem of the vast majority of iteration that you do.   map takes a function and a list and returns a new list with that function applied to every item in it. From here on out I&apos;m going to show you how higher order functions work in haskell, and how there implemented in javascript
  • #45: this is actually a pretty easy concept. so in the first example double all takes a list, and the applys times 2 to each item, so it doubles every item in the list. square all does the same thing but squares them square and add just shows off how we can use our lambda again and upperCase takes a string an applies toUpper to each letter in that string, a string is afterall just a list of characters.
  • #46: just a note on haskell here, you can actually leave out the arguments on both sides if we&apos;re missing an arguement we essentially create a closure waiting for that argument. We&apos;ll talk more about this later.
  • #51: filter does what the name sounds like, it takes a function which performs a test and only returns values that pass.
  • #52: so this first case selects every item that is even the next selects every one that is evenly divisible by 17  And this last is a little different.  This is a neat trick called function composition.  what we do is apply the rightmost function and then send it&apos;s value to the left most.  this makes it very easy to define complicated functions by composing them. explain output
  • #57: Folds are very poweful, but also the most likely to give you a headache until you undertand them.  There are actually several types of folds, we&apos;re going to focus on what&apos;s call a left fold, foldl or often reduce (in ruby it&apos;s called inject). fold takes a function, and initial value, and a list of values and &apos;folds&apos; all the values of that list into a single value.
  • #58: The simpliest and most obious use of fold it to some values ina list, see here our function is &apos;add&apos; and our intial value is 0. This reverse is actually a bit more tricky, I&apos;ll actually walk you through this. finally I&apos;ll show you some more function composition. we can define sumOfSquare 2 ways, the first more verbose maps square to a list, and the folds it just like sum, The second composes our sum and squareAll functions.
  • #59: here I&apos;ll walk you through the recursion for the fold revers.
  • #64: Many of you may know of Joel Spolsky, he&apos;s one of the people behind stack over flow A few years ago he wrote about the functional properties of javascript and gave this as his implementation of map. But we can see here that this implementation itself is not functional.  In some cases this is meaningless, but notice what happens to the array we&apos;re passing?   In a purely functional work the original array will ALWAYS be untouched, in this case the original array is deleted.
  • #65: Once again Spolsky also implemented this, but once again it&apos;s not functional. However this time it is less damaging and probably more effiience.  Some languages let you choose when you want to be functional, choose wisely.
  • #78: Finally we&apos;ll discuss function currying. what happens in any language you know when you call a function that takes 3 arguements with only 2 arguement? Error right?  Well not in haskell, in haskell you get a new function waiting for the 3rd arguement. let&apos;s look at some examples
  • #79: here I&apos;ll defiine a new version of add that takes 2 arguments If I call it with only one then I get a function waiting for the next argument, you can see this is even easier than our earlier example that build closures
  • #80: what&apos;s crazy is that you can actually implement this functionality in javascript