How can I calculate the confidence interval for parameter $\alpha$ of exponential distribution ?
I think I can use test-t. Knowing that: $$mean = {1\over\alpha}$$
I found that : $${1\over {\bar X + \frac{S}{\sqrt{n}}\cdot t_{\alpha/2,n - 1}}}<\alpha<{1\over {\bar X - \frac{S}{\sqrt{n}}\cdot t_{\alpha/2,n - 1}}}$$
Is this right? In general, can I use test-t for determining the confidence interval of an exponential distribution ?
If not, is there any other possibility to do this ?
An alternative method is to use a Bayesian approach (in which case, the interval estimate calculated is not a "confidence interval" but a "credible interval"). The idea is to treat the rate parameter $\lambda$ as a random variable. For observations $$X_i \sim \operatorname{Exponential}(\lambda)$$ the conjugate prior is Gamma distributed; i.e. the choice $$\lambda \sim \operatorname{Gamma}(a,b)$$ gives a posterior distribution for $\lambda$ that is also gamma: that is to say, $$\lambda \mid \boldsymbol x \sim \operatorname{Gamma}(a + n, b + n \bar x)$$ where $\boldsymbol x = (x_1, x_2, \ldots, x_n)$ is the sample (all distributions are parametrized by rate). Specifically, then, given the prior parameters $a, b$ that inform your "belief" about $\lambda$, and the observed sample $\boldsymbol x$, the posterior distribution which takes into account the data you observed, has the density function $$f(\lambda \mid \boldsymbol x) = \frac{(b + n \bar x)^{a+n} \lambda^{a+n-1} e^{-(b + n \bar x)\lambda}}{\Gamma(a + n)}.$$ Hence, we can construct a $100(1-\alpha)\%$ credible set in a number of ways. One way is to find the interval for $\lambda$ such that the tails of the posterior distribution contain $\alpha/2$ probability: that is, we need to find $\lambda_L < \lambda_U$ such that $$\int_{\lambda = 0}^{\lambda_L} f(\lambda \mid \boldsymbol x) \, d\lambda = \int_{\lambda_U}^\infty f(\lambda \mid \boldsymbol x) \, d\lambda = \frac{\alpha}{2}.$$ Another is to find the interval with highest posterior density (HPD) such that $f(\lambda_L \mid \boldsymbol x) = f(\lambda_U \mid \boldsymbol x)$ and $$\int_{\lambda = \lambda_L}^{\lambda_U} f(\lambda \mid \boldsymbol x) \, d\lambda = 1-\alpha.$$ As you can see, interval estimates are not unique and can be constructed in different ways and with different approaches. The advantage of the Bayesian method is that the real thing of interest you get is the posterior (and that this posterior is easily updated with new data). The downside is that you might not always know what to choose for the prior parameters.