cole7516 cole7516 18-02-2024 Computers and Technology contestada Solve the following recursion relations by using the unfolding method (substitution method) a) T(n) = T(n-1) + 1, T(0) = 1b) T(n) = T(n-1) + n, T(0) = 1c) T(n) = T(n-1) + logn, T(0) = 1d) T(n) = 2T(n/2) + n, T(1) = 1e) T(n) = 2ⁿ T(n-1), T(0) = 1