3-6 Variations on O and Ω
Some authors define Ω-notation in a slightly different way than this textbook does. We'll use the nomenclature Ω∞ (read "omega infinity") for this alternative definition. We say that f(n) = Ω∞(g(n))if there exists a positive constant c such that f(n)≥cg(n)≥0 for infinitely many integers n.
a. Show that for any two asymptotically nonnegative functions f(n) and g(n), we have f(n)=O(g(n)) or f(n)=Ω∞(g(n)) (or both).
b. Show that there exist two asymptotically nonnegative functions f(n) and g(n) for which neither f(n)=O(g(n)) nor f(n)=Ω(g(n)) holds.
c. Describe the potential advantages and disadvantages of using Ω∞-notation instead of Ω-notation to characterize the running times of programs.
Some authors also define O in a slightly different manner. We’ll use O′ for the alternative definition: f(n)=O′(g(n)) if and only if ∣f(n)∣=O(g(n)).
d. What happens to each direction of the "if and only if" in Theorem 3.1 on page 56 if we substitute O′ for O but still use Ω?
Some authors define O~(read "soft-oh") to mean O with logarithmic factors ignored:
O~(g(n))={f(n): there exist positive constants c,k, and n0 such that 0≤f(n)≤cg(n)lgk(n) for all n≥n0}.
e. Define Ω~ and Θ~ in a similar manner. Prove the corresponding analog to Theorem 3.1.
a
if f(n)=O(g(n))there must be infinite integers that f(n)≥cg(n)≥0otherwise choose the last n= that f(n)≥cg(n) as n0for all n≥n0,f(n)≤cg(n)⟹f(n)=O(g(n))
b
f(n)=n∣sinn∣,g(n)=1
c
- advantages: By a we can know that O and Ω∞ can characterize relationship between any two function.
- disadvantages: Not precise.
d
∀f(n),g(n):f(n)=Θ(g(n))⟹f(n)=Ω(g(n))&f(n)=O′(g(n))but the conversion is not true
e
Ω~(g(n))={f(n):Θ~(g(n))={f(n):according to there definity: there exist positive constants c,k, and n0 such that0≤f(n)≤cg(n)lgk(n) for all n≥n0}. there exist positive constants c1,c2,k, and n0 such that0≤c1g(n)lgk(n)≤f(n)≤c2g(n)lgk(n) for all n≥n0}.f(n)=Θ~(g(n))⟺f(n)=O~(g(n))&f(n)=Ω~(g(n))