I'm confused about how to approach Big O problems. I'm presented two functions:
$$f(n) = 4^{log_4n}$$ and $$g(n) = 2n +1$$
I simplified f(n) to: $$f(n) = n$$
Now I'm not sure how to compare f(n) and g(n). I tried looking at the ratio of $$\frac{f(n)}{g(n)}$$
But it doesn't come out to 0 or 1. Could anyone help me approach these Big-O problems?