1,957 views
1 votes
1 votes
n/100= Ω(n)

Is this True or False explain

2 Answers

1 votes
1 votes
Answer is true.

Take c = 0.0001.

So there exists c for which this relation is true.
0 votes
0 votes
This is asymptotically true only but not mathematically.

because n/100 is any way smaller than n.

if we say n/100=O(n) and n/100=theta(n)   then it will be both asymptotically as well as mathematically true

Related questions

0 votes
0 votes
3 answers
2
Nisha Bharti asked Sep 26, 2022
737 views
What is the time & space complexity of this algorithm?Main(){ for(i=n; i>10; i=i^1/4) { for(j=201; j<n^3; j=j+400) ...
0 votes
0 votes
1 answer
3
tusharb asked Feb 18, 2022
710 views
As we know the time complexity of solving the greedy knapsack algorithm depends mainly on the sorting algorithm used, Can we use counting sort as the sorting algorithm to...
2 votes
2 votes
1 answer
4
samarpita asked Dec 29, 2021
643 views
how to solve this?