1. Please list the names of the other members of your peer group for this week and the number of extra credit points you think they deserve for their participation in group work on Tuesday and Thursday combined.
**2. ** (6 pts) Use the Master Method to give tight Θ bounds for the following recurrence relations. Show a, b, and f(n). Then explain why it fits one of the cases, if any. If it fits a case, write and _ simplify _ the final Θ result
a. T(n) = 2_T_(n/4) + √n
b. T(n) = 2_T_(n/4) + n
c. T(n) = 4_T_(n/3) + n
3. (7 pts) Use substitution as directed below to solve
T(n) = 4_T_(n/3) + n
It is strongly recommended that you read page 85-86 “Subtleties” before trying this!
a. First, use the result from the Master Method in 2c as your “guess” and inductive assumption. We will do this without Θ and c: just use the algebraic portion. Take the proof up to where it fails and say where and why it fails. (See steps below.)
b. Redo the proof, but subtracting d__n from the guess to construct a new guess. This time it should succeed.
As a reminder, to do a proof by substitution you: