Asymptotic Analysis | Algorithms - Computer Science Engineering (CSE) PDF Download

Why performance analysis?

There are many important things that should be taken care of, like user friendliness, modularity, security, maintainability, etc. Why to worry about performance?
The answer to this is simple, we can have all the above things only if we have performance. So performance is like currency through which we can buy all the above things. Another reason for studying performance is – speed is fun!
To summarize, performance == scale. Imagine a text editor that can load 1000 pages, but can spell check 1 page per minute OR an image editor that takes 1 hour to rotate your image 90 degrees left OR … you get it. If a software feature can not cope with the scale of tasks users need to perform – it is as good as dead.

Given two algorithms for a task, how do we find out which one is better?
One naive way of doing this is – implement both the algorithms and run the two programs on your computer for different inputs and see which one takes less time. There are many problems with this approach for analysis of algorithms.

  1. It might be possible that for some inputs, first algorithm performs better than the second. And for some inputs second performs better.
  2. It might also be possible that for some inputs, first algorithm perform better on one machine and the second works better on other machine for some other inputs.

Asymptotic Analysis

Asymptotic Analysis is the big idea that handles above issues in analyzing algorithms. In Asymptotic Analysis, we evaluate the performance of an algorithm in terms of input size (we don’t measure the actual running time). We calculate, how the time (or space) taken by an algorithm increases with the input size.
For example, let us consider the search problem (searching a given item) in a sorted array. One way to search is Linear Search (order of growth is linear) and the other way is Binary Search (order of growth is logarithmic). To understand how Asymptotic Analysis solves the above mentioned problems in analyzing algorithms, let us say we run the Linear Search on a fast computer A and Binary Search on a slow computer B and we pick the constant values for the two computers so that it tells us exactly how long it takes for the given machine to perform the search in seconds. Let’s say the constant for A is 0.2 and the constant for B is 1000 which means that A is 5000 times more powerful than B. For small values of input array size n, the fast computer may take less time. But, after a certain value of input array size, the Binary Search will definitely start taking less time compared to the Linear Search even though the Binary Search is being run on a slow machine. The reason is the order of growth of Binary Search with respect to input size is logarithmic while the order of growth of Linear Search is linear. So the machine dependent constants can always be ignored after a certain value of input size.
Here are some running times for this example:
Linear Search running time in seconds on A: 0.2 * n
Binary Search running time in seconds on B: 1000*log(n)
------------------------------------------------
|n      | Running time on A | Running time on B |
-------------------------------------------------
|10     | 2 sec             | ~ 1 h             |
-------------------------------------------------
|100    | 20 sec            | ~ 1.8 h           |
-------------------------------------------------
|10^6   | ~ 55.5 h          | ~ 5.5 h           |
-------------------------------------------------
|10^9   | ~ 6.3 years       | ~ 8.3 h           |
-------------------------------------------------

Does Asymptotic Analysis always work?

Asymptotic Analysis is not perfect, but that’s the best way available for analyzing algorithms. For example, say there are two sorting algorithms that take 1000nLogn and 2nLogn time respectively on a machine. Both of these algorithms are asymptotically same (order of growth is nLogn). So, With Asymptotic Analysis, we can’t judge which one is better as we ignore constants in Asymptotic Analysis.
Also, in Asymptotic analysis, we always talk about input sizes larger than a constant value. It might be possible that those large inputs are never given to your software and an algorithm which is asymptotically slower, always performs better for your particular situation. So, you may end up choosing an algorithm that is Asymptotically slower but faster for your software.

The document Asymptotic Analysis | Algorithms - Computer Science Engineering (CSE) is a part of the Computer Science Engineering (CSE) Course Algorithms.
All you need of Computer Science Engineering (CSE) at this link: Computer Science Engineering (CSE)
81 videos|80 docs|33 tests

Top Courses for Computer Science Engineering (CSE)

FAQs on Asymptotic Analysis - Algorithms - Computer Science Engineering (CSE)

1. What is asymptotic analysis in computer science engineering?
Ans. Asymptotic analysis in computer science engineering is a technique used to analyze the efficiency of algorithms by studying their behavior as the input size approaches infinity. It helps in determining how an algorithm's performance scales with the input size.
2. Why is asymptotic analysis important in computer science engineering?
Ans. Asymptotic analysis is important in computer science engineering as it allows us to compare and evaluate different algorithms based on their efficiency. By analyzing the time and space complexity of algorithms, we can make informed decisions about which algorithm to choose for a particular task.
3. How is asymptotic analysis different from exact analysis?
Ans. Asymptotic analysis focuses on the growth rate of an algorithm's performance as the input size increases, while exact analysis provides precise measurements of an algorithm's performance for specific inputs. Asymptotic analysis gives us a broader understanding of an algorithm's efficiency without getting into the nitty-gritty details.
4. What are the commonly used asymptotic notations in asymptotic analysis?
Ans. The commonly used asymptotic notations in asymptotic analysis are Big O notation (O), Omega notation (Ω), and Theta notation (Θ). Big O notation represents the upper bound of an algorithm's growth rate, Omega notation represents the lower bound, and Theta notation represents both the upper and lower bounds.
5. How can asymptotic analysis help in algorithm design?
Ans. Asymptotic analysis helps in algorithm design by providing insights into the efficiency of different algorithms. By analyzing the time and space complexity of algorithms, we can optimize their performance and choose the most efficient algorithm for a given problem. Asymptotic analysis also helps in predicting how algorithms will perform on larger input sizes, allowing us to make informed design decisions.
81 videos|80 docs|33 tests
Download as PDF
Explore Courses for Computer Science Engineering (CSE) exam

Top Courses for Computer Science Engineering (CSE)

Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev
Related Searches

Previous Year Questions with Solutions

,

shortcuts and tricks

,

Semester Notes

,

Important questions

,

Extra Questions

,

ppt

,

Asymptotic Analysis | Algorithms - Computer Science Engineering (CSE)

,

video lectures

,

Summary

,

past year papers

,

study material

,

pdf

,

Sample Paper

,

Asymptotic Analysis | Algorithms - Computer Science Engineering (CSE)

,

Viva Questions

,

Objective type Questions

,

Asymptotic Analysis | Algorithms - Computer Science Engineering (CSE)

,

MCQs

,

mock tests for examination

,

Exam

,

Free

,

practice quizzes

;