Trouble with Recurrence Relations?

deedex11
Messages
1
Reaction score
0
1. I am trying to practice solving recurrence relations but get stuck when it comes to generalizing the last part of them and would be grateful if someone could offer some help. I'm not very good with series which is why I may be having some problems with them. Here are a few examples if its easier for you to explain with an example (these aren't homework questions, just random ones takes from a book):



2. t(n) = 5t(n/2) + n
t(n) = t(n/2) + 3logn
t(n) = 2t(n/2) + n^2




3. for the first one i tried to unroll it and have come up with 5^nt(1) + (5^n)/n(nlogn) + n. but this could be totally wrong. any help appreciated!
 
Physics news on Phys.org
welcome to pf!

hi deedex11! welcome to pf! :smile:

(try using the X2 icon just above the Reply box :wink:)
deedex11 said:
t(n) = 5t(n/2) + n

this is a weird recurrence relation since it doesn't go from n to n + 1 :frown:

you need to make it do that!

so, for each odd whole number A, there's a sequence {A2m}, and the sequences for different As don't overlap, so you'll solve each sequence separately, with its own independent initial condition (and constant)

in other words, solve t(A2m) = 5t(A2m-1) + A2m :wink:
 
Last edited:


tiny-tim said:
hi deedex11! welcome to pf! :smile:

(try using the X2 icon just above the Reply box :wink:)


this is a weird recurrence relation since it doesn't go from n to n + 1 :frown:

you need to make it do that!

so, for each odd whole number A, there's a sequence {A2m}, and the sequences for different As don't overlap, so you'll solve each sequence separately, with its own independent initial condition (and constant)

in other words, solve t(A2m) = 5t(A2m-1) + A2m :wink:


I don't see how the T(n/2) makes this odd; especially considering the fact that it seems as though he is more concerned with an asymptotic analysis than an actual answer. The relation in question can be "solved" using the Master Theorem.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top