Q. 1. Consider the observations
x[n] = A + w[n] n = 0, 1, . . . , N - 1
...
Oct 7, 2024
Q. 1. Consider the observations
x[n] = A + w[n] n = 0, 1, . . . , N - 1
where A is an unknown constant and w[n] is a sequence of independent, identi- cally distributed (IID) Gaussian random variables having a zero mean and a known variance σ 2 .
(a) To estimate the unknown parameter θ 1 = A, the following estimator
N-1
is proposed. Find a0 , . . . , aN -1 so that the estimator is unbiased and the vari- ance is minimized. Show all the detailed steps involved.
(b) By using the optimal values of an’s obtained in part (a), find the variance of
θ(ˆ)1 , denoted by var (θ(ˆ)1 ). What will happen to var (θ(ˆ)1 ) as N → ∞?
(c) To estimate the unknown parameter θ2 = A2 , the following estimator
is proposed. Is the estimator θ(ˆ)2 unbiased? Is θ(ˆ)2 asymptotically unbiased?
Solution by Steps
step 1
To ensure that the estimator θ^1=∑n=0N−1anx[n] is unbiased, we require E[θ^1]=A. Since x[n]=A+w[n], we have:
E[θ^1]=n=0∑N−1anE[x[n]]=n=0∑N−1an(A+E[w[n]])=An=0∑N−1an
Thus, we need ∑n=0N−1an=1
step 2
To minimize the variance of θ^1, we calculate var(θ^1):
var(θ^1)=var(n=0∑N−1anw[n])=n=0∑N−1an2var(w[n])=σ2n=0∑N−1an2
We need to minimize ∑n=0N−1an2 subject to ∑n=0N−1an=1
step 3
Using the method of Lagrange multipliers, we set up the function:
L(a0,a1,…,aN−1,λ)=n=0∑N−1an2−λ(n=0∑N−1an−1)
Taking partial derivatives and setting them to zero gives:
∂an∂L=2an−λ=0⟹an=2λ
Substituting into the constraint ∑n=0N−1an=1 leads to N⋅2λ=1⟹λ=N2 and thus an=N1
step 4
Substituting an=N1 into the variance expression:
var(θ^1)=σ2n=0∑N−1(N1)2=σ2⋅N2N=Nσ2
As N→∞, var(θ^1)→0
step 5
For θ^2=(N1∑n=0N−1x[n])2, we find its expected value:
E[θ^2]=E(N1n=0∑N−1(A+w[n]))2=E(A+N1n=0∑N−1w[n])2
Using the properties of expectation, we find that E[θ^2]=A2+Nσ2. Thus, θ^2 is biased
step 6
To check for asymptotic unbiasedness, we consider the limit as N→∞:
N→∞limE[θ^2]=A2+N→∞limNσ2=A2
Thus, θ^2 is asymptotically unbiased
Answer
(a) an=N1 for n=0,1,…,N−1; (b) var(θ^1)=Nσ2 and approaches 0 as N→∞; (c) θ^2 is biased but asymptotically unbiased.
Key Concept
Unbiased estimators and their variances are crucial in statistical inference.
Explanation
The solution demonstrates how to derive unbiased estimators and analyze their variances, highlighting the importance of asymptotic properties in estimation.