1) Solve the recurrence relation
T(n) = { 2*(T(n-1) + 1) if n > 1
{ 1 if n = 1
2) Name a problem that also has such a recurrence relation.
The answer I got somewhere is here:

I'm still in the process of understanding how to solve recurrence relations.. and I'm seeing that there's multiple methods to solving recurrence relations in general. So my question is, is there multiple ways to solve this? If so, can someone state the answer? Also, how do I know what method to use when solving these recurrence relations? thanks