4

In one of my econometrics assignments, we were asked to consider the effect of measurement error in the dependent variable of a simple linear regression.

And I was just wondering, under what circumstances can a confidence interval not be constructed? Obviously, if there's no way to estimate a parameter or the variance then you can't have one, but I was wondering if there was a more formal way to think about this situation.

Stan Shunpike
  • 3,623
  • 2
  • 27
  • 36
  • Since this is somewhat related to an assignment, I suggest you add the `self-study` tag. – Xi'an Jun 01 '16 at 06:25
  • It's not clear whether `self-study` is needed. If the question was only prompted by the assignment, rather than relating to study in some way, it may not be needed. – Glen_b Jun 01 '16 at 10:37

1 Answers1

3

Given a sample of data, it is always possible to construct non-parametric (i.e. confidence intervals which do not assume that the data are related to any particular probability distribution) confidence intervals about properties such as the median and the range of the data. So in the sense of there being CI's for some useful properties of a data sample, these always exist.

However, in the sense of there being CI's for specific properties assuming particular distributions, they may not exist. For example, if a series of data points are generated from a Cauchy distribution, calculating the mean will provide little or no useful information on the parameters of the distribution because the Cauchy distribution's mean is undefined, as is its variance. Hence, you can't calculate the confidence interval for the mean or variance for a sample of random data generated by the Cauchy distribution because they don't exist. The reason that the mean, for example, doesn't exist for the Cauchy distribution is that it is mathematically undefined. This answer explains why.

Essentially if there is a parameter which exists and can be estimated with real numbers, it will be possible to calculate a confidence interval, at least by bootstrapping if all else fails.

Robert de Graaf
  • 1,359
  • 10
  • 14