Estimation COMP 245 STATISTICS

Total Page:16

File Type:pdf, Size:1020Kb

Estimation COMP 245 STATISTICS Estimation COMP 245 STATISTICS Dr N A Heard Contents 1 Parameter Estimation 2 1.1 Introduction . .2 1.2 Estimators . .2 2 Point Estimates 3 2.1 Introduction . .3 2.2 Bias, Efficiency and Consistency . .4 2.3 Maximum Likelihood Estimation . .5 3 Confidence Intervals 10 3.1 Introduction . 10 3.2 Normal Distribution with Known Variance . 11 3.3 Normal Distribution with Unknown Variance . 11 1 1 Parameter Estimation 1.1 Introduction In statistics we typically analyse a set of data by considering it as a random sample from a larger, underlying population about which we wish to make inference. 1. The chapter on numerical summaries considered various summary sample statistics for describing a particular sample of data. We defined quantities such as the sample mean x¯, and sample variance s2. 2. The chapters on random variables, on the other hand, were concerned with character- ising the underlying population. We defined corresponding population parameters such as the population mean E(X), and population variance Var(X). We noticed a duality between the two sets of definitions of statistics and parameters. In particular, we saw that they were equivalent in the extreme circumstance that our sample exactly represented the entire population (so, for example, the cdf of a new randomly drawn member of the population is precisely the empirical cdf of our sample). Away from this extreme circumstance, the sample statistics can be seen to give approximate values for the corresponding population parameters. We can use them as estimates. For convenient modelling of populations (point 2), we met several simple parameterised probability distributions (e.g. Poi(l), Exp(l), U(a, b), N(m, s2)). There, population parameters such as mean and variance are functions of the distribution parameters. So more generally, we may wish to use the data, or just their sample statistics, to estimate distribution parameters. For a sample of data x = (x1,..., xn), we can consider these observed values as realisations of corresponding random variables X = (X1,..., Xn). If the underlying population (from which the sample has been drawn) is such that the distribution of a single random draw X has probability distribution PXjq(·jq), where q is a generic parameter or vector of parameters, we typically then assume that our n data point random variables X are i.i.d. PXjq(·jq). Note that PXjq(·jq) is the conditional distribution for draws from our model for the population given the true (but unknown) parameter values q. 1.2 Estimators Statistics, Estimators and Estimates Consider a sequence of random variables X = (X1,..., Xn) corresponding to n i.i.d. data samples to be drawn from a population with distribution PX. Let x = (x1,..., xn) be the corresponding realised values we observe for these r.v.s. A statistic is a function T : Rn ! Rp applied to the random variable X. Note that T(X) = ¯ n T(X1,..., Xn) is itself a random variable. For example, X = ∑i=1 Xi/n is a statistic. The corresponding realised value of a statistic T is written t = t(x) (e.g. t = x¯). If a statistic T(X) is to be used to approximate parameters of the distribution PXjq(·jq), we say T is an estimator for those parameters; we call the actual realised value of the estimator for a particular data sample, t(x), an estimate. 2 2 Point Estimates 2.1 Introduction Definition A point estimate is a statistic estimating a single parameter or characteristic of a distribu- tion. For a running example which we will return to, consider a sample of data (x1,..., xn) from an Exponential(l) distribution with unknown l; we might construct a point estimate for either l itself, or perhaps for the mean of the distribution = l−1, or the variance = l−2. Concentrating on the mean of the distribution in this example, a natural estimator of this could be the sample mean, X¯ . But alternatively, we could propose simply the first data point we observe, X1 as our point estimator; or, if the data had been given to us already ordered we might (lazily) suggest the sample median, X(fn+1g/2). How do we quantify which estimator is better? Sampling Distribution Suppose for a moment we actually knew the parameter values q of our population distri- bution PXjq(·jq) (so suppose we know l in our exponential example). Then since our sampled data are considered to be i.i.d. realisations from this distribution (so each Xi ∼ Exp(l) in that example), it follows that any statistic T = T(X1,..., Xn) is also a random variable with some distribution which also only depends on these parameters. If we are able to (approximately) identify this sampling distribution of our statistic, call it PTjq, we can then find the conditional expectation, variance, etc of our statistic. Sometimes PTjq, will have a convenient closed-form expression which we can derive, but in other situations it will not. For those other situations, then for the special case where our statistic T is the sample mean, then provided that our sample size n is large, we use the CLT to give us an approximate distribution for PTjq. Whatever the form of the population distribution PXjq, we know from the CLT that approximately X¯ ∼ N(E[X], Var[X]/n). For our Xi ∼ Exp(l) example, it can be shown that the statistic T = X¯ is a continuous random variable with pdf (nl)ntn−1e−nlt f (tjl) = , t > 0. Tjl (n − 1)! This is actually the pdf of a Gamma(n, nl) random variable, a well known continuous distribution, so T ∼ Gamma(n, nl). a So using the fact that Gamma(a, b) has expectation , here we have b n 1 E(X¯ ) = E (Tjl) = = = E(X). Tjl nl l So the expected value of X¯ is the true population mean. 3 2.2 Bias, Efficiency and Consistency Bias The previous result suggests that X¯ is, at least in one respect, a good statistic for estimating the unknown mean of an exponential distribution. Formally, we define the bias of an estimator T for a parameter q, bias(T) = E[Tjq] − q. If an estimator has zero bias we say that estimator is unbiased. So in our example, X¯ gives an unbiased estimate of q = l−1, the mean of an exponential distribution. [In contrast, the sample median is a biased estimator of the mean of an exponential distri- 5 bution. For example if n = 3, it can be shown that E(X ) = .] (fn+1g/2) 6l In fact, the unbiasedness of X¯ is true for any distribution; the sample mean x¯ will always be an unbiased estimate for the population mean m: ∑n X ∑n E(X ) nm E(X¯ ) = E i=1 i = i=1 i = = m. n n n Similarly, there is an estimator for the population variance s2 which is unbiased, irrespec- tive of the population distribution. Disappointingly, this is not the sample variance n 2 1 ¯ 2 S = ∑(Xi − X) , n i=1 as this has one too many degrees of freedom. (Note that if we knew the population mean m, n 1 2 2 then ∑(Xi − m) would be unbiased for s .) n i=1 Bias-Corrected Sample Variance However, we can instead define the bias-corrected sample variance, 1 n S2 = (X − X¯ )2 n−1 − ∑ i n 1 i=1 which is then always an unbiased estimator of the population variance s2. Warning: Because of it’s usefulness as an unbiased estimate of s2, many statistical text books and 1 n software packages (and indeed your formula sheet for the exam!) refer to s2 = (x − x¯)2 as n−1 − ∑ i n 1 i=1 the sample variance. Efficiency Suppose we have two unbiased estimators for a parameter q, which we will call Qˆ (X) and Q˜ (X). And again suppose we have the corresponding sampling distributions for these estima- tors, PQˆ jq and PQ˜ jq, and so can calculate their means, variances, etc. Then we say Qˆ is more efficient than Q˜ if: ˆ ˜ 1. 8q, VarQˆ jq Q q ≤ VarQ˜ jq Q q ; 4 ˆ ˜ 2. 9q s.t. VarQˆ jq Q q < VarQ˜ jq Q q . That is, the variance of Qˆ is never higher than that of Q˜ , no matter what the true value of q is; and for some value of q, Qˆ has a strictly lower variance than Q˜ . If Qˆ is more efficient than any other possible estimator, we say Qˆ is efficient. Example Suppose we have a population with mean m and variance s2, from which we are to obtain a random sample X1,..., Xn. Consider two estimators for m, Mˆ = X¯ , the sample mean, and M˜ = X1, the first observation in the sample. Well we have seen E(X¯ ) = m always, and certainly E(X1) = m, so both estimators are unbiased. s2 We also know Var(X¯ ) = , and of course Var(X ) = s2, independent of m. So if n ≥ 2, Mˆ n 1 is more efficient than M˜ as an estimator of m. Consistency In the previous example, the worst aspect of the estimate M˜ = X1 is that it does not change, let alone improve, no matter how large a sample n of data is collected. In contrast, the variance of Mˆ = X¯ gets smaller and smaller as n increases. Technically, we say an estimator Qˆ is a consistent estimator for the parameter q if Qˆ con- verges in probability to q. That is, 8e > 0, P(jQˆ − qj > e) ! 0 as n ! ¥. This is hard to demonstrate, but if Qˆ is unbiased we do have: lim Var Qˆ = 0 ) Qˆ is consistent.
Recommended publications
  • Phase Transition Unbiased Estimation in High Dimensional Settings Arxiv
    Phase Transition Unbiased Estimation in High Dimensional Settings St´ephaneGuerrier, Mucyo Karemera, Samuel Orso & Maria-Pia Victoria-Feser Research Center for Statistics, University of Geneva Abstract An important challenge in statistical analysis concerns the control of the finite sample bias of estimators. This problem is magnified in high dimensional settings where the number of variables p diverge with the sample size n. However, it is difficult to establish whether an estimator θ^ of θ0 is unbiased and the asymptotic ^ order of E[θ] − θ0 is commonly used instead. We introduce a new property to assess the bias, called phase transition unbiasedness, which is weaker than unbiasedness but stronger than asymptotic results. An estimator satisfying this property is such ^ ∗ that E[θ] − θ0 2 = 0, for all n greater than a finite sample size n . We propose a phase transition unbiased estimator by matching an initial estimator computed on the sample and on simulated data. It is computed using an algorithm which is shown to converge exponentially fast. The initial estimator is not required to be consistent and thus may be conveniently chosen for computational efficiency or for other properties. We demonstrate the consistency and the limiting distribution of the estimator in high dimension. Finally, we develop new estimators for logistic regression models, with and without random effects, that enjoy additional properties such as robustness to data contamination and to the problem of separability. arXiv:1907.11541v3 [math.ST] 1 Nov 2019 Keywords: Finite sample bias, Iterative bootstrap, Two-step estimators, Indirect inference, Robust estimation, Logistic regression. 1 1. Introduction An important challenge in statistical analysis concerns the control of the (finite sample) bias of estimators.
    [Show full text]
  • Bias, Mean-Square Error, Relative Efficiency
    3 Evaluating the Goodness of an Estimator: Bias, Mean-Square Error, Relative Efficiency Consider a population parameter ✓ for which estimation is desired. For ex- ample, ✓ could be the population mean (traditionally called µ) or the popu- lation variance (traditionally called σ2). Or it might be some other parame- ter of interest such as the population median, population mode, population standard deviation, population minimum, population maximum, population range, population kurtosis, or population skewness. As previously mentioned, we will regard parameters as numerical charac- teristics of the population of interest; as such, a parameter will be a fixed number, albeit unknown. In Stat 252, we will assume that our population has a distribution whose density function depends on the parameter of interest. Most of the examples that we will consider in Stat 252 will involve continuous distributions. Definition 3.1. An estimator ✓ˆ is a statistic (that is, it is a random variable) which after the experiment has been conducted and the data collected will be used to estimate ✓. Since it is true that any statistic can be an estimator, you might ask why we introduce yet another word into our statistical vocabulary. Well, the answer is quite simple, really. When we use the word estimator to describe a particular statistic, we already have a statistical estimation problem in mind. For example, if ✓ is the population mean, then a natural estimator of ✓ is the sample mean. If ✓ is the population variance, then a natural estimator of ✓ is the sample variance. More specifically, suppose that Y1,...,Yn are a random sample from a population whose distribution depends on the parameter ✓.The following estimators occur frequently enough in practice that they have special notations.
    [Show full text]
  • Weak Instruments and Finite-Sample Bias
    7 Weak instruments and finite-sample bias In this chapter, we consider the effect of weak instruments on instrumen- tal variable (IV) analyses. Weak instruments, which were introduced in Sec- tion 4.5.2, are those that do not explain a large proportion of the variation in the exposure, and so the statistical association between the IV and the expo- sure is not strong. This is of particular relevance in Mendelian randomization studies since the associations of genetic variants with exposures of interest are often weak. This chapter focuses on the impact of weak instruments on the bias and coverage of IV estimates. 7.1 Introduction Although IV techniques can be used to give asymptotically unbiased estimates of causal effects in the presence of confounding, these estimates suffer from bias when evaluated in finite samples [Nelson and Startz, 1990]. A weak instrument (or a weak IV) is still a valid IV, in that it satisfies the IV assumptions, and es- timates using the IV with an infinite sample size will be unbiased; but for any finite sample size, the average value of the IV estimator will be biased. This bias, known as weak instrument bias, is towards the observational confounded estimate. Its magnitude depends on the strength of association between the IV and the exposure, which is measured by the F statistic in the regression of the exposure on the IV [Bound et al., 1995]. In this chapter, we assume the context of ‘one-sample’ Mendelian randomization, in which evidence on the genetic variant, exposure, and outcome are taken on the same set of indi- viduals, rather than subsample (Section 8.5.2) or two-sample (Section 9.8.2) Mendelian randomization, in which genetic associations with the exposure and outcome are estimated in different sets of individuals (overlapping sets in subsample, non-overlapping sets in two-sample Mendelian randomization).
    [Show full text]
  • STAT 830 the Basics of Nonparametric Models The
    STAT 830 The basics of nonparametric models The Empirical Distribution Function { EDF The most common interpretation of probability is that the probability of an event is the long run relative frequency of that event when the basic experiment is repeated over and over independently. So, for instance, if X is a random variable then P (X ≤ x) should be the fraction of X values which turn out to be no more than x in a long sequence of trials. In general an empirical probability or expected value is just such a fraction or average computed from the data. To make this precise, suppose we have a sample X1;:::;Xn of iid real valued random variables. Then we make the following definitions: Definition: The empirical distribution function, or EDF, is n 1 X F^ (x) = 1(X ≤ x): n n i i=1 This is a cumulative distribution function. It is an estimate of F , the cdf of the Xs. People also speak of the empirical distribution of the sample: n 1 X P^(A) = 1(X 2 A) n i i=1 ^ This is the probability distribution whose cdf is Fn. ^ Now we consider the qualities of Fn as an estimate, the standard error of the estimate, the estimated standard error, confidence intervals, simultaneous confidence intervals and so on. To begin with we describe the best known summaries of the quality of an estimator: bias, variance, mean squared error and root mean squared error. Bias, variance, MSE and RMSE There are many ways to judge the quality of estimates of a parameter φ; all of them focus on the distribution of the estimation error φ^−φ.
    [Show full text]
  • Bias in Parametric Estimation: Reduction and Useful Side-Effects
    Bias in parametric estimation: reduction and useful side-effects Ioannis Kosmidis Department of Statistical Science, University College London August 30, 2018 Abstract The bias of an estimator is defined as the difference of its expected value from the parameter to be estimated, where the expectation is with respect to the model. Loosely speaking, small bias reflects the desire that if an experiment is repeated in- definitely then the average of all the resultant estimates will be close to the parameter value that is estimated. The current paper is a review of the still-expanding repository of methods that have been developed to reduce bias in the estimation of parametric models. The review provides a unifying framework where all those methods are seen as attempts to approximate the solution of a simple estimating equation. Of partic- ular focus is the maximum likelihood estimator, which despite being asymptotically unbiased under the usual regularity conditions, has finite-sample bias that can re- sult in significant loss of performance of standard inferential procedures. An informal comparison of the methods is made revealing some useful practical side-effects in the estimation of popular models in practice including: i) shrinkage of the estimators in binomial and multinomial regression models that guarantees finiteness even in cases of data separation where the maximum likelihood estimator is infinite, and ii) inferential benefits for models that require the estimation of dispersion or precision parameters. Keywords: jackknife/bootstrap, indirect inference, penalized likelihood, infinite es- timates, separation in models with categorical responses 1 Impact of bias in estimation By its definition, bias necessarily depends on how the model is written in terms of its parameters and this dependence makes it not a strong statistical principle in terms of evaluating the performance of estimators; for example, unbiasedness of the familiar sample variance S2 as an estimator of σ2 does not deliver an unbiased estimator of σ itself.
    [Show full text]
  • Nearly Weighted Risk Minimal Unbiased Estimation✩ ∗ Ulrich K
    Journal of Econometrics 209 (2019) 18–34 Contents lists available at ScienceDirect Journal of Econometrics journal homepage: www.elsevier.com/locate/jeconom Nearly weighted risk minimal unbiased estimationI ∗ Ulrich K. Müller a, , Yulong Wang b a Economics Department, Princeton University, United States b Economics Department, Syracuse University, United States article info a b s t r a c t Article history: Consider a small-sample parametric estimation problem, such as the estimation of the Received 26 July 2017 coefficient in a Gaussian AR(1). We develop a numerical algorithm that determines an Received in revised form 7 August 2018 estimator that is nearly (mean or median) unbiased, and among all such estimators, comes Accepted 27 November 2018 close to minimizing a weighted average risk criterion. We also apply our generic approach Available online 18 December 2018 to the median unbiased estimation of the degree of time variation in a Gaussian local-level JEL classification: model, and to a quantile unbiased point forecast for a Gaussian AR(1) process. C13, C22 ' 2018 Elsevier B.V. All rights reserved. Keywords: Mean bias Median bias Autoregression Quantile unbiased forecast 1. Introduction Competing estimators are typically evaluated by their bias and risk properties, such as their mean bias and mean-squared error, or their median bias. Often estimators have no known small sample optimality. What is more, if the estimation problem does not reduce to a Gaussian shift experiment even asymptotically, then in many cases, no optimality
    [Show full text]
  • Chapter 4 Parameter Estimation
    Chapter 4 Parameter Estimation Thus far we have concerned ourselves primarily with probability theory: what events may occur with what probabilities, given a model family and choices for the parameters. This is useful only in the case where we know the precise model family and parameter values for the situation of interest. But this is the exception, not the rule, for both scientific inquiry and human learning & inference. Most of the time, we are in the situation of processing data whose generative source we are uncertain about. In Chapter 2 we briefly covered elemen- tary density estimation, using relative-frequency estimation, histograms and kernel density estimation. In this chapter we delve more deeply into the theory of probability density es- timation, focusing on inference within parametric families of probability distributions (see discussion in Section 2.11.2). We start with some important properties of estimators, then turn to basic frequentist parameter estimation (maximum-likelihood estimation and correc- tions for bias), and finally basic Bayesian parameter estimation. 4.1 Introduction Consider the situation of the first exposure of a native speaker of American English to an English variety with which she has no experience (e.g., Singaporean English), and the problem of inferring the probability of use of active versus passive voice in this variety with a simple transitive verb such as hit: (1) The ball hit the window. (Active) (2) The window was hit by the ball. (Passive) There is ample evidence that this probability is contingent
    [Show full text]
  • Ch. 2 Estimators
    Chapter Two Estimators 2.1 Introduction Properties of estimators are divided into two categories; small sample and large (or infinite) sample. These properties are defined below, along with comments and criticisms. Four estimators are presented as examples to compare and determine if there is a "best" estimator. 2.2 Finite Sample Properties The first property deals with the mean location of the distribution of the estimator. P.1 Biasedness - The bias of on estimator is defined as: Bias(!ˆ ) = E(!ˆ ) - θ, where !ˆ is an estimator of θ, an unknown population parameter. If E(!ˆ ) = θ, then the estimator is unbiased. If E(!ˆ ) ! θ then the estimator has either a positive or negative bias. That is, on average the estimator tends to over (or under) estimate the population parameter. A second property deals with the variance of the distribution of the estimator. Efficiency is a property usually reserved for unbiased estimators. ˆ ˆ 1 ˆ P.2 Efficiency - Let ! 1 and ! 2 be unbiased estimators of θ with equal sample sizes . Then, ! 1 ˆ ˆ ˆ is a more efficient estimator than ! 2 if var(! 1) < var(! 2 ). Restricting the definition of efficiency to unbiased estimators, excludes biased estimators with smaller variances. For example, an estimator that always equals a single number (or a constant) has a variance equal to zero. This type of estimator could have a very large bias, but will always have the smallest variance possible. Similarly an estimator that multiplies the sample mean by [n/(n+1)] will underestimate the population mean but have a smaller variance.
    [Show full text]
  • Estimators, Bias and Variance
    Deep Learning Srihari Machine Learning Basics: Estimators, Bias and Variance Sargur N. Srihari [email protected] This is part of lecture slides on Deep Learning: http://www.cedar.buffalo.edu/~srihari/CSE676 1 Deep Learning Topics in Basics of ML Srihari 1. Learning Algorithms 2. Capacity, Overfitting and Underfitting 3. Hyperparameters and Validation Sets 4. Estimators, Bias and Variance 5. Maximum Likelihood Estimation 6. Bayesian Statistics 7. Supervised Learning Algorithms 8. Unsupervised Learning Algorithms 9. Stochastic Gradient Descent 10. Building a Machine Learning Algorithm 11. Challenges Motivating Deep Learning 2 Deep Learning Srihari Topics in Estimators, Bias, Variance 0. Statistical tools useful for generalization 1. Point estimation 2. Bias 3. Variance and Standard Error 4. Bias-Variance tradeoff to minimize MSE 5. Consistency 3 Deep Learning Srihari Statistics provides tools for ML • The field of statistics provides many tools to achieve the ML goal of solving a task not only on the training set but also to generalize • Foundational concepts such as – Parameter estimation – Bias – Variance • They characterize notions of generalization, over- and under-fitting 4 Deep Learning Srihari Point Estimation • Point Estimation is the attempt to provide the single best prediction of some quantity of interest – Quantity of interest can be: • A single parameter • A vector of parameters – E.g., weights in linear regression • A whole function 5 Deep Learning Srihari Point estimator or Statistic • To distinguish estimates of parameters
    [Show full text]
  • Lecture 9 Estimators
    Lecture 9: Estimators 1 of 13 Course: Mathematical Statistics Term: Fall 2018 Instructor: Gordan Žitkovi´c Lecture 9 Estimators We defined an estimator as any function of the data which is not allowed to depend on the value of the unknown parameters. Such a broad definition allows for very silly examples. To rule out bad estimators and to find the ones that will provide us with the most “bang for the buck”, we need to discuss, first, what it means for an estimator to be “good”. There is no one answer to this question, and a large part of entire discipline (decision theory) tries to answer it. Some desirable properties of estimators are, however, hard to argue with, so we start from those. 9.1 Unbiased estimators Definition 9.1.1. We say that an estimator qˆ is unbiased for the pa- rameter q if E[qˆ] = q. We also define the bias E[qˆ] − q of qˆ, and denote it by bias(qˆ). In words, qˆ is unbiased if we do not expect qˆ to be systematically above or systematically below q. Clearly, in order to talk about the bias of an estimator, we need to specify what that estimator is trying to estimate. We will see below that same estimator can be unbiased as an estimator for one parameter, but biased when used to estimate another parameter. Another important question that needs to be asked about Definition 9.1.1 above is: what does it mean to take the expected value of qˆ, when we do not know what its distribution is.
    [Show full text]
  • A Simulation Study of the Robustness of the Least Median of Squares Estimator of Slope in a Regression Through the Origin Model
    A SIMULATION STUDY OF THE ROBUSTNESS OF THE LEAST MEDIAN OF SQUARES ESTIMATOR OF SLOPE IN A REGRESSION THROUGH THE ORIGIN MODEL by THILANKA DILRUWANI PARANAGAMA B.Sc., University of Colombo, Sri Lanka, 2005 A REPORT submitted in partial fulfillment of the requirements for the degree MASTER OF SCIENCE Department of Statistics College of Arts and Sciences KANSAS STATE UNIVERSITY Manhattan, Kansas 2010 Approved by: Major Professor Dr. Paul Nelson Abstract The principle of least squares applied to regression models estimates parameters by minimizing the mean of squared residuals. Least squares estimators are optimal under normality but can perform poorly in the presence of outliers. This well known lack of robustness motivated the development of alternatives, such as least median of squares estimators obtained by minimizing the median of squared residuals. This report uses simulation to examine and compare the robustness of least median of squares estimators and least squares estimators of the slope of a regression line through the origin in terms of bias and mean squared error in a variety of conditions containing outliers created by using mixtures of normal and heavy tailed distributions. It is found that least median of squares estimation is almost as good as least squares estimation under normality and can be much better in the presence of outliers. Table of Contents List of Figures ................................................................................................................................ iv List of Tables .................................................................................................................................
    [Show full text]
  • 5 Decision Theory: Basic Concepts
    5 Decision Theory: Basic Concepts Point estimation of an unknown parameter is generally considered the most basic inference problem. Speaking generically, if θ is some unknown parameter taking values in a suitable parameter space Θ, then a point estimate is an educated guess at the true value of θ. Now, of course, we do not just guess the true value of θ without some information. Information comes from data; some information may also come from expert opinion separate from data. In any case, a point estimate is a function of the available sample data. To start with, we allow any function of the data as a possible point estimate. Theory of inference is used to separate the good estimates from the not so good or bad estimates. As usual, we will start with an example to help us understand the general definitions. iid Example 5.1. Suppose X1, ··· , Xn ∼ Poi(λ),λ > 0. Suppose we want to estimate the parameter λ. Now, of course, λ = Eλ(X1), i.e., λ is the population mean. So, just ¯ X1+···+Xn instinctively, we may want to estimate λ by the sample mean X = n ; and, indeed, X¯ is a possible point estimator of λ. While λ takes values in Θ = (0, ∞), the estimator X¯ takes values in A = [0, ∞); X¯ can be equal to zero! So, the set of possible values of the parameter and the set of possible values of an estimator need not be identical. We must allow them to be different sets, in general. Now, X¯ is certainly not the only possible estimator of λ.
    [Show full text]