DISCRETE MATHEMATICS I CHAPTER 11 Dr. Adam Anthony Spring 2011 Some material adapted from lecture notes provided by Dr. Chungsim Han and Dr. Sam Lomonaco.

Slides:



Advertisements
Similar presentations
Discrete Structures CISC 2315
Advertisements

CSE 373: Data Structures and Algorithms Lecture 5: Math Review/Asymptotic Analysis III 1.
Razdan with contribution from others 1 Algorithm Analysis What is the Big ‘O Bout? Anshuman Razdan Div of Computing.
February 19, 2015Applied Discrete Mathematics Week 4: Number Theory 1 The Growth of Functions Question: If f(x) is O(x 2 ), is it also O(x 3 )? Yes. x.
Discrete Mathematics CS 2610 February 26, part 1.
Algorithmic Complexity Nelson Padua-Perez Bill Pugh Department of Computer Science University of Maryland, College Park.
Chapter 3 Growth of Functions
The Growth of Functions
Chapter 10 Algorithm Efficiency
1 ICS 353 Design and Analysis of Algorithms Spring Semester (062) King Fahd University of Petroleum & Minerals Information & Computer Science.
Introduction to Analysis of Algorithms
Complexity Analysis (Part I)
Analysis of Algorithms1 Estimate the running time Estimate the memory space required. Time and space depend on the input size.
Cmpt-225 Algorithm Efficiency.
Algorithm Analysis CS 201 Fundamental Structures of Computer Science.
Data Structures and Algorithms1 Basics -- 2 From: Data Structures and Their Algorithms, by Harry R. Lewis and Larry Denenberg (Harvard University: Harper.
Analysis of Algorithms COMP171 Fall Analysis of Algorithms / Slide 2 Introduction * What is Algorithm? n a clearly specified set of simple instructions.
Algorithms Chapter 3 With Question/Answer Animations.
DATA STRUCTURES AND ALGORITHMS Lecture Notes 1 Prepared by İnanç TAHRALI.
February 17, 2015Applied Discrete Mathematics Week 3: Algorithms 1 Double Summations Table 2 in 4 th Edition: Section th Edition: Section th.
Chapter 5 Algorithm Analysis 1CSCI 3333 Data Structures.
Chapter 2 The Fundamentals: Algorithms, the Integers, and Matrices
Chapter Complexity of Algorithms –Time Complexity –Understanding the complexity of Algorithms 1.
Chapter 2.6 Comparison of Algorithms modified from Clifford A. Shaffer and George Bebis.
Week 2 CS 361: Advanced Data Structures and Algorithms
Discrete Mathematics Algorithms. Introduction  An algorithm is a finite set of instructions with the following characteristics:  Precision: steps are.
1 R. Johnsonbaugh, Discrete Mathematics Chapter 4 Algorithms.
Discrete Structures Lecture 11: Algorithms Miss, Yanyan,Ji United International College Thanks to Professor Michael Hvidsten.
2.3 Functions A function is an assignment of each element of one set to a specific element of some other set. Synonymous terms: function, assignment, map.
Algorithm Efficiency CS 110: Data Structures and Algorithms First Semester,
Mathematics Review and Asymptotic Notation
1 Computer Algorithms Lecture 3 Asymptotic Notation Some of these slides are courtesy of D. Plaisted, UNC and M. Nicolescu, UNR.
The Growth of Functions Rosen 2.2 Basic Rules of Logarithms log z (xy) log z (x/y) log z (x y ) If x = y If x < y log z (-|x|) is undefined = log z (x)
Algorithm Analysis An algorithm is a clearly specified set of simple instructions to be followed to solve a problem. Three questions for algorithm analysis.
Chapter 3 Sec 3.3 With Question/Answer Animations 1.
CMSC 341 Asymptotic Analysis. 2 Complexity How many resources will it take to solve a problem of a given size? –time –space Expressed as a function of.
Fall 2002CMSC Discrete Structures1 Enough Mathematical Appetizers! Let us look at something more interesting: Algorithms.
MCA-2012Data Structure1 Algorithms Rizwan Rehman CCS, DU.
Program Efficiency & Complexity Analysis. Algorithm Review An algorithm is a definite procedure for solving a problem in finite number of steps Algorithm.
CompSci 102 Discrete Math for Computer Science
CMSC 341 Asymptotic Analysis. 2 Complexity How many resources will it take to solve a problem of a given size? –time –space Expressed as a function of.
Asymptotic Analysis (based on slides used at UMBC)
Counting Discrete Mathematics. Basic Counting Principles Counting problems are of the following kind: “How many different 8-letter passwords are there?”
Algorithm Analysis Part of slides are borrowed from UST.
The Fundamentals. Algorithms What is an algorithm? An algorithm is “a finite set of precise instructions for performing a computation or for solving.
A Introduction to Computing II Lecture 5: Complexity of Algorithms Fall Session 2000.
Ch03-Algorithms 1. Algorithms What is an algorithm? An algorithm is a finite set of precise instructions for performing a computation or for solving a.
Chapter 3 Chapter Summary  Algorithms o Example Algorithms searching for an element in a list sorting a list so its elements are in some prescribed.
Algorithmic Foundations COMP108 COMP108 Algorithmic Foundations Algorithm efficiency Prudence Wong.
Chapter 3 With Question/Answer Animations 1. Chapter Summary Algorithm and Growth of Function (This slide) Algorithms - Sec 3.1 – Lecture 13 Example Algorithms.
Discrete Mathematics Chapter 2 The Fundamentals : Algorithms, the Integers, and Matrices. 大葉大學 資訊工程系 黃鈴玲.
Algorithmic Foundations COMP108 COMP108 Algorithmic Foundations Algorithm efficiency Prudence Wong
Analysis of Algorithms CS 477/677 Instructor: Monica Nicolescu Lecture 2.
Growth of Functions & Algorithms
Applied Discrete Mathematics Week 2: Functions and Sequences
COMP108 Algorithmic Foundations Algorithm efficiency
The Growth of Functions
The Growth of Functions
Enough Mathematical Appetizers!
Computation.
CS 2210 Discrete Structures Algorithms and Complexity
Analysis Algorithms.
Enough Mathematical Appetizers!
Applied Discrete Mathematics Week 6: Computation
Counting Discrete Mathematics.
Applied Discrete Mathematics Week 7: Computation
Enough Mathematical Appetizers!
Enough Mathematical Appetizers!
Discrete Mathematics CS 2610
CS 2210 Discrete Structures Algorithms and Complexity
Presentation transcript:

DISCRETE MATHEMATICS I CHAPTER 11 Dr. Adam Anthony Spring 2011 Some material adapted from lecture notes provided by Dr. Chungsim Han and Dr. Sam Lomonaco

Algorithms 2  What is an algorithm?  An algorithm is a finite set of precise instructions for performing a computation or for solving a problem.  This is a rather vague definition. You will get to know a more precise and mathematically useful definition when you attend CS430.  But this one is good enough for now…

Algorithms 3  Properties of algorithms:  Input from a specified set,  Output from a specified set (solution),  Definiteness of every step in the computation,  Correctness of output for every possible input,  Finiteness of the number of calculation steps,  Effectiveness of each calculation step and  Generality for a class of problems.

Algorithm Examples 4  We will use a pseudocode to specify algorithms, which slightly reminds us of Basic and Pascal.  Example: an algorithm that finds the maximum element in a finite sequence procedure max(a1, a2, …, an: integers) max := a1 for i := 2 to n if max < ai then max := ai {max is the largest element}

Algorithm Examples 5  Another example: a linear search algorithm, that is, an algorithm that linearly searches a sequence for a particular element. procedure linear_search(x: integer; a1, a2, …, an: integers) i := 1 while (i  n and x  ai) i := i + 1 if i  n then location := i else location := 0 {location is the subscript of the term that equals x, or is zero if x is not found}

Algorithm Examples 6  If the terms in a sequence are ordered, a binary search algorithm is more efficient than linear search.  The binary search algorithm iteratively restricts the relevant search interval until it closes in on the position of the element to be located.

Algorithm Examples 7 a c d f g h j l m o p r s u v x z binary search for the letter ‘j’ center element search interval

Algorithm Examples 8 a c d f g h j l m o p r s u v x z binary search for the letter ‘j’ center element search interval

Algorithm Examples 9 a c d f g h j l m o p r s u v x z binary search for the letter ‘j’ center element search interval

Algorithm Examples 10 a c d f g h j l m o p r s u v x z binary search for the letter ‘j’ center element search interval

Algorithm Examples 11 a c d f g h j l m o p r s u v x z binary search for the letter ‘j’ center element search interval found !

Algorithm Examples 12 procedure binary_search(x: integer; a1, a2, …, an: integers) i := 1 {i is left endpoint of search interval} j := n {j is right endpoint of search interval} while (i < j) begin m :=  (i + j)/2  if x > am then i := m + 1 else j := m end if x = ai then location := i else location := 0 {location is the subscript of the term that equals x, or is zero if x is not found}

Complexity 13  In general, we are not so much interested in the time and space complexity for small inputs.  For example, while the difference in time complexity between linear and binary search is meaningless for a sequence with n = 10, it is gigantic for n = 230.

Measuring Complexity 14  An algorithm’s cost can be measured in terms of the number of ‘steps’ it takes to complete the work  A step is anything that takes a fixed amount of time, regardless of the input size  Arithmetic operations  Comparisons  If/Then statements  Print Statements  Etc.  Some steps in reality take longer than others, but for our analysis we will see that this doesn’t matter that much

Complexity Functions 15  The number of ‘steps’ needed to execute an algorithm often depends on the size of the input:  Linear_Search([1,25,33,47],33) ~ 3 ‘steps’  Linear_Search([1,16,19,21,28,33,64,72,81], 33) ~ 6 ‘steps’  We’ll instead express the complexity of an algorithm as a function of the size of the input N. T(N) = N (for linear search) T(N) = N 2 (for other algorithms we’ll see)

Example 1 16  Suppose an algorithm A requires 10 3 n 2 steps to process an input of size n. By what factor will the number of steps increase if the input size is doubled to 2n?  Answer the same question for Algorithm B which requires 2n 3 steps for input size n.  Answer the same question for both, but now increase the input size to 10n.

Complexity 17  For example, let us assume two algorithms A and B that solve the same class of problems, both of which have an input size of n:  The time complexity of A is T(A) = 5,000n,  The time complexity of B is T(B) =  1.1 n 

Complexity 18  Comparison: time complexity of algorithms A and B Algorithm A Algorithm B Input Size n ,000 1,000,000 5,000n 50, ,000 5,000,000 5  10 9  1.1 n   , 

Complexity 19  This means that algorithm B cannot be used for large inputs, while running algorithm A is still feasible.  So what is important is the growth of the complexity functions.  The growth of time and space complexity with increasing input size n is a suitable measure for the comparison of algorithms.

But wait, there’s more! 20  Consider the following functions:  The n 2 term dominates the rest of f(n)!  Algorithm analysis typically involves finding out which term ‘dominates’ the algorithm’s complexity nf(N) = n 2 + 4n + 20g(n) = n ,7202, ,42010, ,004,0201,000,000 10,000100,040,020100,000,000

Big-Oh 21  Definition: Let f and g be functions from the integers or the real numbers to the real numbers.  We say that f(x) is O(g(x)) if there are constants B and b such that: |f(x)|  B|g(x)| whenever x > b.  In a sense, we are saying that f(x) is never greater than g(x), barring a constant factor

Graphical Example 22

The Growth of Functions 23  When we analyze the growth of complexity functions, f(x) and g(x) are always positive.  Therefore, we can simplify the big-O requirement to  f(x)  B  g(x) whenever x > b.  If we want to show that f(x) is O(g(x)), we only need to find one pair (C, k) (which is never unique).

The Growth of Functions 24  The idea behind the big-O notation is to establish an upper boundary for the growth of a function f(x) for large x.  This boundary is specified by a function g(x) that is usually much simpler than f(x).  We accept the constant B in the requirement  f(x)  B  g(x) whenever x > b,  because B does not grow with x.  We are only interested in large x, so it is OK if f(x) > B  g(x) for x  b.

The Growth of Functions 25  Example:  Show that f(x) = x 2 + 2x + 1 is O(x 2 ).  For x > 1 we have:  x 2 + 2x + 1  x 2 + 2x 2 + x 2   x 2 + 2x + 1  4x 2  Therefore, for B = 4 and b = 1:  f(x)  Bx 2 whenever x > b.   f(x) is O(x 2 ).

The Growth of Functions 26  Question: If f(x) is O(x 2 ), is it also O(x 3 )?  Yes. x 3 grows faster than x 2, so x 3 grows also faster than f(x).  Therefore, we always have to find the smallest simple function g(x) for which f(x) is O(g(x)).

A Tighter Bound 27  Big-O complexity is important because it tells us about the worst-case  But there’s a best-case too!  Incorporating a lower bound, we get big-Theta notation:  f(x) is  (g(x)) if there exist constants A, B, b such that A|g(x)|  f(x)  B|g(x)| for all real numbers x > b  In a sense, we are saying that f and g grow at exactly the same pace, barring constant factors

Graphical Example 28

A useful observation 29  Given two functions f(x) and g(x), let f(x) be O(g(x)) and g(x) be O(f(x)). Then f(x) is  (g(x)) and g(x) is  (f(x)).  Work out on board.

Exercise 1 30  Let f(x) = 2x + 1 and g(x) = x  Show that f(x) is  (g(x)).

Useful Rules for Big-O 31  If x > 1, then 1 < x < x 2 < x 3 < x 4 < …  If f 1 (x) is O(g 1 (x)) and f 2 (x) is O(g 2 (x)), then (f 1 + f 2 )(x) is O(max(g 1 (x), g 2 (x)))  If f 1 (x) is O(g(x)) and f 2 (x) is O(g(x)), then (f 1 + f 2 )(x) is O(g(x)).  If f 1 (x) is O(g 1 (x)) and f 2 (x) is O(g 2 (x)), then (f 1 f 2 )(x) is O(g 1 (x) g 2 (x)).

Exercise 2 32  Let f(x) = 7x 4 + 3x and g(x) = x 4 for x ≥ 0  Prove that f(x) is O(g(x)).

Exercise 3 33  Prove that 2n 3 - 6n is O(n 3 ).  Prove that 3n 4 – 4n 2 + 7n – 2 is O(n 4 )

Exercise 4 34  Let f(n) = n(n-1)/2 and g(n) = n 2 for n ≥ 0. Prove that f(n) is O(g(n)).

Polynomial Order Theorem 35  For any polynomial f(x) = a n x n + a n-1 x n-1 + … + a 0, where a 0, a 1, …, a n are non-zero real numbers,  f(x) is O(x n )  f(x) is Θ (x n )

Some useful summation formulas 36

Exercise 5 37  Use the polynomial order theorem to show that … + n is Θ (n 2 ).

The Growth of Functions 38  In practice, f(n) is the function we are analyzing and g(n) is the function that summarizes the growth of f(n)  “Popular” functions g(n) are: n log n, 1, 2 n, n 2, n!, n, n 3, log n  Listed from slowest to fastest growth: 1 log n n n log n n 2 n 3 2 n n!

The Growth of Functions 39  A problem that can be solved with polynomial worst-case complexity is called tractable.  Problems of higher complexity are called intractable.  Problems that no algorithm can solve are called unsolvable.  You will find out more about this in CSC 430.

Analyzing a real algorithm 40  What does the following algorithm compute? procedure who_knows(a1, a2, …, an: integers) m := 0 for i := 1 to n-1 for j := i + 1 to n if |ai – aj| > m then m := |ai – aj| {m is the maximum difference between any two numbers in the input sequence}  Comparisons: n-1 + n-2 + n-3 + … + 1 = (n – 1)n/2 = 0.5n 2 – 0.5n  Time complexity is O(n 2 ).

Complexity Examples 41  Another algorithm solving the same problem: procedure max_diff(a 1, a 2, …, a n : integers) min := a1 max := a1 for i := 2 to n if a i < min then min := a i else if a i > max then max := a i m := max - min  Comparisons: 2n - 2  Time complexity is O(n).

Logarithmic Orders 42  Logarithmic algorithms are highly desirable because logarithms grow slowly with respect to n  There are two classes that come up frequently:  log n  n*log n  The base is usually unimportant (why?) but if you must have one, 2 is a safe bet.

Exercise 6 43  Prove that log(x) is O(x)  Prove that x is O(x*log(x))  Prove that x*log(x) is O(x 2 ).

Exercise 7 44  Prove that 10x + 5x*log(x) is Θ (x*log(x))

Exercise 8 45  Prove that log(n) is Θ (log(n))

Binary Representation of Integers 46  Let f(n) = the number of binary digits needed to represent n, for a positive integer n. Find f(n) and its order.  How many binary digits are needed to represent 325,561?