How to solve $T(n) = T(n/3) + T(n/4) +5n$ using iteration method?

114 Views Asked by At

How can i solve $T(n) = T(n/3) + T(n/4) +5n$ using iteration method to find time complexity of the requrrence?