Tagged Questions

9
votes
5answers
2k views

Can some one help solving this recurrence relation?

T(n) = 2T(n/2) + 0(1) T(n) = T(sqrt(n)) + 0(1) first one I use substitution method for n, logn, etc, all gave me wrong answers. Recurrence trees: I dont know if I can apply as the root will be a ...
5
votes
1answer
243 views

Big O Question - Algorithmic Analysis III

I have the following question: Solve the recurrence relation simplifying the answer using Big 'O' notation: f(0) = 2 f(n) = 6f(n-1)-5, n>0 I know this is a first order inhomogenous recurrence ...
4
votes
3answers
2k views

Solving a recurrence relation using iteration method

Consider this example : T(n) = T(7n/8) + 2n I assumed T(1) = 0 and tried to solve it in the following way T(n) = T(7n/8) + 2n = T(49n/64) + 2.(7n/8) + 2n = T(343n/512) + ...
3
votes
4answers
266 views

Running Time of Divide And conquer fibonacci program

count = 0 def fibonacci(n): global count count = count + 1 if not isinstance(n, int): print ('Invalid Input') return None if n < 0: print ('Invalid Input') ...
3
votes
3answers
535 views

How can I implement this equation in Java?

OK, this is more of a follow-up question: How to compute optimal paths for traveling salesman bitonic tour? First of all, for the bitonic tour of the traveling salesman problem I have the following ...
2
votes
3answers
174 views

Recurrence relations with multiple recurrences

I know how to do recurrence relations for algorithms that only call itself once, but I'm not sure how to do something that calls itself multiple times in one occurrence. For example: T(n) = T(n/2) + ...
1
vote
2answers
247 views

Rules of Big O - Question

If I have the following closed form solution for a recurrence relation, how can I simplify it under big O: f(n) = 3^n + n.9^n I would hazard a guess at: f(n) is a member of O(9^n) -> Am not sure if ...
1
vote
1answer
229 views

Functional recurrence on a constant?

I am given this recurrence relation: T (n) = T (n − a) + T (a) + cn C > 0 , a >= 1 .. my problem is with T (a) , I don't understand how you can "recurs" a constant?? Like, if am trying to build a ...
0
votes
0answers
90 views

Solving a Recurrence Relation/Equation, is there more than 1 way to solve this? [closed]

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 ...