Question: Recall the Big - O - notation. If f and g are functions then f ( n ) in O ( g ( n

Recall the "Big-O"-notation.
If f and g are functions then f(n) in O(g(n))f(n) in O(g(n)) if there is a constant c>0c>0 such that f(n)cg(n)f(n)cg(n) for all sufficiently large values of n.
We write f(n) in (g(n))f(n) in (g(n)) if both f(n) in O(g(n))f(n) in O(g(n)) and g(n) in O(f(n))g(n) in O(f(n)).
Question 6Select one or more:
a.
17n3 in (n3)17n3 in (n3)
b.
n2 in O(nlog(n))n2 in O(nlog(n))
c.
n! in O(2n)n! in O(2n)
d.
nlog(n) in O(n2)nlog(n) in O(n2)
e.
10000n10000 in O(1.001n)10000n10000 in O(1.001n)
f.
n1000 in O(2n)n1000 in O(2n)
g.
log(n) in O(1)log(n) in O(1)(Here "1" denotes the function f(n)=1f(n)=1 for all natural numbers nn).
h.
n5 in O(n4)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!