How to mathematically solve the recurrence relations of the following form :

1. [T(n)=(2^n)T(n/2) + n^n][1]
2. [T(n)=4T(n/2) + n^(2)logn][2]

Is there a generic method to solve these?

I...