I am thinking of examples of the kind where the function occurs multiple times on the R.H.S with different arguments. This is the case where most techniques I know don't seem to work.
For example can someone help find $\Theta(T(n))$ (or solve exactly!?) for this, $T(n) = T(\frac{n}{2}) + T(\frac{n}{4}) + T(\frac{n}{6}) + \frac{n}{log(n)}$
Substitution works for this example.
For some $c>12$, suppose inductively that $T(n) \le \frac{cn}{\log n}$ for sufficiently large $n$. Then we have:
\begin{align} T(n) &= T\left(\frac{n}{2}\right)+T\left(\frac{n}{4}\right)+T\left(\frac{n}{6}\right)+\frac{n}{\log n} & \\ & \le \frac{cn/2}{\log(n/2)}+\frac{cn/4}{\log(n/4)}+\frac{cn/6}{\log(n/6)}+\frac{n}{\log n} & \\ &\le \left(\frac{11(c+\epsilon)}{12}+1\right)\frac{n}{\log n} & \text{for any }\epsilon >0 \text{ for sufficiently large }n\\ &\le \frac{cn}{\log n}&\\ \end{align}
This proves that $T(n) \in O(\frac{n}{\log n})$. Looking at the recurrence, we know that $T(n) \in \Omega(\frac{n}{\log n})$. Therefore $T(n) \in \Theta(\frac{n}{\log n})$