superlineaire
Superlineaire, or superlinear in English, is a term used in mathematics and computer science to describe growth or scaling that exceeds linear with respect to an input parameter. In asymptotic analysis, a function f is considered superlinear if it grows faster than any linear function of its argument, i.e., f(n) = ω(n) as n tends to infinity. Equivalently, for every constant C > 0 there exists N such that for all n > N, f(n) > C n; this implies that the ratio f(n)/n is unbounded.
Common examples of superlinear growth include f(n) = n log n, f(n) = n log log n, and f(n)
In computer science, the term is often used to characterize time or space complexities that exceed linear
Related concepts include linear, sublinear, and polynomial growth, with superlinear indicating a growth rate above linear
---