I\'m currently taking an algorithm class, and we\'re covering Big O notations and such. Last time, we talked about how
O (n^2 + 3n + 5) = O(n^2)
Also the following notations hold
O(n^2) + n = O(n^2)
and
O(n^2) + Θ(3n+5) = O(n^2), Θ(n)
Hope it makes sense...