Question: $T(n) = 9T(n/3) + n^2\log{n} + 2n$
Solution as in the notes:
$a=9, b=3, \log_3{9},$ however, since the question doesn't follow the master theorem guidelines, we need to find f(n) to use the master theorem:
So the prof used: $\lim \dfrac{n^2 \log n + 2n } {n^2 \log n}$
which ==> 1 + 2 * 0 ==> 1
thus, $n^2 \log n + 2n$ ∈ θ( $n^2 \log n$)
My question is: How did he choose the denominator and numerator of the lim above ?