Wikipedia says that the equation cannot be solved using Master's Method.
The equation matches with Master's Theorem except for $\frac {n}{\log(n)}$.
A youTube tutor (seek time 11:42) solves this using Master's Method as :
$T(n)=2T(\frac{n}{2})+\frac{n}{\log(n)}$
$T(n)=2T(\frac{n}{2})+n \log^{-1}n$
$a=2,b=2,k=1,p=-1$
Therefore,
$T(n)=\theta(n^{\log_ab}\log(\log(n)))$
$T(n)=\theta(n\log\log(n))$
Is it correct? because I don't think $\frac{n}{\log(n)}$ can be transformed into $n\log^{-1}n$.
A 3rd source has solved it using a completely different approach currently beyond my understanding but the answer matches with the one solved in the youTube video.
Is the approach by the guy in the youtube video correct? Can logarithms be solved that way? If not, then how would you solve the problem?