I was wondering if i could find a closed form for this function:
$$T(n)=4T(n/3)+n\log_2(n) \text{ for $ n\in \mathbb N$}$$
$$\text{ & }T(0)=1$$
or at least some function $g$ s.t $T(n)=Θ\big(g(n) \big)$,
(I've tried Master theorem and it does not work here).
any ideas?
EDIT:$\text{ it turns out that: $\bbox[1px,border:1px solid red] {T(n)=Θ\big( n^{\log_3(4)} \big)}$}$
By using the strong version of Master theorem:
$$ \bbox[7px,border:2px solid red] {\text{MASTER THEOREM}}: $$$$T(n)=aT(n/b)+f(n).$$ $$\bbox[1px,border:1px solid green] {a\ge 1,b>1,f(n)=Θ\big( n^k\cdot \log^p(n)\big)}$$ $$\text{CASE 1}:$$
$$ \text{if } \log_b(a)>k\text{ then: }\quad \bbox[1px,border:1px solid black] {T(n)=Θ\big( n^{\log_b(a)}\big)} $$$$\text{CASE 2}:$$
$$\text{if } \log_b(a)=k:\begin{cases} \text{if $p>-1:\quad \bbox[1px,border:1px solid black] {T(n)=Θ\big( n^k\cdot \log^{p+1}(n)\big)}$} \\ \text{if $p=-1:\quad \bbox[1px,border:1px solid black] {T(n)=Θ\big( n^k\cdot \log\big( \log(n)\big)\big)} $ }\\ \text{if $p<-1:\quad \bbox[1px,border:1.5px solid black] {T(n)=Θ\big( n^k\big)}$ }\\ \end{cases} $$$$\text{CASE 3}:$$
$$\text{if $\log_b(a)<k:\begin{cases} \text{if $p\ge 0:\quad \bbox[1px,border:1px solid black] {T(n)=Θ\big( n^k\cdot\log^p(n)\big)} $} \\ \text{if $p<0:\quad \bbox[0.5px,border:1px solid black] {T(n)=\mathcal O \big( n^k\big)} $} \end{cases}$}$$
Note that the sequence $T(3x), T(3^{2}x), T(3^{3}x), ...$ with $3\nmid x$ can be derived if and only if $T(x)$ is known. (In other words, all 'chains' like this are independent.) Thus, for all values of $T(n)$ to be known, all initial values $T(n)$ with $3\nmid n$ must be specified. In fact, $no$ values of $T(n)$ other than $T(0)$ can be derived right now because $\frac{0}{3} = 0$. We cannot even use continuity conditions because of the domain restriction to natural numbers. So, $\boxed{\text{No, we cannot derive a closed form for }T(n).}$
I will work on this under the condition that $n\in\mathbb{R}$ and that $T$ is continuous, but I do not think I will get very far.