Playground
Landau Ranker
Compare growth-rate functions visually and rank them from slowest to fastest-growing. Each function is auto-classified into a Big-O class.
Growth chart (log-log)
log nsqrt(n)nn*log(n)n^2n^32^nn!
Add function
Syntax:
n, numbers, + - * / ^, log(n), sqrt(n), parentheses.Ranking (at n=64)
- 1.log nO(log n)
- 2.sqrt(n)—
- 3.nO(n)
- 4.n!O(n!)
- 5.n*log(n)O(n log n)
- 6.n^2O(n2)
- 7.n^3O(n3)
- 8.2^nO(2^n)