Recent questions tagged cormen

0 votes
1 answer
121
0 votes
1 answer
125
0 votes
0 answers
126
0 votes
0 answers
128
0 votes
0 answers
129
0 votes
0 answers
130
0 votes
0 answers
131
0 votes
0 answers
132
0 votes
0 answers
133
Use a recursion tree to determine a good asymptotic upper bound on the recurrence $T(n)=T(n-1)+T(n/2) +n$.Use the substitution method to verify your answer.
0 votes
0 answers
134
Use a recursion tree to determine a good asymptotic upper bound on the recurrence $T(n) =2T(n-1) + 1$.Use the substitution method to verify your answer.
0 votes
0 answers
135
Use a recursion tree to determine a good asymptotic upper bound on the recurrence $T(n)=4T(n/2 +2)+n$.Use the substitution method to verify your answer.
0 votes
1 answer
136
Use a recursion tree to determine a good asymptotic upper bound on the recurrence $T(n)=T(n/2)+n^2$.Use the substitution method to verify your answer
0 votes
0 answers
137
Use a recursion tree to determine a good asymptotic upper bound on the recurrence $T(n)=3T(\lfloor n/2 \rfloor) + n$. Use the substitution method to verify your answer.
0 votes
1 answer
138
Solve the recurrence $T(n)=3T(\sqrt n) +log\ n$ by making a change of variables.Your solution should be asymptotically tight. Do not worry about whether values are integr...
0 votes
0 answers
142
0 votes
0 answers
148
0 votes
0 answers
149
0 votes
0 answers
150
Prove by induction that the $i^{th}$ Fibonacci number satisfies the equality$F_i = \frac{\phi^i-\hat{\phi^i}}{\sqrt{5}}$where $\phi$ is the golden ratio and $\hat{\phi}$ ...