Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

For Problem #17, is f(n) = (log n)/2 okay?

log problem
0
Posted

For Problem #17, is f(n) = (log n)/2 okay?

0

It does not satisfy the requirement of the problem. You are given that f(n) grows asymptotically more slowly than log n. In the homework it states this formally by saying that f(n) = o(log n). Note that is “little-oh” NOT “big-oh”. Let me formally define little-oh for those who have not seen it. We say that f(n)=o(g(n)) if limn -> infinity [f(n)/g(n)] = 0. In other words, f(n) grows asymptotically slower than g(n). So (log n)/2 != o(log n) since the limit as n goes to infinity of 1/2 (not 0).

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123