Given: $$ 10n^4 + 3n^3 -n \in O(n^4)$$
So i do understand Big O and what it does. I am however not quite if my approach for the solution is correct, so anyone who could help me out or show me an alternative approach if mine is not correct would be awesome. My solution:
$$ \lim_{x\to\infty} \frac {f(x)}{n^4} \ = 10 => f(n) = \Theta(n^4)$$
so $$ 10n^4 + 3n^3 -n \in O(n^4)$$
is not true.
Plotting both functions seem to show exactly what i found out:

Is that however correct?
By definition $10n^4+3n^3−n\in O(n^4)$ if and only if there exist $n_0$ and $M$ such that $$|10n^4+3n^3−n|\leq M n^4 \quad \forall n\geq n_0.$$ Using triangular inequality and the fact that $n^4$ is larger or equal than $n^3$ and $n$ (if $n\geq 1$) yields $$|10n^4+3n^3−n|\leq |10n^4|+|3n^3+|-n|=10n^4+3n^3+n\leq 10n^4+3n^4+n^4 = 14 n^4 \quad \forall n\geq 1$$ the definition is fulfilled with $M=14$ and $n_0=1$ and thus $10n^4+3n^3−n\in O(n^4)$.
Equivalently, since $\lim_{n\to\infty}\frac{10n^4+3n^3−n}{n^4}=10 $, then $10n^4+3n^3−n\in O(n^4)$.