1

I am learning this MIT course, which gives this formula

$$O(n^2) = n^{1.5}$$

is there a table to calculate this? like $O(n^{1.5})$, $O(n^{5})$ ?

what x takes would have O(x) give $c \cdot n$ where c is a constant,

JJJohn
  • 588
  • 4
  • 11

1 Answers1

3

The formula is wrong. The notation $f = O(g)$ is asymmetric, and has the meaning $f \in O(g)$. For more, check our reference question on Landau notation. Other relevant reference questions are this one and this one.

Yuval Filmus
  • 276,994
  • 27
  • 311
  • 503