As I'm learning Big O notation, I'm having difficulty understanding how ALL arithmetic operations are always constant.
For example, the growth rate of either O(15n) or O(150n+50) is supposed to be same as O(n):
I would expect at a high enough level such as
these functions would appear much closer together, but am I missing something?
By definition, big O does not care about multiplicative factors. If you plot $n$ and $150n$ on a graph $150n$ grows faster, but they are within a multiplicative factor of $150$. The point is that $n^2$ grows so much faster it exceeds any multiplicative factor times $n$, so is in a different category.