SUNY Geneseo Department of Computer Science


Asymptotic Notation, Part 2

{Date}

CSci 240, Spring 2007
Prof. Doug Baldwin

Return to List of Lectures

Previous Lecture

Misc

Repairing the snow day

Faculty applicant (Alexander Dekhtyar) interviewing Monday

Questions?

Two Other Asymptotic Notations

Each concentrates on one half of the definition of Θ(...)

f(n) grows no faster than proportional to b(n)

f(n) grows no slower than proportional to b(n)

Examples

f(n) = Θ( b(n) ) if and only if f(n) = O( b(n) ) and f(n) = Ω( b(n) )

Empirical Application

How to tell if measured data are consistent with an asymptotic hypothesis

Section 9.2.3

Example

Next

A short-cut for finding asymptotic solutions to many recurrences


Next Lecture