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:

problem

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

link|improve this question

67% accept rate
You might want to try here instad: math.stackexchange.com. – Groo Feb 5 at 17:32
ok i'll try that, thanks – user1189352 Feb 5 at 18:00
feedback

closed as off topic by Michael Petrotta, animuson, Ken Wayne VanderLinde, Doc Brown, Groo Feb 5 at 17:34

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.