I have 2 functions, C(n) and A(n)
I do not know why A(n) is slower than C(n) because higher growth rate means slower runtime.
From my perspective, they both have root on numerator. However, A(n) is divided by logn, which means it should be less than root n. Thus whole A(n) becomes faster than C(n) since C(n) still has root n (even though it is n^1/3 but still has root) and is not divided by anything.
Is there very simplest way to define growth rate order?
Thank you very much if you can explain why A(n) is slower than C(n).