retagged by
450 views
0 votes
0 votes
When can i used logarithms to compare two functions asymptotically?

What is the procedure and rules?

If we have n^2 ans n^3..if we compare using logarithms..thwn they tuen out to be asymptotically equal.should i then compare them by "not" ignoring the constant terms?.
retagged by

1 Answer

1 votes
1 votes

Remember befor apllying log cancle common terms in funtions. otherwise it leads wrong answer.

Example: n3 , nso on take log both given O(logn). 

But correct method is cancle common terms = n2 then take see n s always greter than 1 so n3 is greater than n2.

Related questions