Here is a recursive definition for the runtime of some unspecified function. a and c are positive constants.
$T(n)=a$, if $n=2$
$T(n)=2T(n/2)+cn$ if $n>2$
Use induction to prove that $T(n)=\theta(n\log(n))$
How should I do my base case? It is not a number, so how do I find my n0?