1
|
Estimation theory is a branch of statistics and signal processing that deals with estimating the values of parameters based on measured/empirical data. The parameters describe the physical scenario or object that answers a question posed by the estimator.
For example, it is desired to estimate the proportion of a population of voters who will vote for a particular candidate. That proportion is the unobservable parameter; the estimate is based on a small random sample of voters.
Or, for example, in radar the goal is to estimate the location of objects (airplanes, boats, etc.) by analyzing the received echo and a possible question to be posed is "where are the airplanes?" To answer where the airplanes are, it is necessary to estimate the distance the airplanes are at from the radar station, which can provide an absolute location if the absolute location of the radar station is known.
In estimation theory, it is assumed that the desired information is embedded into a noisy signal. Noise adds uncertainty and if there was no uncertainty then there would be no need for estimation.
Contents |
There are numerous fields that require the use of estimation theory. Some of these fields include (but by no means limited to):
The measured data is likely to be subject to noise or uncertainty and it is through statistical probability that optimal solutions are sought to extract as much information from the data as possible.
The entire purpose of estimation theory is to arrive at an estimator, and preferably an implementable one that could actually be used. The estimator takes the measured data as input and produces an estimate of the parameters.
It is also preferable to derive an estimator that exhibits optimality. An optimal estimator would indicate that all available information in the measured data has been extracted, for if there was unused information in the data then the estimator would not be optimal.
These are the general steps to arrive at an estimator:
After arriving at an estimator, real data might show that the model used to derive the estimator is incorrect, which may require repeating these steps to find a new estimator. A non-implementable or infeasible estimator may need to be scrapped and the process start anew.
In summary, the estimator estimates the parameters of a physical model based on measured data.
To build a model, several statistical "ingredients" need to be known. These are needed to ensure the estimator has some mathematical tractability instead of being based on "good feel".
The first is a set of statistical samples taken from a random vector (RV) of size . Put into a vector,
Secondly, we have the corresponding parameters
which need to be established with their probability density function (pdf) or probability mass function (pmf)
It is also possible for the parameters themselves to have a probability distribution (e.g., Bayesian statistics). It is then necessary to define the epistemic probability
After the model is formed, the goal is to estimate the parameters, commonly denoted , where the "hat" indicates the estimate.
One common estimator is the minimum mean squared error (MMSE) estimator, which utilizes the error between the estimated parameters and the actual value of the parameters
as the basis for optimality. This error term is then squared and minimized for the MMSE estimator.
Commonly-used estimators, and topics related to them:
Consider a received discrete signal, , of independent samples that consists of a DC gain with Additive white Gaussian noise with known variance (i.e., ). Since the variance is known then the only unknown parameter is .
The model for the signal is then
Two possible (of many) estimators are:
Both of these estimators have a mean of , which can be shown through taking the expected value of each estimator
and
\mathrm{E}\left[ \hat{A}_2 \right] = \mathrm{E}\left[ \frac{1}{N} \sum_{n=0}^{N-1} x[n] \right] = \frac{1}{N} \left[ \sum_{n=0}^{N-1} \mathrm{E}\left[ x[n] \right] \right] = \frac{1}{N} \left[ N A \right] = A
At this point, these two estimators would appear to perform the same. However, the difference between them becomes apparent when comparing the variances.
and
\mathrm{var} \left( \hat{A}_2 \right) = \mathrm{var} \left( \frac{1}{N} \sum_{n=0}^{N-1} x[n] \right) \overset{independence}{=} \frac{1}{N^2} \left[ \sum_{n=0}^{N-1} \mathrm{var} (x[n]) \right] = \frac{1}{N^2} \left[ N \sigma^2 \right] = \frac{\sigma^2}{N}
It would seem that the sample mean is a better estimator since, as , the variance goes to zero.
Continuing the example using the maximum likelihood estimator, the probability density function (pdf) of the noise for one sample is
and the probability of becomes ( can be thought of a )
By independence, the probability of becomes
p(\mathbf{x}; A) = \prod_{n=0}^{N-1} p(x[n]; A) = \frac{1}{\left(\sigma \sqrt{2\pi}\right)^N} \exp\left(- \frac{1}{2 \sigma^2} \sum_{n=0}^{N-1}(x[n] - A)^2 \right)
Taking the natural logarithm of the pdf
\ln p(\mathbf{x}; A) = -N \ln \left(\sigma \sqrt{2\pi}\right) - \frac{1}{2 \sigma^2} \sum_{n=0}^{N-1}(x[n] - A)^2
and the maximum likelihood estimator is
Taking the first derivative of the log-likelihood function
\frac{\partial}{\partial A} \ln p(\mathbf{x}; A) = \frac{1}{\sigma^2} \left[ \sum_{n=0}^{N-1}(x[n] - A) \right] = \frac{1}{\sigma^2} \left[ \sum_{n=0}^{N-1}x[n] - N A \right]
and setting it to zero
0 = \frac{1}{\sigma^2} \left[ \sum_{n=0}^{N-1}x[n] - N A \right] = \sum_{n=0}^{N-1}x[n] - N A
This results in the maximum likelihood estimator
\hat{A} = \frac{1}{N} \sum_{n=0}^{N-1}x[n]
which is simply the sample mean. From this example, it was found that the sample mean is the maximum likelihood estimator for samples of AWGN with a fixed, unknown DC gain.
To find the Cramér-Rao lower bounds (CRLB) of the sample mean estimator, it is first necessary to find the Fisher information number
\mathcal{I}(A) = \mathrm{E} \left(
\left[
\frac{\partial}{\partial\theta} \ln p(\mathbf{x}; A)
\right]^2
\right) = -\mathrm{E} \left[
\frac{\partial^2}{\partial\theta^2} \ln p(\mathbf{x}; A)
\right]
and copying from above
\frac{\partial}{\partial A} \ln p(\mathbf{x}; A) = \frac{1}{\sigma^2} \left[ \sum_{n=0}^{N-1}x[n] - N A \right]
Taking the second derivative
\frac{\partial^2}{\partial A^2} \ln p(\mathbf{x}; A) = \frac{1}{\sigma^2} (- N) = \frac{-N}{\sigma^2}
and finding the negative expected value is trivial since it is now a deterministic constant
\frac{\partial^2}{\partial A^2} \ln p(\mathbf{x}; A)
\right] = \frac{N}{\sigma^2}
Finally, putting the Fisher information into
\mathrm{var}\left( \hat{A} \right) \geq \frac{1}{\mathcal{I}}
results in
\mathrm{var}\left( \hat{A} \right) \geq \frac{\sigma^2}{N}
Comparing this to the variance of the sample mean (determined previously) shows that the sample mean is equal to the Cramér-Rao lower bounds for all values of and . The sample mean is the minimum variance unbiased estimator (MVUE) in addition to being the maximum likelihood estimator.
This example of DC gain + WGN is a recurring example in Kay\'s Fundamentals of Statistical Signal Processing.
| Digital signal processing |
|---|
| Theory — Discrete frequency | Nyquist–Shannon sampling theorem | estimation theory | detection theory |
| Sub-fields — audio signal processing | control engineering | digital image processing | speech processing | statistical signal processing |
| Techniques — Discrete Fourier transform (DFT) | Discrete-time Fourier transform (DTFT) | Impulse invariance | bilinear transform | Z-transform, advanced Z-transform |
| Sampling — oversampling | undersampling | downsampling | upsampling | aliasing | anti-aliasing filter | sampling rate | Nyquist rate/frequency |
This article is licensed under the GNU Free Documentation License. It uses material from Wikipedia