Answer:
See explanation
Explanation:
To determine whether each of these functions is
, we apply these theorems:
- A polynomial is always O(the term containing the highest power of n)
- Any O(x) function is always
.
(a)Given the function: f(x)=100x+1000
The highest power of n is 1.
Therefore f(x) is O(x).
Since any O(x) function is always
, 100x+1000 is
.
The highest power of n is 2.
Therefore the function is
.