Came across an alternative approach to solve this question,
The Akra-Bazzi theorem provides a method for solving certain types of recurrence relations that don't fit directly into the standard forms covered by the master theorem. The Akra-Bazzi theorem is applicable to recurrence relations of the form:
T(n) = g(n) + Σ_{i=1to k} ai *T(bi *n + h_i(n)),
where ai and bi are constants, and hi(n) are functions satisfying certain conditions. In this case, k = 2, a1 = a2 = 1, b1 = 1/3, b2 = 2/3, and h1(n) = h2(n) = 0.
First we check conditions ,as we can see all conditions satisfied from above.
next we check Regularity Condition:
Σ_{i=1to k} |ai/ bi^{-1}|^p = 1.
Σ_{i=1to k} |ai/ bi^{-1}|^p = (1/(1/3)^p) + (1/(2/3)^p) = 3^p + (3/2)^p ~= 1 for all p>1
The Akra-Bazzi theorem states that if the conditions are satisfied, the solution T(n) is equivalent to
Θ (n^p (1 + ∫_{1to n} g(u) / u^{1+p} du)).
Here g(n) = n and p = |ai / bi| *(1 + hi'(n) / n^{1 + hi(n)}) = 3^{-1} + (2/3)^{-1} = 1. [Since, h1(n) = h2(n) = 0]. By substituting the values in above equation stated, we get
Θ (n (1 + ∫_{1to n} u / u2 du)) = Θ (n (1 + ∫_{1to n} 1/u du)) = Θ (n (1 + log n)) = Θ (n + n log n)
= Θ (n log n)