Functional Programming: Lambda Calculus

Reading Time: 3 minutes

We have already explored the introduction to FP in my previous blog.
Once you get into FP, you’ll quickly start hearing the terms lambda and lambda calculus.

Lambda:

Lambda is basically just a symbol represented as λ that Alonzo Church chose when he first defined the concept of a function. In modern functional programming, lambda means “anonymous function“.

Calculus:

Calculus is means a formal system in mathematical logic for expressing computation. It is basically the mathematical study of continuous change.

Lambda Calculus:

“Lambda calculus provides a theoretical framework for describing functions and their evaluation”. It forms the basis of almost all functional programming languages today.

Now, after getting familiarity with these terminologies, let’s see some examples of lambda with respect to its properties.

Characteristics of Lambda:

  • Can be assigned to a variable.
  • Anonymous functions.
    Lambda is nothing but an anonymous function. In the above two examples, value even and odd can be used as a function, i.e., even(4) will return true and odd(4) will return false.
  • Can be passed to functions.

    Now, we can call this method by passing a lambda expression, for example,

    Observe these statements closely, we can easily see the benefits of doing it. Yes, we can call sum() by multiple lambda expression having different implementations.

  • Can be returned by functions.
    You can define a function that returns an anonymous function, assign that to a new function, and then call that new function. Let’s see an example:

    Now again see these statements closely, we see first, the method say() returns an anonymous function. We are assigning it to a value greet. Now we can easily greet anyone by just passing their name.

  • More readable, concise and maintainable code.
    The code is very much readable and concise, as you can see in the above two examples. This helps in better maintenance of code.

Why Lambda?

There are quite a few reasons to explain the need for lambda :

  • Will I use the function anywhere else:

    There are many scenarios where we just use defined function at the single place. This may seem okay at first, but as the application grows, these methods also grow at a very high rate. So the use of lambda expression can reduce the so-called boilerplate code in these cases.

  • Less Byte Code generated:
    Lambda generates less byte-code as compared to the functions. And considering the number of functions which are replaced by these lambdas in a big application, a much compact size of byte-code is being transferred over the network (which helps in achieving good network speed) and being persisted into the storage (which saves storage space).
  • Fast and Efficient:
    They are fast as they follow the in-place replacement algorithm.
  • Convenience:
    For a simple function that is used only in one place, a lambda is quicker and easier, and more expressive, than the alternative of declaring a whole first.

Limitations/Shortcomings of Lambda?

Great pros often come with some limitations :

  • More concise code often leads to more complex code debugging and longer synthetic call stacks.
  • Developers with OOPs background often find lambda expression confusing to start with, but once comfortable, lambdas are fun.

So Lambda expressions are nothing but anonymous functions and are considered to be the backbone of Functional Programming paradigm.

References: Functional Programming Simplified by Alvin Alexander

 


knoldus-advt-sticker

 

Written by 

Ayush is a Software Consultant having more than 11 months of experience. He has knowledge of various programming languages like C, C++, Java, Scala, JavaScript and is currently working on Big Data Technologies like Spark, Kafka, ElasticSearch. He is always eager to learn new and advance concepts in order to expand his horizon and apply them in project development with his existing knowledge. His hobbies includes playing Cricket, Travelling, Watching Movies

2 thoughts on “Functional Programming: Lambda Calculus3 min read

  1. In scala, I can’t get your example of sum(3,num * num) to work. If I separately define a function, e.g var inc = (x:Int) => x+1 and do sum(3,inc), it works.

  2. Yes it do work, but in this you are bound for one specific implementation, but by passing it as a parameter you can pass the implementation at run time

Comments are closed.

Discover more from Knoldus Blogs

Subscribe now to keep reading and get access to the full archive.

Continue reading