The document discusses the Master Theorem for solving recurrence relations of the form T(n) = aT(n/b) + f(n). There are 3 cases depending on how f(n) compares to nlogba. 22 practice problems are given to apply the Master Theorem. For each, it is determined whether the Master Theorem can be used to solve the recurrence and express T(n), or if it does not apply.