Navneet Singh Once a wise man said me, 'words are mighter than a sword'. Living up to the wise man wisdom.

Algorithm Analysis Of Recurrence/Recursive Relations | Part 1 of 4 |

Algorithm Analysis Of Recurrence/Recursive Relations | Part 1 of 4 |

Getting started with Recurrence Relations

Objectives:

In this blog post you’ll learn the following :

  1. What is a recurrence relations
  2. Important points while solving recursive problem
  3. Understanding recursive relation using example
  4. Analysis of recursive relation

What is a recurrence relation?

  1. An algorithm is recursive if its calls itself.
  2. They solve the problem by reducing a larger input into a smaller input and then solve problem for a smaller input.

2 important points while solving a recursive problem

  1. Always identify the base case and result associated.
  2. Make sure that recursive call is for a smaller problem.

A base case is lowest threshold of a function. The case for which we have to find the lowest value is a base case.

Example: Let us consider a basic example of a factorial. We know that a factorial of a function is given as:

F(n) = (n) _ (n-1) _ (n-2) _ (n-3) _ …… _ 3 _ 2 * 1

Where n is an integer.

Suppose we are planning to find the factorial of 5, so by using the above function we have:

F(5) = 5 _ 4 _ 3 _ 2 _ 1

=120

Now let’s write a basic algorithm that would calculate a factorial of a number using recursive relation.

Algorithm:

So in the above algorithm a lot has happened. Before beginning to analyze the algorithm, we need to understand what’s actually happening above. The two important points we mentioned above were always identify the base case, that we have taken care of by defining case for n = 0 which returns a value of 1 since 0! = 1.The second important point to consider was that the recursive call is for a smaller problem which is taken care of in else case. In the else case it calls for a smaller value every time till it hits the base case. Lets explain that further

Suppose we want to find the factorial of 5 using the above algorithm

Analysis of Above Algorithm

For the first two lines of algorithm i.e. the base case which we hit only once hence the running time for the algorithm is O (1). Now for the other part where we don’t hit the base case we know that we go through the algorithm (n-1) times, making the complexity for the non-base cases = O(n-1).

Let us assume ‘c’ as a constant value for large values of T(n) which is given as follows:

That’s all folks! We just created our very first recursive function, understood it via example and analyzed it using simple technique. Now it’s time to up the stakes. In our next tutorial we will understand 4 important techniques for algorithm analysis for recursive functions. Those are as follows:

Substitution Method

Iterative Method

Recursive Method

Master Method

So strap on you learning seat belt and lets learn to analyze algorithm using different techniques.

comments powered by Disqus