how do you solve this equation of recurrence?
$T(1) = 1$ $T(n) = 2T(\frac{n}{3})+n*log_2(n)+1$
The problem is the term $n*log_2(n)$.
Can I only consider only $n$ as it's the larger then $log_(n)$ and then solve the equations $T(n)=2T(\frac{n}{3})+n+1$?
thanks
You must be using an impoverished version of the Master Theorem. The wording in Wikipedia, for example, applies to recurrences of the form
$$ T(n) = a T(n/b) + f(n) \qquad\qquad(a\ge 1,b>1) $$
and is perfectly applicable to your case where $f(n) = n\log n+1$. It's not restricted to $f(n)$ being a power of $n$.
The key parameter is $\log_b(a)$, which in your case is $\log_3 2 \approx 1.58$. So to find out which which case of the theorem applies, compare the growth of $n\log n+1$ with the growth of $n^{1.58}$. We find that $$ f(n) = n\log n + 1 = \mathcal O(n^{1+\epsilon}) \qquad\text{and certainly }1+\epsilon < 1.58$$ so the first case of the theorem (in Wikipedia's numbering) applies, and the result is $$ T(n) = \Theta(n^{\log_3 2}) $$