davisashley3203 davisashley3203 03-04-2024 Mathematics contestada Solve the following recurrence relation by using recursion trees and substitution method: t(n) = 1 if n = 0, t(n) = t(n-1) + 3 if n > 0.