Does $n\log n = O(n \log n + n)$ hold?
I don't think it does trivially because I think as $n$ grows larger, $n\log n$ will converge to one value, and as the $+ n$ grows, $n\log n + n$. But I am uneasy about my initial thoughts about this. For example, mergesorting a list and then iterating through each element to compare for the smallest difference would result in a running time of $O(n\log n+n)$, yet mergesort is $O(n\log n)$.