I'm having some trouble trying to prove $\log_{2}(n) \neq \Omega(\sqrt{n})$. I'm trying to do this without using limits.
I am able to prove $n^2 \neq \Omega(2^n)$, so if $\log_{2}(n)=\Omega(\sqrt{n}) \Rightarrow n^2 = \Omega(2^n)$ then I think I can use the contrapositive to disprove $\log_{2}(n) = \Omega(\sqrt{n})$.
The reason I think $\log_{2}(n)=\Omega(\sqrt{n}) $ implies $ n^2 = \Omega(2^n)$ is because $\log_{2}{n}$ has an integer solution $k$ at every $n=2^k$ while $\sqrt{n}$ has an integer solution $k$ at every $n=k^2$. So for $\log_{2}{n}$ to be in $\Omega(\sqrt{n})$, the distance between integer solutions for $\sqrt{n}$ would have to grow more quickly than the distance between integer solutions for $\log_{2}{n}$.
Is my reasoning valid?
Edit:
To prove that $n^2 \neq \Omega(2^n)$, I first assume it is true. So I assume the following is true:
$$\exists c \exists n_0 \forall n(n > n_0 \to n^2 \geq c \cdot 2^n)$$
Then I move the pieces of the inequality around a bit,
$$n^2 \geq c \cdot 2^n \Rightarrow 2\log{n} \geq \log{c} + n \Rightarrow 2 \geq \frac{\log{c}}{\log{n}} + \frac{n}{\log{n}}$$
So $(n > n_0) \to (2 \geq \frac{\log{c}}{\log{n}} + \frac{n}{\log{n}})$
I let $a = \max(2^{6-\log{c}}, c, n_0) + 7$, and $b=(a+3)^2$. Therefore, $b > a > n_0$, so the following should be true:
$$2 \geq \frac{\log{c}}{\log{b}} + \frac{b}{\log{b}}$$
To show that it is not true, I do the following:
For $0 < c < 1$: $$(\log{c} < 0) \land (\log{b} > 0) \land (|\log{b}| > |\log{c}|) \to -1 < \frac{\log{c}}{\log{b}} < 0$$
For $c \geq 1$:
$$(b > c) \to (\log{b} > \log{c}) \to 0 \leq \frac{\log{c}}{\log{b}} < 1$$
Therefore, for $c > 0$:
$$-1 < \frac{\log{c}}{\log{b}} < 1$$
Which means that:
$$-1 + \frac{b}{\log{b}} < \frac{\log{c}}{\log{b}} + \frac{b}{\log{b}} < 1 + \frac{b}{\log{b}}$$
Therefore, the following should be true:
$$2 \geq \frac{\log{c}}{\log{b}} + \frac{b}{\log{b}} > -1 + \frac{b}{\log{b}}$$
So I move the pieces of the inequality around a bit:
$$2 > -1 + \frac{b}{\log{b}} \Rightarrow 3 > \frac{b}{\log{b}} \Rightarrow 3 > \frac{(a+3)^2}{2\log{(a+3)}} \Rightarrow 6\log{(a+3)} > (a+3)^2$$
and remember that by the definition I gave for $a$,
$$(a+3 > 6) \land (a+3 > \log{a+3} > 1)$$
So it leads to a contradiction, as it is impossible for
$$6\log{(a+3)} > (a+3)^2$$
to be true.
Therefore, $n^2 \neq \Omega(2^n)$.
Edit 2: I used the inequality that Gary provided to prove that $\log{n} \neq \Omega(\sqrt{n})$:
$$\log{n} = \Omega(\sqrt{n}) \to \exists c \exists n_0 \forall n (n > n_0 \to \log{n} \geq c \cdot \sqrt{n})$$
$$\log{n} \geq c \cdot \sqrt{n} \Rightarrow \frac{\log{n}}{n^{1/2}} \geq c$$
$$\frac{\log{n}}{n^{1/2}} \leq \frac{4}{\ln{2} \cdot n^{1/4}} \textrm{, so}$$
$$ \frac{4}{\ln{2} \cdot n^{1/4}} \geq c \Rightarrow 4 \geq c \cdot \ln{2} \cdot n^{1/4} \textrm{ should be true.}$$
$$(\frac{1}{2} < \ln{2}) \to (c \cdot \frac{1}{2} \cdot n^{1/4} < c \cdot \ln2 \cdot n^{1/4})$$
$$4 \geq \frac{1}{2} \cdot c \cdot n^{1/4} \Rightarrow 8 \geq c \cdot n^{1/4}$$
$$\textrm{Let } a = \max\left(\left(\frac{8}{c^{-1}}\right)^4 + 1, c, n_0\right)+8^4$$
$$a > n_0 \textrm{, so } 8 \geq c \cdot a^{1/4} \textrm{ should be true but} $$
$$(0 < c < 1) \to (c \cdot \frac{8}{c^{-1}} = 8 \land a^{1/4} > \frac{8}{c^-1}) \to (c \cdot a^{1/4} > 8)$$
$$(c \geq 1) \to (a > 8^4) \to (c \cdot a ^{1/4} > 8)$$
$$\textrm{So } 8 \geq c \cdot a^{1/4} \textrm{ cannot be true}$$
Therefore, this leads to a contradiction so $\log{n} \neq \Omega(\sqrt{n})$.