Master method usually deals with the equation having the following form :
$$T (n) = aT (n/b) + f(n)$$
But what if my equation is like this?
$$T( n) = T(5n/7) + n $$
How can I find the tight asymptotic bound for such equations?
The n inside the T function isn't alone. I have a constant 5 with it. So I am actually confused.