I have:
- () = * log(!)
- () = 3 * log(n)5n
I must show whether:
- () = Ω(()) or/and
- () = O(())
At first I tried to simplify (). This brings me to: () = 152 * log(n)
My next step would be to guess the factorial in (). For this I estimate an upper bound of . So now I can compare the two terms.
I know that: () ≤ O(())
* log() ≤ c * 2 * log(n)
2 * log(n) ≤ c * 2 * log(n)
So for c ≥ 1 → () = O(())
But how do I prove this for Ω? Or is my approach for O even right?