Asymptotic
Asymptotic describes the limiting behavior of a function or sequence as its input grows without bound, approaches a specified value, or tends to zero in a small parameter. In practice, statements about asymptotics compare functions in the limit, often by expressing that one quantity is approximately equal to another up to a negligible error when the variable becomes large.
Several standard notations express these ideas. f(x) = O(g(x)) as x → ∞ means that, beyond some point, |f(x)|
Applications include asymptotic analysis in mathematics and computer science, where one characterizes the growth rate of
Examples: f(n) = n^2 + n satisfies f(n) ~ n^2 as n → ∞, and f(n) = Θ(n^2). Also log n = o(n^a)