3

If we have the function $f : \mathbb{N}_0 \rightarrow \mathbb{N}$ with $f(n) = n^2$ and we look at the following representations of the sets $\mathcal{o}(f),\mathcal{O}(f),\Theta(f),\Omega(f),\omega(f) $: Asymptotic Notation

Now I have to list all necessary statements which are proving that the illustration is correct.

The necessary statements are in my opinion:

\begin{align} \Theta (f)&\subseteq \mathcal{O}(f) \\ \Theta (f)&\subseteq \Omega (f) \\ \Theta (f)&= \mathcal{O}(f) \cap \Omega (f) \\ \omega (f)&\subseteq \Omega (f) \\ \hbox{o}(f)&\subseteq\mathcal{O}(f) \\ \, \emptyset &=\, \omega (f) \cap \hbox{o}(f) \end{align} Now I have to proof two statements of my choice. But how to proof that in a formal correct way. (I understand the intuitive proofs but I don't know how to do it formally correctly.)

Hope somebody can help.

Yuval Filmus
  • 276,994
  • 27
  • 311
  • 503
fragant
  • 175
  • 5
  • You have some redundant statements. 2) You are missing proper subset relations. 3) You are missing statements about $o$/$\omega$ and $\Theta$. 4) Proving these statements is just using the definitions. See also here.
  • – Raphael Nov 07 '16 at 15:54