New Reply

Can I use Master Theorem if the partitions are not fractions?

 
Share Thread
Mar2-12, 04:02 PM   #1
 

Can I use Master Theorem if the partitions are not fractions?


1. The problem statement, all variables and given/known data

If I had a recurrence expression that recurs on partitions of size n - 1 each time, (as opposed some fraction of the original size ie. n/2), how can I apply the Master Theorem? I don't know what the "b" value is?


2. Relevant equations



3. The attempt at a solution

ie. If I had 2 C(n-1) + f(n), what is b?
PhysOrg.com science news on PhysOrg.com

>> City-life changes blackbird personalities, study shows
>> Origins of 'The Hoff' crab revealed (w/ Video)
>> Older males make better fathers: Mature male beetles work harder, care less about female infidelity
Mar4-12, 01:40 PM   #2
 
You can not use the Master Theorem in this case, just use the recursion tree method. In this case it is easy to see that it will be exponential, since each level has twice the number of nodes of the previous level.
Mar5-12, 08:42 AM   #3
 
Quote by Max.Planck View Post
You can not use the Master Theorem in this case, just use the recursion tree method. In this case it is easy to see that it will be exponential, since each level has twice the number of nodes of the previous level.
I'm not sure what a recursion tree method is..
I see that each recursion will have twice the calls to the function as the last, but they are also on one less element than the last, does that matter?

Actually nevermind, so if I find a closed form expression it will be 2^n, right?
Mar5-12, 08:52 AM   #4
 

Can I use Master Theorem if the partitions are not fractions?


Quote by zeion View Post

Actually nevermind, so if I find a closed form expression it will be 2^n, right?
Depends on C(0) and f(n). The recursion tree method should be described in your textbook.
Mar5-12, 09:42 AM   #5
 
Oh I see. It says that f(n) is constant. But it doesn't say what C(0) is.
New Reply

Similar discussions for: Can I use Master Theorem if the partitions are not fractions?
Thread Forum Replies
Statistics with Baye's theorem and partitions Precalculus Mathematics Homework 3
Asymptotic lower/upper bounds for T(n) [Master Theorem?] Calculus & Beyond Homework 0
Master Theorem Calculus & Beyond Homework 0