Confidence interval for a density function parameter

729 Views Asked by At

I am trying to solve this problem: Given $X_1, \ldots, X_n$ a random sample of a population of random variables with p.d.f. $f(x, \theta) = e^{-(x-\theta)} I(x)_{x\geq\theta}$, find a confidence interval of level $1-\alpha$ for $\theta$.

Following a hint, I first looked into the distribution of $Y = \text{min}(X_i) - \theta$, which I found to be Exponential($n$).

Taking into account that the indicator function in the pdf limits to values of $x$ greater than $\theta$, and using the exponential's cdf. and some bounds, I got that the confidence interval should be $I_{1-\alpha}(X_1, \ldots, X_n) = \left[0, \frac{\ln(\alpha)}{n}\right]$.

Would that be correct? I am not sure I am using the hint correctly. If it is wrong, what else could I try?

Thanks a lot.

1

There are 1 best solutions below

0
On

I think you were on the right track initially, but may have confused the arithmetic of the exponential distribution

If $Y \sim \text{Exp}(n)$ then $\mathbb{P}(Y \le y)= 1-e^{-ny}$ so

  • there is a probability $\alpha$ that $0 \le Y \le -\frac1n \log_e(1-\alpha)$,
  • and also a probability $\alpha$ that $-\frac1n \log_e(\frac{1+\alpha}{2}) \le Y \le -\frac1n \log_e(\frac{1-\alpha}{2})$

This gives confidence intervals for $\theta$

  • $[\min(X_i) + \frac1n \log_e(1-\alpha), \min(X_i)]$
  • or $[\min(X_i) + \frac1n \log_e(\frac{1-\alpha}{2}), \min(X_i)+\frac1n \log_e(\frac{1+\alpha}{2})]$

The first of these alternatives might be seen as "one-sided" but is narrower than the second which might be seen as "two-sided". As an example, suppose $\alpha=95\%$, $n=2$, $X_1=5$ and $X_2=6.2$ then this would give confidence intervals for $\theta$ of about $[3.502,5]$ or $[3.156,4.987]$