For each pair <f, g> of functions below, list which of the following are true: f(n) = o(g(n)), f(n) = Theta(g(n)), or g(n) = o(f(n)).
a. f(n) = ln(n), g(n) = lg(n). ["ln" is log-base-e, and "lg" is log-base-2]
b. f(n) = n^2, g(n) = n*lg(n).
c. f(n) = 2^n, g(n) = 2^(2n). ["^" is "to the power"]

