How to solve the recurrence relation:
$\displaystyle T(n) = \begin{cases} \sqrt{2T\left(\frac n2\right)} + \log_2(n) & \mbox{if }\ n>2\\ 1 & \mbox{if }\ n\leq2 \end{cases}$
n is set of all real numbers
I am not sure how to remove the sqrt, by some substitution. i tried multiple methods by replacing with a different function but i was unable to remove it.