3.2 The Growth of Functions

Ex: 1, 2, 3, 4, 8, 12, 13, Fig 3

1. Definion of Big-O Notation
Let ff and gg function from the set of integers or the set of real numbers to the set of real numbers, we say that f(x)f(x) is O(g(x))O(g(x)) of there are constant CC and kk such that

f(x)Cg(x)|f(x)| \leqslant C|g(x)|

whenever x>kx>k. [This is read as f(x)f(x) is big oh of g(x)g(x)].
2. Suppose that f1(x)f_1(x) is O(g1(x))O(g_1(x)), and f2(x)f_2(x) is O(g2(x))O(g_2(x)), then (f1+f2)(x)(f_1+f_2)(x) is O(max(g1(x),g2(x)))O(max(|g_1(x)|, |g_2(x)|)).
3. Suppose that f1(x)f_1(x) is O(g1(x))O(g_1(x)), and f2(x)f_2(x) is O(g2(x))O(g_2(x)), then (f1f2)(x)(f_1f_2)(x) is O(g1(x)g2(x)))O(g_1(x)g_2(x))).
4. BigOmega and Big-Theta Notation.

Homework

p237: 10, 13, 15, 16, 25, 26

10. Show that x3x^3 is O(x4)O(x^4) but that x4x^4 is not O(x3)O(x^3).

Solution

1. x3x^3 is O(x4)O(x^4). When x>1x>1, x3<x4x^3 < x^4. With witnesses C=1,k=1C=1, k=1 , x3x^3 is O(x4)O(x^4).
2. x4x^4 is not O(x3)O(x^3). Proof by contradiction. The contradiction is "x4x^4 is O(x3)O(x^3)".
a. There exists some CC, where x4Cx3|x^4| \leqslant C\cdot |x^3|. It follows that CxC \geqslant |x|.
b. CC is constant and xx can be arbitriarily large in magnitue. So there is no such CC such that CxC \geqslant |x|.
c. The contradiction is false. Thus x4x^4 is not O(x3)O(x^3).

13. Show that 2n2^n is O(3n)O(3^n) but that 3n3^n is not O(2n)O(2^n). (Note that this is a special case of Exercise 60.)

Solution

1. 2n2^n is O(3n)O(3^n). When n>0n>0, 2n<3n2^n < 3^n. With witnesses C=1,k=0C=1, k=0, 2n2^n is O(3n)O(3^n).
2. 3n3^n is not O(2n)O(2^n). Proof by contradiction. The contradiction is "3n3^n is O(2n)O(2^n)".
a. There exists some CC, where 3nC2n3^n \leqslant C\cdot 2^n. It follows that C(32)nC \geqslant (\frac{3}{2})^n.
b. CC is constant and nn can be arbitriarily large in magnitue. So there is no such CC such that C(32)nC \geqslant (\frac{3}{2})^n.
c. The contradiction is false. Thus 3n3^n is not O(2n)O(2^n).

15. Explain what it means for a function to be O(1)O(1).

Solution

There are real numbers CC and KK such that f(x)C|f(x)| \leqslant C and x>kx>k. f(x)f(x) is bounded by CC for all sufficiently large xx. In other word, the excution time of an algorithm whoes complexity is O(1)O(1) does not depent on the size of input.

16. Show that if f(x)f(x) is O(x)O(x), then f(x)f(x) is O(x2)O(x^2).

Solution

There are constants CC and kk, such that f(x)Cx|f(x)| \leqslant C|x| and x>kx>k.

f(x)Cxf(x)Cx2 when x>max(1,k)|f(x)| \leqslant C|x| \To |f(x)| \leqslant C|x^2| \text{ when } x>max(1, k)

There are constant CC and kmax=(1,k)k_{max}=(1, k) such that f(x)Cx2|f(x)| \leqslant C|x^2| and x>kmaxx>k_{max}. Thus f(x)f(x) is O(x2)O(x^2).

25. Give as good a big-OO estimate as possible for each of these functions.
a) (n2+8)(n+1)(n^2 + 8)(n + 1)

Solution

