edited by
2,813 views
3 votes
3 votes

The master theorem

  1. assumes the subproblems are unequal sizes
  2. can be used if the subproblems are of equal size
  3. cannot be used for divide and conquer algorithms
  4. cannot be used for asymptotic complexity analysis
edited by

2 Answers

4 votes
4 votes
$\underline{\textbf{Answer:}\Rightarrow}\;\mathbf{b.}$

It divides the subproblem into each of size $\mathbf{\dfrac{n}{b}}$.
edited by
1 votes
1 votes
Answer will be (b) because

According to master's theorem we can only find the time complexity if the recurrence relation is of form

$T(n) = a\times T \left( \frac{n}{b} \right) +n^k *log^p n$

it assumes the subproblems to be of size $\left( \frac{n}{b} \right)$
Answer:

Related questions

6 votes
6 votes
5 answers
1
Satbir asked Jan 13, 2020
2,975 views
If $x+2y=30$, then $\left(\dfrac{2y}{5}+\dfrac{x}{3} \right) + \left (\dfrac{x}{5}+\dfrac{2y}{3} \right)$ will be equal to$8$$16$$18$$20$
3 votes
3 votes
4 answers
2
Satbir asked Jan 13, 2020
8,959 views
A given grammar is called ambiguous iftwo or more productions have the same non-terminal on the left hand sidea derivation tree has more than one associated sentencethere...
3 votes
3 votes
3 answers
3
Satbir asked Jan 13, 2020
2,188 views
Which of the following is true?Every subset of a regular set is regularEvery finite subset of non-regular set is regularThe union of two non regular set is not regularInf...
2 votes
2 votes
4 answers
4
Satbir asked Jan 13, 2020
2,738 views
Context free languages are closed underunion, intersectionunion, kleene closureintersection, complementcomplement, kleene closure