I am studying for National Olympiad for informatics and one of the questions was about asymptotic notations. The equation was this:
$$ log5^+4∈Ω() $$
I am a high school student and haven't learned logarithm yet; but I tried my best, only to find out it was wrong:
$$ log 5^n + log 10^4 ≥ cn $$
$$ 5^n.10^4 ≥10^{cn} $$
$$ 5^n.10^4>=5^{cn}.2^{cn} $$
Here, I thought that $ 5^{cn} $ is always bigger than $5^n$, and $2^{cn}$ is bigger than $10^4$ for a value of n big enough. So I came to a conclusion that this equation was false. But then I learned that it was actually true. Why is that?
Remember $\Omega$ notation implies there exists some $c > 0$ such that your inequality holds.
Your inequality can be written as $$\left(\frac{5}{10^c}\right)^n \ge 10^{-4}.$$ If $0 < c \le \log 5$ is small enough, we have $5/10^c > 1$, so the inequality holds for all large $n$.