Tagged Questions
1
vote
2answers
53 views
How can we denote the following function in terms of big-O notation?
I have got a function and want to denote it in terms of bigO notation.
f(n) = log4n+n*(1/3). Is this function O(n)? Thanks for your help
0
votes
1answer
37 views
Complexity function
could you help me to determine whether the following function of complexity:
f(n)=5n^3+1800nlogn+18
is of order O(n^2), O(n^4), OMEGA(n^3),OMEGA(n^5),TETA(n^3),TETA(n^5)
I think it is O(n^4), ...
