Is it true that $O(k(n) + m(n))$ is equal to $O(\max\{k(n), m(n)\})$? In one of papers on computational complexity I've found the following statement:
$$O(\log(n) + n(\log S + \log V )) = O(n(\log S + \log V )).$$
Does it follow from the equality given above?
The only similar proof I know is: For $f_1(n) ∈ O(g_1(n))$ and $f_2 ∈ O(g_2(n))$, $f_1(n) + f_2(n) ∈ O(\max\{g_1(n), g_2(n)\})$. I'm almost sure they are related, but for some reason it's not completely clear to me. Thanks for help.
To see your property, take $g_1 = f_1$ and $g_2 = f_2$ in your known theorem. Then your conjecture holds. Or you can see it as follows. Clearly $O(\max(f_1,f_2))$ is no greater than $O(f_1 + f_2)$, and $O(f_1 + f_2)$ is no greater than $O(2 \max(f_1,f_2))$.