It's been a while since I touched limits/calculus so I'm a little iffy on the problem below. Given the two sequences
$(1.0001)^n$
$n^{1.0001}$
which one grows faster? My reasoning is that $(1.0001)^n$ or aka 1.0001 multiplied to itself n times will approach infinity but it grows at a slow rate, $n^{1.0001}$ is bigger in most cases and will definitely approach infinity but at a faster rate so $(1.0001)^n$ = O($n^{1.0001}$).
Then $2^\sqrt{\log n}$ vs $1.0001^n$ I thought that $2^\sqrt{\log n}$ > $1.0001^n$ since if we log both sides we get
$\sqrt{\log n}$ and $\log(1.0001^n)$ , again multiplying 1.0001 to itself n times grows really slowly while $\sqrt{\log n}$ has a square root but might grow at a faster rate, so $\log(1.0001^n)$ = O($\sqrt{\log n}$ ).
But my reasoning might be wrong.