My question is to solve the following using recurrence relation forward substitution then verify using mathematical substitution:
- $T(n) = 2T(\frac{n}{3})$ for $n > 1$, where $n$ is a power of $3$
- $T(1) = 3$
I'm not sure where to start as I'm used to using $T(1) = 3$
Thank you in advance