1
Mathematics for Computer Science MIT 6.042J/18.062J
Asymptotic Notation
Albert R Meyer, April 10, 2013 theOhs.1
Asymptotic Equivalence
Def: f(n) ~ g(n)
f(n) lim = 1
n→∞ g(n)
Albert R Meyer, April 10, 2013 theOhs.2
Asymptotic Equivalence ~
n2 ~ n2 + n
because
n2 + n 1 lim n2 = lim 1+ = 1
n→∞ n→∞
n
Albert R Meyer, April 10, 2013 theOhs.3
Asymptotic Equivalence ~ Lemma: ~ is symmetric
Proof: Say f ~ g. Now
g 1 1 1 lim =lim = = f ⎛ f⎞ ⎛ f⎞ 1 lim ⎜ g⎟ ⎜ ⎟ ⎝ ⎠ ⎝ g⎠
Albert R Meyer, April 10, 2013 theOhs.4