Question 1

Consider the following recurrence relation of :

  1. Use The Master Theorem to show that .
  2. Verify lower-bound by showing for all . Base Case: LHS = , RHS = Hence, which means the base case holds. Inductive Case: Assume for all . By definition, .
Hence this formula holds for all values of $m \le k$. 3. Verify upper-bound by showing $T(n) \le 2 \log_2 n$ for all $n \ge 2$. 4. Why is the upper-bound much harder to prove than the lower-bound? # Question 2 1. Construct recurrence relation $T(n)$ such that: - $T(1) = 1$