1. Definion of Big-O Notation
Let f and g function from the set of integers or the set of real numbers to the set of real numbers, we say that f(x) is O(g(x)) of there are constant C and k such that
∣f(x)∣⩽C∣g(x)∣
whenever x>k. [This is read as f(x) is big oh of g(x)].
2. Suppose that f1(x) is O(g1(x)), and f2(x) is O(g2(x)), then (f1+f2)(x) is O(max(∣g1(x)∣,∣g2(x)∣)).
3. Suppose that f1(x) is O(g1(x)), and f2(x) is O(g2(x)), then (f1f2)(x) is O(g1(x)g2(x))).
4. BigOmega and Big-Theta Notation.
Homework
p237: 10, 13, 15, 16, 25, 26
10. Show that x3 is O(x4) but that x4 is not O(x3).
Solution
1. x3 is O(x4). When x>1, x3<x4. With witnesses C=1,k=1 , x3 is O(x4).
2. x4 is not O(x3). Proof by contradiction. The contradiction is "x4 is O(x3)".
a. There exists some C, where ∣x4∣⩽C⋅∣x3∣. It follows that C⩾∣x∣.
b. C is constant and x can be arbitriarily large in magnitue. So there is no such C such that C⩾∣x∣.
c. The contradiction is false. Thus x4 is not O(x3).
13. Show that 2n is O(3n) but that 3n is not O(2n). (Note that this is a special case of Exercise 60.)
Solution
1. 2n is O(3n). When n>0, 2n<3n. With witnesses C=1,k=0, 2n is O(3n).
2. 3n is not O(2n). Proof by contradiction. The contradiction is "3n is O(2n)".
a. There exists some C, where 3n⩽C⋅2n. It follows that C⩾(23)n.
b. C is constant and n can be arbitriarily large in magnitue. So there is no such C such that C⩾(23)n.
c. The contradiction is false. Thus 3n is not O(2n).
15. Explain what it means for a function to be O(1).
Solution
There are real numbers C and K such that ∣f(x)∣⩽C and x>k. f(x) is bounded by C for all sufficiently large x. In other word, the excution time of an algorithm whoes complexity is O(1) does not depent on the size of input.
16. Show that if f(x) is O(x), then f(x) is O(x2).
Solution
There are constants C and k, such that ∣f(x)∣⩽C∣x∣ and x>k.
∣f(x)∣⩽C∣x∣⇒∣f(x)∣⩽C∣x2∣ when x>max(1,k)
There are constant C and kmax=(1,k) such that ∣f(x)∣⩽C∣x2∣ and x>kmax. Thus f(x) is O(x2).
25. Give as good a big-O estimate as possible for each of these functions.
a) (n2+8)(n+1)
Solution
1. (n2+8) is O(n2) and n+1 is O(n).
2. (n2+8)(n+1) is O(n2⋅n)=O(n3).
b) (nlogn+n2)(n3+2)
Solution
1. (nlogn+n2) is O(n2) and (n3+2) is O(n3).
2. (nlogn+n2)(n3+2) is O(n2⋅n3)=O(n5).
c) (n!+2n)(n3+log(n2+1))
Solution
1. n!+2n is O(n!).
2. n3+log(n2+1). When n>2
n3+log(n2+1)⩽n3+log(2n2)⩽n3+log2+2log(n)⩽3n3
Thus n3+log(n2+1) is O(n3).
3. (n!+2n)(n3+log(n2+1)) is O(n!⋅n3).
26. Give a big-O estimate for each of these functions. For the function g in your estimate f(x) is O(g(x)), use a simple function g of smallest order.
a) (n3+n2logn)(logn+1)+(17logn+19)(n3+2)
Solution
1. (n3+n2logn) is O(n3).
2. (logn+1) is O(logn).
3. (n3+n2logn)(logn+1) is O(n3logn)
4. (17logn+19) is O(logn).
5. (n3+2) is O(n3).
6. (17logn+19)(n3+2) is O(n3logn).
7. (n3+n2logn)(logn+1)+(17logn+19)(n3+2) is O(n3logn).
b) (2n+n2)(n3+3n)
Solution
1. (2n+n2) is O(2n).
2. (n3+3n) is O(3n).
3. (2n+n2)(n3+3n) is O(3n⋅2n)=O(6n)
c) (nn+n2n+5n)(n!+5n)
Solution
1. (nn+n2n+5n). When n⩾5
n2n<nn and 5n<nn⇒nn+n2n+5n<3nn⇒(nn+n2n+5n) is O(nn)