I need to prove that: $$ 4n+3n\log_2n \text{ is } O(n\log_2n) $$
How can I find $c$ and $n_0$ for $3n\log_2n$?
Also, using the big-Oh definition, I need to show that:
If $g_1(n)$ is $O(f(n))$ and $g_2(n)$ is $O(f(n))$, then the sum $g_1(n)+g_2(n)$ is $O(f(n))$.
I would start with the second question, and then seperatey prove that the two addends in the first function are $O(n\log_2 n)$.
As mentioned in a comment, to prove the second part you basically just have to write out what you know and what you need.
That $g_1(n)$ is $O(f(n))$ means that there exists constants $c_1$ and $n_1$ such that $g_1(n) \leq c_1f(n)$ for $n>n_1$.
That $g_2(n)$ is $O(f(n))$ means that there exists constants $c_2$ and $n_2$ such that $g_2(n) \leq c_2f(n)$ for $n>n_2$.
You need to find constants $c$ and $n_0$ such that $g_1(n)+g_2(n) \leq cf(n)$ for $n>n_0$. It should be easy to see constants that will work (note: they just have to work, not be optimal in any way).
For the first part, it should be really easy to see that $3n\log_2 n$ is $O(n\log_2 n)$, and that $4n$ is ain't much harder (this is where you'll need an $n_0$ that is larger than $1$).