I'm having some trouble with an asymptotic analysis question : My Question is to calculate maximum value if 'a' as stated in my question:
An Algorith A has running time T(n)= 7T(n/2) + n^2
and Algorith B has running time T' = aT'(n/4) + n^2.
What will be the maximum integer value of 'a' such that algorith B runs
asymptotically faster than A.
How should i find the value of 'a' should i use only algorith concept in this or is their any other way to find out or any solutions.