According to this book (section 3.1 Order of growth): An order of growth is a set of functions whose asymptotic growth behavior is considered equivalent.
I'm trying to find more precise definition about order of growth. If I understand author's definition correctly he meant the following:
Order of growth of f(n) function is a set of all functions, such that the following statement is always true:
$$ \lim_{n\to \infty} \frac{f(n)}{C*g(n)} = 1 $$
where $C > 0$
Therefore, if $f(n) = 12 * n^2 + n + 14$ then order of growth can be any of the following functions:
$$g(n) = n^2$$ $$g(n) = 12*n^2$$ $$g(n) = 12*n^2 + 1$$ $$g(n) = 12*n^2 + log_2n$$ $$etc$$
So, basically I think it will be correct to say that the order of growth of f(n) function is just it leading term without a constant:
$$f(n) = 12 * n^2 + n + log_2n$$
Order of growth of $f(n)$
$$g(n) = n^2$$
The question is: Is my reasoning are correct?
obvious leading term. Does it mean that in this case my reasoning is correct? – No Name QA Oct 23 '18 at 17:31order of growthusing limits is correct? – No Name QA Oct 23 '18 at 17:46order of growthevery day, about 3 weeks in a row. Everything I have found is about programming. I did not find any correct technical definition. The only "not so bad definition" I have found is a link in my original question. I will be very grateful if you will provide me a link with technical definition oforder of growth– No Name QA Oct 23 '18 at 17:55if two cars are marked as 4matic it means that both have 4 wheels drive.This definition does not give as any definition what 4 wheel drive is. – No Name QA Oct 23 '18 at 18:22codeformat for emphasis, it causes difficulty for screen readers used by visually impaired Readers. For this reason it's recommended that italic emphasis (Markdown asterisk delimiters) be used instead. – hardmath Oct 24 '18 at 13:09