Top "Little-o" questions

In algorithmic analysis, little-o notation is used to quantitatively state that one function grows strictly slower than another function.

Difference between Big-O and Little-O Notation

What is the difference between Big-O notation O(n) and Little-O notation o(n)?

algorithm time-complexity big-o asymptotic-complexity little-o
If f(n) = o(g(n)) , then is 2^(f(n)) = o(2^(g(n)))?

Notice that I am asking for little-o here (see similar question here) - for big Oh it's clearly wrong - …

computer-science asymptotic-complexity little-o
Trouble understanding little-o notation example

I'm having trouble with this one problem 9n <= cn^3 basically I can get down to 9/c <= n^2 But …

algorithm big-o notation asymptotic-complexity little-o
Can someone explain why f(n) + o(f(n)) = theta(f(n))?

According to this page: The statement: f(n) + o(f(n)) = theta(f(n)) appears to be true. Where: o = …

time-complexity big-o big-theta little-o