Question
Prove tight worst-case asymptotic upper bounds for the following recurrence equation that depends on a variable q in [0, n/4]. Note that you need to
Prove tight worst-case asymptotic upper bounds for the following recurrence equation that depends on a variable q \in [0, n/4]. Note that you need to prove an upper bound that is true for every value of q \in [0, n/4] and a matching lower bound for a specific value of q \in [0, n/4] of your choosing. Do not assume that a specific q yields the worst case input; instead, formally identify the q which maximizes the running time.
Note, it should be a MATH proof, not a copy/pasted c++ program.
T(n) = 1 if n<= 2
T(n) = T(n-2q-1) + T(3q/2) + T(q/2) +Theta(1) otherwise
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