2

While studying master method at recurrences topic I'm stacked at a point. It is written in the book as:

$T(n) = 3T(n/4) + n \log n$,

we have $a = 3, b = 4$,

$f(n) = n \log n$, and

$n^{\log_b(a)} = n^{\log_4 3} = O(n^{0.793})$.

Since $f(n) = \Omega(n^{\log_4( 3)+\varepsilon} )$, where $\varepsilon \approx0.2$ ....

The authors means that the $n\log n = \Omega(n)$. How will we know this? Is $n \log n = \Omega(n)$ true? Or something is wrong?

A.Schulz
  • 12,167
  • 1
  • 40
  • 63

1 Answers1

6

Yes, $ n\log n = \Omega(n) $ is true.

To see why, note that for this to be true, we have to show that $ n\log n \ge cn$ for all $n \gt n_0 $ and $ \exists c \gt 1 $. If we take $ c = 1 $ then, we get $n\log n \ge n$ for all $n \ge 2$. This shows that $ n\log n = \Omega(n) $ is true.

A.Schulz
  • 12,167
  • 1
  • 40
  • 63
Arani
  • 513
  • 3
  • 10