I am bit confused on the application of the logarithm rules when it comes to using them to determine the order of growth.
For example:
$ 2^{\log 2n} + 4n = \Theta(2^n) $
$ 2^{2\log 2n} + 4n = \Theta(n^2) $
$ n\log n + 10n^2 + 5^{\log n} = \Theta(n^{\log 5}) $
$ n^{\log n} + 4^{(\log n)^2} = \Theta(n^{\log n^2}) $
Which logarithm rules apply to the above? How exactly are they solved? And how can I determine the order of growth for these types of questions when doing them in the future?
NB: The log is in base 2