Math Problem Statement

Let f(n) = n 3 − 3n 2 + 50 n + 11 True or False: f(n) = O(n 3 ) True False Suppose f1(n) is O(n 3 ) and Ω(n 2 ). Also suppose that f2(n) is O(n 4 ) and Ω(n). Consider the function f(n) = f1(n) + f2(n). True or false: it must be the case that f(n) = O(n 4 ). True False Problem 18. (2 points) Let f(n) = n · (cos n + 1). Remember that cos n value oscillates between −1 and 1. True or False: f(n) = Θ(n). Show your reasoning that led you to the conclusion True False

Solution