Login
Register
Dark Mode
Brightness
Ambient Glow – Questions list
Register
Profile
Edit Profile
Messages
My favorites
My Updates
Logout
Recent questions tagged recurrence-relation
0
0 votes
1
answers
1 answer
776
776 views
GATE: Algorithms (Source: StackOverflow)
rajishu07
776
views
asked
Oct 1, 2023
Algorithms
algorithms
recurrence-relation
+
–
0
0 votes
1
1 answer
1.2k
1.2k views
Recurrence relations
Consider the following function:function X(n,r) { if(r==0 or n == r) then return 1; else return (X(n-1,r-1,) + X(n-1,r)); }Find the worst case time complexity of function...
practicalmetal
1.2k
views
asked
Sep 15, 2023
Algorithms
recurrence-relation
algorithms
+
–
0
0 votes
1
1 answer
850
850 views
How to solve the following recurrence relation? I get confused when decimals are used in the expression.
$T\left ( n \right )= 8T\left ( \frac{n}{2} \right )+\left ( n\cdot logn \right )^{2.99}$Also can $\mathcal{O}(n^{3})$ be an upper bound to above recurrence relation?
rexritz
850
views
asked
Aug 13, 2023
Algorithms
recurrence-relation
master-theorem
+
–
3
3 votes
2
2 answers
1.3k
1.3k views
GO Classes 2024 | IIITH Mock Test 2 | Question: 66
Let $$T(n)=\sqrt{n} \cdot T(\sqrt{n})+n$$What will be asymptotic bound on $T(n) ?$$\Theta(\sqrt{n} \log n)$$\Theta(\log \log n)$$\Theta(n \log \log n)$$\Theta(\sqrt{n} \l...
GO Classes
1.3k
views
asked
Apr 7, 2023
Algorithms
goclasses2023-iiith-mock-11
goclasses
algorithms
recurrence-relation
asymptotic-notations
time-complexity
one-mark
+
–
0
0 votes
1
1 answer
736
736 views
self doubt
Solve the following recurrences using recursion tree method and write the asymptotic time complexity T(n)=T(n/2)+n^2
Çșȇ ʛấẗẻ
736
views
asked
Mar 14, 2023
Algorithms
time-complexity
recurrence-relation
+
–
4
4 votes
1
1 answer
998
998 views
TIFR CSE 2023 | Part B | Question: 6
What is the solution to the following recurrence?\[T(n)=\left\{\begin{array}{ll}1 & \text { if } n \leq 10, \\\sqrt{n} \cdot T(\sqrt{n})+n & \text { if } n>10.\end{array}...
admin
998
views
asked
Mar 14, 2023
Algorithms
tifr2023
algorithms
recurrence-relation
time-complexity
+
–
24
24 votes
4
4 answers
17.2k
17.2k views
GATE CSE 2023 | Question: 5
The Lucas sequence $L_{n}$ is defined by the recurrence relation:\[L_{n}=L_{n-1}+L_{n-2}, \quad \text { for } \quad n \geq 3,\]with $L_{1}=1$ and $L_{2}=3$.Which one of t...
admin
17.2k
views
asked
Feb 15, 2023
Combinatory
gatecse-2023
combinatory
recurrence-relation
one-mark
+
–
0
0 votes
1
1 answer
2.4k
2.4k views
GATE CSE 2023 | Memory Based Question: 15
The Lucas sequence $L_n$ is defined by the recurrence relation:$L_n=L_{n-1}+L_{n-2}$, for $n \geq 3$ with $L_1=1$ and $L_2=3$.Which one of the options given is TRUE?$L_n=...
GO Classes
2.4k
views
asked
Feb 5, 2023
Combinatory
memorybased-gatecse2023
goclasses
combinatory
recurrence-relation
+
–
1
1 vote
0
0 answers
1.4k
1.4k views
Test series
Can anyone solve this recurrence relation T(n) = 3T(n-1) + O(n^2)Its ans is O(3^n n^2)
MonuKhan
1.4k
views
asked
Jan 12, 2023
Algorithms
recurrence-relation
algorithms
time-complexity
asymptotic-notations
+
–
22
22 votes
1
1 answer
4.1k
4.1k views
Recurrence Relation - Self Doubt
What is the recurrence relation for the ternary strings of length $n$ which can be constructed using 0,1 or 2 only such that the number of 0’s and number of 1's is odd ...
P C
4.1k
views
asked
Dec 31, 2022
Combinatory
recurrence-relation
discrete-mathematics
+
–
Page:
« prev
1
2
3
4
5
6
7
8
...
26
next »