Can I divide big O expression like O(n^3)/n = O(n^2)? Is this division valid?
closed as not a real question by David Titarenco, Macmade, KingsIndian, BЈовић, oers Sep 23 '12 at 18:02
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
It is a matter of definition. big O is a set. The divide operator is not defined for sets. However, one can define |
|||||||
|
|
I think it make sense ... if f(n) has the complexity of O(n^3), then f(n)/n has the complexity of O(n^2) for sure .if that's what you mean |
|||||||||||
|
|
or formal:
so:
The problem: Set Division is not algebraic division as you know it from dividing numbers, so what you want to achieve is not possible. However |
|||
|
|
f(n)is inO(n^3)thenf(n)/nis inO(n^2). – interjay Sep 23 '12 at 16:53O(n^3)/xwhich would give youO((n^3)/x)and wouldn't simplify. – David Titarenco Sep 23 '12 at 16:56