O-notaion

O(g(n))= {f(n):0≤f(n)≤cg(n) for all n≥n0≥0}for any c>0
g(n)은 f(n)의 asymptotic upper bound.
가령, 2n2=O(n3), with c=1 & n0=2.
Ω-notation

Ω(g(n))={f(n):0≤cg(n)≤f(n) for all n≥n0≥0}for any c>0
g(n)은 f(n)의 asymptotic lower bound.
가령, n = Ω(lg n),with c=1 and n0=16.
Θ-notation

Θ(g(n))={f(n):0≤c1g(n)≤f(n)≤c2g(n) for all n≥n0≥0}for any c1,c2>0
가령, n2/2−2n=Θ(n2),with c1=1/4, c2=1/2, and n0=8.
이미지 링크: https://www.geeksforgeeks.org/difference-between-big-oh-big-omega-and-big-theta/