Determining the growth rate of a function

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
1 reply · 3K views
DanSlevin
Messages
7
Reaction score
0
I'm trying to figure out the growth rate of a function. Below is what I believe to be the solution, but I'm wondering if I've properly taken into account all the factors necessary, so I wanted to see if this appears correct.

$$\Large\frac{3(n+1)^{\frac{2}{3}}}{2}-\frac{3(1)^{\frac{2}{3}}}{2}$$

$$\Large\frac{3}{2}((n+1)^{\frac{2}{3}}-1) $$

$$\Large\Theta(n^{\frac{2}{3}}) $$
 
Physics news on Phys.org
DanSlevin said:
I'm trying to figure out the growth rate of a function. Below is what I believe to be the solution, but I'm wondering if I've properly taken into account all the factors necessary, so I wanted to see if this appears correct.

$$\Large\frac{3(n+1)^{\frac{2}{3}}}{2}-\frac{3(1)^{\frac{2}{3}}}{2}$$

$$\Large\frac{3}{2}((n+1)^{\frac{2}{3}}-1) $$

$$\Large\Theta(n^{\frac{2}{3}}) $$

It does not appear correct because you provide no explanation of how you get from the first line to the last or indeed what the relationship between the expression on the first line is with that on the last.

It is indeed the case that

\[\large \left[ \frac{3(n+1)^{2/3}}{2}-\frac{3(1)^{2/3}}{2}\right]\in \Theta(n^{2/3}) \]

but I won't say your explanation is inadequate because it is not an explanation at all. Also the form of your first line suggests that this is part of a larger problem, which you really should have posted.

CB