UMBC CMSC441, Design & Analysis of Algorithms, Fall 2001, Section 0101


Homework 1, Due Tuesday September 11, 72 points total

  1. (12 points each) Prove that the following statements are true:

    1. 4n3 - 6n = Theta(n3)

    2. n! = O(nn)

    3. n1.2 + n lg n = Theta(n1.2)
     

  2. (12 points each) Show that the following statements are false:

    1. 3 n2 -9n = O(n)

    2. n2 lg n = Theta(n2)
     

  3. (12 points) Prove by induction that for x != 1 and n >= 0 that

    (Summation of xi for i=0 to n) = (xn+1 - 1)/(x-1).


Last Modified: 4 Sep 2001 13:53:48 EDT by Richard Chang
to Fall 2001 CMSC 441 Section Homepage