Login
Register
Dark Mode
Brightness
Ambient Glow – Questions list
Register
Profile
Edit Profile
Messages
My favorites
My Updates
Logout
Recent questions tagged master-theorem
2
2 votes
1
1 answer
277
277 views
GO Classes DPP | GATE CS, DA | Algorithms | Master's Theorem
Solve the recurrence:$T(n) = 4T(n/2) + n^2$$\Theta(n^2)$ $\Theta(n^2\log n)$ $\Theta(n^{\log_2 4})$ $\Theta(n^3)$
GO Classes
277
views
asked
Jul 29
Algorithms
goclasses
goclasses-da-dpp
goclasses-da-dpp-day-239
goclasses-cs-dpp
goclasses-cs-dpp-day-337
algorithms
python-&-dsa
goclasses-python-&-dsa-practice-questions
goclasses-algo-practice-questions
master-theorem
+
–
3
3 votes
1
1 answer
193
193 views
GO Classes DPP | GATE CS, DA | Algorithms | Master's Theorem
Solve the recurrence:$T(n) = 7T(n/2) + n^3$$\Theta(n^{\log_2 7})$ $\Theta(n^3)$ $\Theta(n^3\log n)$ $\Theta(n^2)$
GO Classes
193
views
asked
Jul 29
Algorithms
goclasses
goclasses-da-dpp
goclasses-da-dpp-day-239
goclasses-cs-dpp
goclasses-cs-dpp-day-337
algorithms
python-&-dsa
goclasses-python-&-dsa-practice-questions
goclasses-algo-practice-questions
master-theorem
+
–
2
2 votes
1
1 answer
176
176 views
GO Classes DPP | GATE CS, DA | Algorithms | Master's Theorem
Solve the recurrence:$T(n) = 10T(n/3) + 17n^{1.2}$ $O(n^{1.2})$ $O(n^{\log_3 10})$ $O(n^{1.2}\log n)$ $O(n^3)$
GO Classes
176
views
asked
Jul 29
Algorithms
goclasses
goclasses-da-dpp
goclasses-da-dpp-day-239
goclasses-cs-dpp
goclasses-cs-dpp-day-337
algorithms
python-&-dsa
goclasses-python-&-dsa-practice-questions
goclasses-algo-practice-questions
master-theorem
+
–
2
2 votes
1
1 answer
181
181 views
GO Classes DPP | GATE CS, DA | Algorithms | Master's Theorem
Solve the recurrence:$T(n) = 3T(n/5) + (\log n)^2$ $O((\log n)^2)$ $O(n^{\log_5 3})$ $O(n)$ $O(n\log n)$
GO Classes
181
views
asked
Jul 29
Algorithms
goclasses
goclasses-da-dpp
goclasses-da-dpp-day-239
goclasses-cs-dpp
goclasses-cs-dpp-day-337
algorithms
python-&-dsa
goclasses-python-&-dsa-practice-questions
goclasses-algo-practice-questions
master-theorem
+
–
4
4 votes
2
2 answers
519
519 views
GATE CSE 2026 | Set 1 | Algorithms | Memory Based | Question 34
Consider the following:For all $n>1$$$\begin{aligned}& T_1(n)=4 T_1(n / 2)+T_2(n) \\\\& T_2(n)=5 T_2(n / 4)+\theta\left(\log _2 n\right)\end{aligned}$$Assume that for all...
GO Classes
519
views
asked
Feb 12
Algorithms
goclasses
gate2026_cs_set1_memorybased
algorithms
master-theorem
recurrence-relation
one-mark
+
–
3
3 votes
4
4 answers
960
960 views
GATE CS Practice : The "Master Theorem" (Algorithms)
Consider the following recurrence relation describing the running time of an algorithm: $$T(n) = 2T\left(\frac{n}{2}\right) + \frac{n}{\log n}$$$$(Base\ condition: T(1) =...
NullPointer_Pro
960
views
asked
Dec 24, 2025
Algorithms
algorithms
master-theorem
recurrence-relation
computer-science
gate-preparation
+
–
0
0 votes
1
1 answer
296
296 views
Algorithm Master Theorem
How to check if f(n) is polynomially greater than g(n)?
arbpass
296
views
asked
Sep 11, 2025
Algorithms
algorithms
master-theorem
recurrence-relation
+
–
1
1 vote
0
0 answers
266
266 views
T(n)= 2T(n^1/2)+(log n/log log n) solve this using master theorem
Mitlesh_Verma
266
views
asked
Aug 15, 2025
Algorithms
master-theorem
+
–
0
0 votes
1
answers
1 answer
676
676 views
made easy practice book
How can we solve this recurrance relation using master's theorem? T(n)=2 * T (n/2) + nlogn
srishtipandey420
676
views
asked
Jun 20, 2024
Algorithms
recurrence-relation
master-theorem
algorithms
made-easy-booklet
+
–
0
0 votes
1
1 answer
848
848 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
848
views
asked
Aug 13, 2023
Algorithms
recurrence-relation
master-theorem
+
–
1
1 vote
1
1 answer
1.8k
1.8k views
how to solve T(n)=4T(√n)+3^5n with master theorem
how do i apply master theorem to this?
mdboi
1.8k
views
asked
Oct 29, 2022
Algorithms
algorithms
recurrence-relation
master-theorem
asymptotic-notations
+
–
1
1 vote
2
2 answers
1.5k
1.5k views
how to solve T(n)=2T(n/2)−n^3n with master theorem
how do i apply master theorem to this? T(n)=2T(n/2)−n^3n
mdboi
1.5k
views
asked
Oct 28, 2022
Algorithms
algorithms
master-theorem
recurrence-relation
asymptotic-notations
+
–
3
3 votes
1
1 answer
1.5k
1.5k views
𝑇(𝑛)=16𝑇(𝑛/4)+5𝑛^3 using the master theorem
how do i apply master theorem to this? 𝑇(𝑛)=16𝑇(𝑛/4)+5𝑛^3
mdboi
1.5k
views
asked
Oct 28, 2022
Algorithms
algorithms
master-theorem
recurrence-relation
asymptotic-notations
time-complexity
+
–
0
0 votes
1
1 answer
554
554 views
NIELIT 2021 Dec Scientist B - Section B: 69
In the recurrence relation$\text{T}(n)=0.5\ast \text{T}(n/2)+1/n$, which case of Master Theorem is suitable?Case $1$Master Theorem not applicable in this situationCase $2...
admin
554
views
asked
Jul 21, 2022
Algorithms
nielit-2021-it-dec-scientistb
recurrence-relation
master-theorem
algorithm-design
+
–
1
1 vote
1
1 answer
5.0k
5.0k views
Solve equation using master theorem T(n) = 8T(n/2) + 3n^2
I can't figure out how to proceed and which case it's falling under after calculating h(n)
ItzDc
5.0k
views
asked
Jun 3, 2022
Algorithms
algorithms
recurrence-relation
master-theorem
+
–
0
0 votes
1
answers
1 answer
10.9k
10.9k views
What is the recurrence for T(n)=2T(n/4)+sqrt(n) using the Master Theorem
How do I apply the master theorem in the above recurrence? Please give details about which case and on hiow to solve the asymptotic analysis...
lucasbbs
10.9k
views
asked
Feb 28, 2022
Algorithms
master-theorem
algorithms
recurrence-relation
+
–
0
0 votes
1
1 answer
642
642 views
Master Theorm
which formula to use in master theorm
flash12
642
views
asked
Sep 26, 2021
Algorithms
algorithms
master-theorem
recurrence-relation
+
–
0
0 votes
1
1 answer
1.3k
1.3k views
NIELIT 2017 OCT Scientific Assistant A (IT) - Section B: 14
The running time of an algorithm $T(n),$ where $’n’$ is the input size , is given by$T(n) = 8T(n/2) + qn,$ if $n>1$ $= p,$ if $n = 1$Where $p,q$ are constants. ...
admin
1.3k
views
asked
Apr 1, 2020
Algorithms
nielit2017oct-assistanta-it
algorithms
recurrence-relation
time-complexity
master-theorem
+
–
1
1 vote
1
1 answer
2.1k
2.1k views
NIELIT 2017 OCT Scientific Assistant A (CS) - Section C: 4
The running time of an algorithm $T(n),$ where $’n’$ is the input size , is given by$T(n) = 8T(n/2) + qn,$ if $n>1$$ = p,$ if $n = 1$Where $p,q$ are constants. The order ...
admin
2.1k
views
asked
Apr 1, 2020
Algorithms
nielit2017oct-assistanta-cs
algorithms
recurrence-relation
time-complexity
master-theorem
+
–
6
6 votes
3
3 answers
5.0k
5.0k views
ISRO CSE 2020 | Question: 21
The master theoremassumes the subproblems are unequal sizescan be used if the subproblems are of equal sizecannot be used for divide and conquer algorithmscannot be used ...
Satbir
5.0k
views
asked
Jan 13, 2020
Algorithms
isro-2020
algorithms
master-theorem
easy
+
–
0
0 votes
1
answers
1 answer
2.4k
2.4k views
Master's Theorem: Validity of Format
How to check if a given recurrence relation is in a format that is valid to apply Master’s Theorem? Also, how to distinguish between Master’s Theorem and extended Master’...
lolster
2.4k
views
asked
Jun 12, 2019
Algorithms
algorithms
master-theorem
time-complexity
asymptotic-notations
+
–
0
0 votes
0
0 answers
496
496 views
Cormen Edition 3 Exercise 4.6 Question 3 (Page No. 106)
Show that case 3 of the master theorem is overstated, in the sense that the regularity condition $af(n/b)\geq cf(n)$ for some constant $c<1$ implies that there exists a c...
akash.dinkar12
496
views
asked
Apr 5, 2019
Algorithms
cormen
algorithms
recurrence-relation
master-theorem
descriptive
difficult
+
–
0
0 votes
0
0 answers
385
385 views
Cormen Edition 3 Exercise 4.6 Question 2 (Page No. 106)
Show that if $f(n)=\Theta(n^{log_ba}\lg^kn )$, where $k\geq0$ then the master recurrence has solution $T(n) =\Theta(n^{log_ba} \lg^{k+1}n)$.For simplicity, confine your a...
akash.dinkar12
385
views
asked
Apr 5, 2019
Algorithms
cormen
algorithms
recurrence-relation
master-theorem
descriptive
difficult
+
–
0
0 votes
0
0 answers
544
544 views
Cormen Edition 3 Exercise 4.5 Question 5 (Page No. 97)
Consider the regularity condition $af(n/b) \leq cf(n)$ for some constant $c<1$,which is part of case 3 of the master theorem. Give an example of constants $a\geq 1$ and $...
akash.dinkar12
544
views
asked
Apr 5, 2019
Algorithms
cormen
algorithms
recurrence-relation
master-theorem
descriptive
difficult
+
–
0
0 votes
1
1 answer
654
654 views
Cormen Edition 3 Exercise 4.5 Question 4 (Page No. 97)
Can the master method be applied to the recurrence $T(n)=4T(n/2)+n^2\ lg\ n$ ?Why or why not? Give an asymptotic upper bound for this recurrence.
akash.dinkar12
654
views
asked
Apr 5, 2019
Algorithms
cormen
algorithms
recurrence-relation
master-theorem
descriptive
+
–
0
0 votes
1
1 answer
473
473 views
Cormen Edition 3 Exercise 4.5 Question 3 (Page No. 97)
Use the master method to show that the solution to the binary-search recurrence $T(n)=T(n/2) + \Theta(1)$ is $T(n)=\Theta(lg\ n)$.
akash.dinkar12
473
views
asked
Apr 5, 2019
Algorithms
cormen
algorithms
recurrence-relation
master-theorem
descriptive
+
–
0
0 votes
1
1 answer
1.7k
1.7k views
Cormen Edition 3 Exercise 4.5 Question 2 (Page No. 97)
Professor Caesar wishes to develop a matrix-multiplication algorithm that is asymptotically faster than Strassen’s algorithm. His algorithm will use the divide and conque...
akash.dinkar12
1.7k
views
asked
Apr 5, 2019
Algorithms
cormen
algorithms
recurrence-relation
master-theorem
descriptive
+
–
0
0 votes
1
1 answer
964
964 views
Cormen Edition 3 Exercise 4.5 Question 1 (Page No. 96)
Use the master method to give tight asymptotic bounds for the following recurrences.$T(n)=2T(n/4) + 1$$T(n)=2T(n/4) +\sqrt{n}$$T(n)=2T(n/4) +n$$T(n)=2T(n/4) +n^2$
akash.dinkar12
964
views
asked
Apr 5, 2019
Algorithms
cormen
algorithms
recurrence-relation
master-theorem
+
–
0
0 votes
0
0 answers
1.3k
1.3k views
master theorem
what is master theorem for function like T(n) = aT(n-b) + f(n) where f(n) is not in the form of $n^k$
Hira Thakur
1.3k
views
asked
Dec 13, 2018
Algorithms
master-theorem
+
–
Page:
1
2
3
4
next »