Consider this example :
T(n) = T(7n/8) + 2n
I assumed T(1) = 0
and tried to solve it in the following way
T(n) = T(7n/8) + 2n
= T(49n/64) + 2.(7n/8) + 2n
= T(343n/512) + 2.(7n/8).(7n/8)+ 2.(7n/8) + 2n
= T(1) + 2n ( (7n/8)^i + ..... + 1)
but I could not come to any conclusion about this. I am confused about what should I do in the next step.