2

We know that when density(say $f$) exists at the median(say $\theta$) then the median estimator(say $\hat{\theta_n}$) has the following property $$ \sqrt n(\hat{\theta_n}-\theta) \to^d N(0,1/\{4f(\theta)^2\}). $$ Follows from here(this result is classical and can be found in some reference books as well): Central limit theorem for sample medians

Question: Suppose density at median doesn't exist. Equivalently, suppose we have a point mass at the median. Can we still have a similar asymptotic distribution (for $\sqrt n(\hat{\theta_n}-\theta)$) result in this case?

1 Answers1

1

If there is a central interval where the density is $0,$ then the median of even a large number of observations cannot be anything close to normal.

In the simulation below, the population distribution is a 50:50 mixture of $\mathsf{Unif}(0,1)$ and $\mathsf{Unif}(2,3),$ so that the density is $0$ in $(1,2).$

enter image description here

The simulation shows a histogram of 100,000 medians of samples of size $n = 500$ from this population.

set.seed(418)
m = 10^5;  n = 500;  h = numeric(m)
for(i in 1:m) {
  b = rbinom(n, 1, .5)
  h[i] = median(b*runif(100) + (1-b)*runif(100, 2,3)) }
hist(h, prob=T, br = 50, col="skyblue2")

enter image description here

BruceET
  • 47,896
  • 2
  • 28
  • 76