1. Solve the recurrence by repeated substitution T(1) = 1, T(n) = 3T(n/3) +n, for n > 1. Assume that n has the form 3k.
Posted: Tue Jul 12, 2022 8:20 am
1. Solve the recurrence by repeated substitution T(1) = 1, T(n) = 3T(n/3) +n, for n > 1. Assume that n has the form 3k. Verify by an explicit calculation that your solution satisfies the recurrence relation.