Tagged Questions
The recurrence-relation tag has no wiki summary.
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
108 views
How to make DifferenceRoot and RecurrenceTable useful for non-numeric difference equations?
In answering a physics forum question this morning, I ran into really bad performance of DifferenceRoot and RecurrenceTable compared to calculating the expressions by naively taking derivatives of an ...
5
votes
1answer
228 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 ...
5
votes
1answer
460 views
Prove running time of optimized mergesort is theta(NK + Nlog(N/K))?
Okay, I know Mergesort has a worst case time of theta(NlogN) but its overhead is high and manifests near the bottom of the recursion tree where the merges are made. Someone proposed that we stop the ...
5
votes
5answers
268 views
Recurrence Relations
I am currently enrolled in a programming class and we are covering recurrence relations. Do these ever actually get used on the job? If so, I'd love to hear some examples of when it is useful.
5
votes
3answers
375 views
Big-O complexity of c^n + n*(logn)^2 + (10*n)^c
I need to derive the Big-O complexity of this expression:
c^n + n*(log(n))^2 + (10*n)^c
where c is a constant and n is a variable.
I'm pretty sure I understand how to derive the Big-O complexity ...
4
votes
2answers
195 views
Computing recurrence relations in Haskell
Greetings, StackOverflow.
Let's say I have two following recurrence relations for computing S(i,j)
I would like to compute values S(0,0), S(0,1), S(1,0), S(2,0), etc... in asymptotically optimal ...
3
votes
2answers
143 views
Calculate bessel function in MATLAB using Jm+1=2mj(m) -j(m-1) formula
I tried to implement bessel function using that formula, this is the code:
function result=Bessel(num);
if num==0
result=bessel(0,1);
elseif num==1
result=bessel(1,1);
else
...
3
votes
4answers
236 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
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
3answers
532 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
150 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) + ...
2
votes
2answers
1k views
Recurrence Relation: Solving Big O of T(n-1)
I'm solving some recurrence relation problems for Big O and so far up till this point have only encountered recurrence relations that involved this form:
T(n) = a*T(n/b) + f(n)
For the above, it's ...
1
vote
2answers
324 views
solving T(n) = 2T(n/2) + log n [closed]
I am trying to solve T(n) = 2T(n/2) + log n
substituted n = 2^k
T(2^k) = 2T(2^(k-1)) + k
T(2^k) = 2^2 T(2^(k-1)) + 2(k-1) + k
after k steps
T(2^k) = 2^k T(1) + 2^(k-1) + 2 * (2^(k-2)) +....+k
...
1
vote
1answer
706 views
T(n) = sqrt(n) T(sqrt(n)) + n [closed]
Can this be solved by using Master Theorem ?? it is not of the form
T(n) = a*T(n/b) + f(n)
But this problem is given in the exercise of CLRS chapter 4.
1
vote
2answers
212 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
183 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
1answer
55 views
Dynamic Programming algorithm
A binary tree T is semi-balanced if for every node m in T:
R(m)/2 <= L(m) <= 2*R(m),
where L(m) is the number of nodes in the left-sub-tree of m and R(m) is the number of nodes in the ...
0
votes
2answers
107 views
Proving a recurrence relation by induction [closed]
I have a test coming up, and I need some help with a practise question... Need to prove this by induction:
Reccurence relation: m(i) = m(i-1) + m(i - 3) + 1, i >= 3
Initial conditions: m(0) = 1, ...
0
votes
2answers
97 views
Recurrence Relations in Data Structures
In my Data Structures Class, we're looking at recurrence relations like T(n) and big O problems O(n). I'd appreciate any resources for learning these, my textbook doesn't cover T(n), and the professor ...
0
votes
0answers
59 views
CLSR chip testing problem
Finding ONE good VLSI chip in a population of good and bad ones, by using the
pair test.
Chip A Chip B Conclusion
------- ------- ----------
B ...
0
votes
0answers
101 views
XCode crashes upon deleting of recurrent relationship
I'm using CoreData for storage. Somehow I added a cyclic relationship to one entity in v1.0 of my iPhone application and didn't notice it. Probably i clicked it with right mouse button and pressed ...
0
votes
0answers
124 views
Second Order Homogeneous Recurrence Relation Question [closed]
I am revising for an exam in a few weeks and I have the following recurrence relation:
f(n) = 5f(n/2) - 4f(n/4)
My lecture notes are confusing me and I was hoping to get some help on how to solve ...
0
votes
1answer
318 views
Recurrence Relation Homework Struggles
Here's the question:
Solve the recurrence by obtaining a theta bound for T(n) given that T(1) = theta(1).
T(n) = n + T(n-3)
Attempted Solution:
T(n) = T(n-6) + (n-3) + n
= T(n-9) + (n-6) + ...
0
votes
0answers
315 views
How to solve the recurrence relation [closed]
How to solve the recurrence relation:
T(n) = T(n - 1) + T(n / 2)+ n
by recursion tree to get an asymptotic upper bound?
The height is n, but how to generalize the sum at each levels?
0
votes
0answers
242 views
Recurrence Relation: Finding Big O
I'm trying to find Big O of this recurrence relation:
T(n) = T(n-1) + n^c // where c is >=1
So I decided to solve this by using a recursion tree, which I have broken down as follows:
n^c -> ...
0
votes
3answers
90 views
sequence with and without recursion
I have a sequence.
a1 = 1 - cos(x);
ai = a1 + (-1)^(i-1) * x^(2*i-2) / (2*i-2)!
I need to write this with and without recursion. But it has a different results.
Here is my code: ...