I have been working though CSE 373 Lectures by Skiena and I cannot understand his explanation of why multiplication by a constant does not change the asymptotics:
$O(c*f(n)) \to O(f(n))$
In the lectures, Skiena gives the example with $c = 100$ and $f(n) = n^3$. Next, he proceeds with showing that there is a constant $C$ such that $100n^3 < C*n^3$.
Doesn't it just show that $g(n) = 100n^3$ is bounded by $C*n^3$? How does it tell us anything about the $O(c*f(n))$?