Thanks for taking the time to look at this problem. I'm trying to prepare for a test on Monday by doing some extra odd numbered problems from my textbook. I'm having a lot of trouble trying to solve one of these problems involving recurrence relations:
s(n) = s(n/2) + 3, where s(1) = 3 and n=2^m.
* n=2^m implies that n must be even *
This isn't a homogeneous recurrence relation, so I'll have to find the associated homogeneous relation and then solve for the remaining term using the 'best guess technique'.
Thanks a lot!
It looks like this sequence is only defined on terms with power-of-$2$ indices, on those indices, it's basically an arithmetic sequence, with initial term $3$ and common difference also $3$. That means $s(n)=3+3\log_2n$, again with $n=2^m$