I found the formulas below on a website of a New Zealand university. This is the solution part to a question on big O formulas and wether they are right or wrong, and I wanted to check if these are actually correct.
I specifically have doubts about the fourth staement
$5n+8n^2+100n^3 =O(n^4)$
This is assumed correct. Since we usually take the highest leading element, should it not be $O(n^3)$ as opposed to $O(n^4)$?
Are the other proofs correct?

They are correct. Anything that is $O(n^3)$ is also $O(n^4)$.