1. (n2+8)(n^2 + 8) is O(n2)O(n^2) and n+1n + 1 is O(n)O(n).
2. (n2+8)(n+1)(n^2 + 8)(n + 1) is O(n2n)=O(n3)O(n^2 \cdot n) = O(n^3).

b) (nlogn+n2)(n3+2)(n\log n + n^2)(n^3 + 2)

Solution

1. (nlogn+n2)(n\log n + n^2) is O(n2)O(n^2) and (n3+2)(n^3 + 2) is O(n3)O(n^3).
2. (nlogn+n2)(n3+2)(n\log n + n^2)(n^3 + 2) is O(n2n3)=O(n5)O(n^2 \cdot n^3) = O(n^5).

c) (n!+2n)(n3+log(n2+1))(n! + 2^n)(n^3 + \log(n^2 + 1))

Solution

1. n!+2nn! + 2^n is O(n!)O(n!).
2. n3+log(n2+1)n^3 + \log(n^2 + 1). When n>2n>2

n3+log(n2+1)n3+log(2n2)n3+log2+2log(n)3n3n^3 + \log(n^2 + 1) \leqslant n^3 + \log(2n^2) \leqslant n^3 + \log 2 + 2\log(n) \leqslant 3n^3

Thus n3+log(n2+1)n^3 + \log(n^2 + 1) is O(n3)O(n^3).
3. (n!+2n)(n3+log(n2+1))(n! + 2^n)(n^3 + \log(n^2 + 1)) is O(n!n3)O(n! \cdot n^3).

26. Give a big-OO estimate for each of these functions. For the function g in your estimate f(x)f(x) is O(g(x))O(g(x)), use a simple function gg of smallest order.
a) (n3+n2logn)(logn+1)+(17logn+19)(n3+2)(n^3+n^2\log n)(\log n+1) + (17 \log n+19)(n^3+2)

Solution

1. (n3+n2logn)(n^3+n^2\log n) is O(n3)O(n^3).
2. (logn+1)(\log n+1) is O(logn)O(\log n).
3. (n3+n2logn)(logn+1)(n^3+n^2\log n)(\log n+1) is O(n3logn)O(n^3 \log n)
4. (17logn+19)(17 \log n+19) is O(logn)O(\log n).
5. (n3+2)(n^3+2) is O(n3)O(n^3).
6. (17logn+19)(n3+2)(17 \log n+19)(n^3+2) is O(n3logn)O(n^3 \log n).
7. (n3+n2logn)(logn+1)+(17logn+19)(n3+2)(n^3+n^2\log n)(\log n+1) + (17 \log n+19)(n^3+2) is O(n3logn)O(n^3 \log n).

b) (2n+n2)(n3+3n)(2^n + n^2)(n^3 + 3^n)

Solution

1. (2n+n2)(2^n + n^2) is O(2n)O(2^n).
2. (n3+3n)(n^3 + 3^n) is O(3n)O(3^n).
3. (2n+n2)(n3+3n)(2^n + n^2)(n^3 + 3^n) is O(3n2n)=O(6n)O(3^n \cdot 2^n) = O(6^n)

c) (nn+n2n+5n)(n!+5n)(n^n + n2^n + 5^n)(n! + 5^n)

Solution

1. (nn+n2n+5n)(n^n + n2^n + 5^n). When n5n \geqslant 5

n2n<nn and 5n<nnnn+n2n+5n<3nn(nn+n2n+5n) is O(nn)\begin{aligned} n2^n &< n^n \text{ and } 5^n < n^n \To n^n + n2^n + 5^n < 3n^n\\ &\To (n^n + n2^n + 5^n) \text{ is } O(n^n) \end{aligned}

2. (n!+5n)(n! + 5^n). When n12n \geqslant 12

n!>5nn!+5n<2n!(n!+5n) is O(n!)\begin{aligned} n! &> 5^n \To n! + 5^n < 2n!\\ &\To (n! + 5^n) \text{ is } O(n!) \end{aligned}

3. (nn+n2n+5n)(n!+5n)(n^n + n2^n + 5^n)(n! + 5^n) is O(nn2n!)O(n^n \cdot 2n!).