Question
For the following recurrences, solve them in O( ) notation (best possible). Where appropriate, you need to express your answer as a polynomial, in other
For the following recurrences, solve them in O( ) notation (best possible). Where appropriate, you need to express your answer as a polynomial, in other words in the form n^c for a constant c. For example, if you have a solution in the form such as 7^{log_{3}n} then you need to re-express it as n^c. If you have a solution such as O(n^{log_{5}2}) then that's OK. You need to show your work for solving the recurrence. You can use the Master Theorem to check your work, but I will downvote if you just apply it without showing work for solving the recurrence.
1. T(n)=2T(n/3)+1
2. T(n)=5T(n/4)+10n
3. T(n)=9T(n/3)+n2
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started