We know that, if $X$ is a continuous random variable with a strictly increasing distribution function or DF $F(x)$ then, its $p$th quantile is unique. But if the distribution function is non-decreasing then the $p$th quantile may not be unique anymore. The same could happen if the random variable is a discrete type random variable. So what should be taken as its estimate in such cases?
2026-03-25 06:21:43.1774419703
Loss of uniqueness of quantiles
712 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in STATISTICS
- Given is $2$ dimensional random variable $(X,Y)$ with table. Determine the correlation between $X$ and $Y$
- Statistics based on empirical distribution
- Given $U,V \sim R(0,1)$. Determine covariance between $X = UV$ and $V$
- Fisher information of sufficient statistic
- Solving Equation with Euler's Number
- derive the expectation of exponential function $e^{-\left\Vert \mathbf{x} - V\mathbf{x}+\mathbf{a}\right\Vert^2}$ or its upper bound
- Determine the marginal distributions of $(T_1, T_2)$
- KL divergence between two multivariate Bernoulli distribution
- Given random variables $(T_1,T_2)$. Show that $T_1$ and $T_2$ are independent and exponentially distributed if..
- Probability of tossing marbles,covariance
Related Questions in QUANTILE
- Explicitly representing a random variable such as $ X(\omega):=\frac{1}{\lambda} \ln \frac{1}{1-\omega}$, which is exponential
- Where can I find examples of Skorokhod representations?
- Quantile function for binomial distribution?
- Asymptotic behaviour of the process $U_n=U_{n-1}+s(U_{n-1})X_n$, where $X_n$ is iid
- Inequality involving quantiles
- Uniform transformation of a quantile
- Implications on the cdf of $\epsilon_1-\epsilon_2$ of conditions on the cdf's of $\epsilon_1, \epsilon_2$
- Pushforward-change-of-variable with quantile function
- Choosing an interval of the CDF to find each quartile
- Prove that $\min_{\mu}\sum_{i=1}^n|y_i-\mu|=\text{median}\{y_1,\cdots,y_n\}$
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?
For the cases you ask about, there are about a dozen slightly different definitions of exact quantile values. Each one is based on somewhat different assumptions and goals. Here are some practical illustrations using R statistical software.
(a) Discrete distribution. Suppose you have a sample of size 10 from a Binomial distribution. Your null hypothesis is $H_o: p \ge .5$ vs $H_a: p < .5.$ Then we will reject $H_0$ if the number $X$ out of $n = 10$ trials is sufficiently small. If we want to test at the 5% level of significance we need to find the critical value $c$ such that $P(X \le cc\,|\, p = .5) = 0.05.$
Because the 'null distribution' is $X \sim \mathsf{Binom}(n,.5),$ we seek quantile 0.05 of that distribution. In R statistical software (where
pbinomis a binomial CDF andqbinom, its inverse, is a binomial quantile function). we have the following:This means that $c = 2$ is a candidate for the critical value. But upon checking exact binomial probabilities we find that using $c = 2$ gives a test at level about 5.47%, whereas using $c = 1$ gives a test at about level 1.02%. There can be no (nonrandomized) test exactly level 5%.
Here is a plot of the distribution $\mathsf{BINOM}(n = 10, p= .5).$ The sum of the heights of the two bars to the left of the vertical dotted line is 0.0107.
For this particular example, the quantile function in R is defined to give a significance level that is somewhat too large; using the next smaller integer gives a test at the largest available level less than 5%.
(b) Quantiles for data. Suppose we have $n = 14$ observations from a continuous distribution. In real life, we have to round to some number of decimal places and rounding can produce ties. The sample considered to produce a discrete 'empirical' distribution with probability $1/14$ at each datapoint.
Specifically, if we sample $n=14$ observations at random from $\mathsf{Norm}(\mu = 100, \sigma = 10),$ and round to the nearest integer, then we might get the sample below:
The function
quantilegives the minimum, lower quantile, median, upper quantile, and maximum. The default version of thequantile functionin R gives the following results:Because $n = 14$ is even, the median is taken to be 100, halfway between the middle two observations at 99 and 101.
Various assumptions and compromises can be made to define the lower and upper quantiles. (The objective of one method may be to describe the sample; another may seek to estimate population quartiles.) Results in in any one statistical software program may or may not exactly match the definition given in your textbook.
Minitab and SPSS software give slightly different values than the default values from R. These are obtainable in R by using the parameter
type=6in the function `quantile:A couple of other versions used elsewhere are shown below:
While these differences among definitions are noticeable for small samples, they are mainly unimportant for large samples, and it is for large sample that quantiles are most used as descriptive statistics and as estimates.
Notes: (1) You can see the exact formulas used for the various
typesof quantiles (and rationales for some of them) by looking at the Documentation for the quantile function in R. (By default, R usestype=7, unless a diffreent type is specified.)(2) If you are taking a statistics course, you should use the quantile rules given in your text or class notes.