-1
I have some questions about analyzing algorithm complexity, I have their correct answer (true or false), but I don’t know how to prove it, if someone can explain me the reasoning to get their real proof:
- 100n is not in Ω(n²) -> Jig says it is true.
- n + log n is in Θ(n) -> Feedback says it is true
- We can say that an algorithm with complexity f(n) is in O(f(n/2)). -> Template says it is false.
- A function f(n) asymptotically dominates another function g(n) if there are two positive constants c and n_0 such that, for n n_0, we have f(n) c g(n). Jig says false.
- For two functions g(n) and f(n) we have that f(n)=Ω(g(n)) if only if f(n)=O(g(n)). template says it is false.
On related threads, I found this one that is also relevant to your question: https://answall.com/questions/236960/como-provea-ordem-assint%C3%b3tica-de-um-algorithm? Rq=1
– Allan Juan