A common standalone FPSC theory question is simply "What are the functions/uses of asymptotic notation?" — these are the concrete jobs it does for algorithm analysis, beyond the one-line definition above:
Exam angle: if a question asks "what is the significance/function/purpose of asymptotic notation" as a short-note or MCQ-justification item, points 1–3 (hardware independence, comparability, scalability prediction) are the core answer FPSC examiners look for; points 4–8 are good supporting detail for an 8-mark detailed-note version of the same question.
| Notation | Meaning | Bound Type |
|---|---|---|
| O (Big-O) | Upper bound — algorithm runs no slower than this | Worst-case ceiling |
| Omega | Lower bound — algorithm runs no faster than this | Best-case floor |
| Theta | Tight bound — algorithm's growth is exactly this rate (both O and Omega coincide) | Average/exact growth |
These formal properties let you manipulate and combine O/Ω/Θ expressions algebraically — both a common standalone FPSC theory question ("state the properties of Big-O notation") and the justification for shortcuts like "just add the biggest term" used throughout this page.
| Property | Statement | Example |
|---|---|---|
| Reflexivity | $f(n) = O(f(n))$ — and likewise for Ω, Θ | $n^2 = O(n^2)$ trivially (c=1, n₀=1) |
| Transitivity | $f=O(g)$ and $g=O(h) \implies f=O(h)$ (same for Ω, Θ) | $n=O(n^2)$ and $n^2=O(n^3) \implies n=O(n^3)$ |
| Symmetry (Θ only) | $f=\Theta(g) \iff g=\Theta(f)$ | Holds ONLY for Θ — not for O or Ω alone |
| Transpose symmetry | $f=O(g) \iff g=\Omega(f)$ | Flips an upper-bound statement into a lower-bound one about the reversed pair |
| Sum rule | $f_1=O(g_1), f_2=O(g_2) \implies f_1+f_2 = O(\max(g_1,g_2))$ | $O(n) + O(n^2) = O(n^2)$ — keep only the larger term |
| Product rule | $f_1=O(g_1), f_2=O(g_2) \implies f_1\cdot f_2 = O(g_1\cdot g_2)$ | $O(n) \times O(n) = O(n^2)$ — why nested loops multiply |
| Constant multiple rule | $O(k\cdot f(n)) = O(f(n))$ for any constant $k>0$ | $O(5n) = O(n)$ — constants always drop out |
Worked mini-example (transpose symmetry in action): earlier on this page we showed 5n+50 is NOT O(log₁₀n), and concluded instead that log₁₀n = O(5n+50). Transpose symmetry says this is the same fact stated two ways: since f(n)=5n+50 is NOT O(g(n))=O(log₁₀n), by the growth-rate hierarchy the true relationship is f(n) = Ω(g(n)) — and g(n) = O(f(n)) follows directly.