1. What is the primary purpose of the Substitution Method for solving recurrences?
2. Which of the following is a limitation of the Substitution Method?
3. What is the main idea behind the Recursion-Tree Method?
4. Which of the following is true about the Recursion-Tree Method?
5. What is the Master Theorem used for?
6. Which of the following is NOT a case of the Master Theorem?
7. What is the solution to the recurrence T(n) = 2T(n/2) + n using the Master Theorem?
8. What is the solution to the recurrence T(n) = 4T(n/2) + n^2 using the Master Theorem?
9. Which of the following is true about the Master Theorem?
10. What is the solution to the recurrence T(n) = T(n/2) + 1 using the Master Theorem?