The usual $O$ notation was that $f(x) = O(g(x))$ meant that there exists a positive real number $C$ such that $|f(x)| \le C g(x)$ for sufficiently large $x$. However I came across the notation $O_r(\log x)$, where $r$ was a natural number. Having a subscript, what does it mean? I have tried to find if there is an explanation of this in the Wikipedia page about the Big $O$ notation but there was no such explanation. Would you please help me understand what $O_r(\log x)$ means?
2026-04-08 09:29:16.1775640556
About the $O$ notation with a subscript
1k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in NOTATION
- Symbol for assignment of a truth-value?
- Does approximation usually exclude equality?
- Is division inherently the last operation when using fraction notation or is the order of operation always PEMDAS?
- Question about notation $S^c$
- strange partial integration
- What does Kx mean in this equation? [in Carnap or Russell and Whitehead's logical notation]
- Need help with notation. Is this lower dot an operation?
- What does this "\" mathematics symbol mean?
- Why a set or vector start counting from a negative or zero index?
- How to express a sentence having two for all?
Related Questions in ASYMPTOTICS
- Justify an approximation of $\sum_{n=1}^\infty G_n/\binom{\frac{n}{2}+\frac{1}{2}}{\frac{n}{2}}$, where $G_n$ denotes the Gregory coefficients
- How to find the asymptotic behaviour of $(y'')^2=y'+y$ as $x$ tends to $\infty$?
- Correct way to prove Big O statement
- Proving big theta notation?
- Asymptotics for partial sum of product of binomial coefficients
- Little oh notation
- Recurrence Relation for Towers of Hanoi
- proving sigma = BigTheta (BigΘ)
- What's wrong with the boundary condition of this $1$st order ODE?
- Every linearly-ordered real-parametrized family of asymptotic classes is nowhere dense?
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
I can make no promises without a source for this notation, but I most frequently see this notation to mean the constant $C$ guaranteed by the big oh is allowed to depend on $r$. It can be useful to keep track of this to ensure you don't accidentally have two constants which depend on each other!
For a concrete example, in a power series expansion about the point $z_0$, we might have (when $|z-z_0| < r$):
$$f(z) = \sum_{k=0}^n a_k (z-z_0)^k + O_{n,r}(|z|^{n+1})$$
This means the constant depends both the degree of the approximation and the desired radius of approximation (which, of course, must be less than the radius of convergence).
For a more detailed explanation of this notation, see the second PDF at this link. It is a set of notes on asymptotic notation by A.J. Hildebrand, which I have always found extremely well written and useful.
Edit: For convenience, here is an example given in the linked notes. I have copied it almost verbatim.
For any $0 < r < 1$, we have
$$\log (1+z) = O_r(|z|)~~~~~~(|z| < r)$$
Notice, for $|z| < 1$, we have:
$$\log(1+z) = \sum_{n=1}^\infty \frac{(-1)^{n+1}}{n} z^n$$
Thus, we have
$$ |\log(1+z)| \leq \sum_{n=1}^\infty \frac{1}{n}|z^n| \leq \sum_{n=1}^\infty |z|^n = \frac{1}{1-|z|}|z| $$
Now if we restrict to $|z|<r$, we can get a constant which does not depend on $|z|$, and thus is suitable for Big-oh:
$$\frac{1}{1-|z|}|z| \leq (1-r)^{-1} |z|$$
Thus we see that the constant in the Big-oh depends on $r$.
I hope this helps ^_^