If $f \in O(h) $, does that mean there will always be some $c$, such that $f(n) \leq ch(n) $ is always true for all $n \geq 1$? That is, assuming $f$ and $h$ are always $>0$.
2026-04-13 14:11:57.1776089517
Big O notation and Proofs
108 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
No. The big O notation means that, for sufficiently large values of $x$, $f(x)$ and $g(x)$ behaves similar up to a constant, that is:
$$ f=O(h) \Longleftrightarrow \exists M\in\mathbb R^* : \lim_{x\to\infty} f(x) = M \lim_{x\to\infty} g(x) \Longleftrightarrow\\ \Longleftrightarrow M\in\mathbb R^* \mbox{ and } x_0\in R^+: f(x) \leq Mg(x) \; \forall x\geq x_0 . $$