The Bayes estimator is a statistical decision rule that minimizes the expected loss based on the posterior distribution of a parameter. The specific form of the Bayes estimator depends on the chosen loss function and the characteristics of the posterior distribution.
For a parameter $\theta$, the squared error loss function is defined as $L(\theta, \delta) = (\theta - \delta)^2$, where $\delta$ is the estimator. The Bayes estimator under SEL is the value $\delta(\mathbf{x})$ that minimizes the posterior expectation of the loss function, $E[L(\theta, \delta(\mathbf{x})) | \mathbf{x}] = E[(\theta - \delta(\mathbf{x}))^2 | \mathbf{x}]$. This minimum occurs when the estimator equals the posterior mean: $ \delta_{SEL}(\mathbf{x}) = E[\theta | \mathbf{x}] $
In this problem, the data $X_1, \dots, X_n$ are independent and identically distributed Normal random variables with mean $\theta$ and known variance $\sigma^2$, and the prior distribution for $\theta$ is Normal with mean $\mu$ and variance $\tau^2$. A conjugate prior-Normal distribution with a Normal likelihood results in a Normal posterior distribution for $\theta$. For any Normal distribution, the mean is equal to the median.
The absolute error loss function is defined as $L(\theta, \delta) = |\theta - \delta|$. The Bayes estimator under AEL minimizes the posterior expectation of this loss, $E[L(\theta, \delta(\mathbf{x})) | \mathbf{x}] = E[|\theta - \delta(\mathbf{x})| | \mathbf{x}]$. This minimum occurs when the estimator equals the posterior median: $ \delta_{AEL}(\mathbf{x}) = \text{Median}(\theta | \mathbf{x}) $
As established, the posterior distribution for $\theta$ is Normal. For a Normal distribution, the mean and the median are identical.
All four statements correctly describe properties of the Bayes estimator in the context of a Normal posterior distribution derived from Normal data and a Normal prior, considering both squared error loss and absolute error loss functions. The equality of the mean and median for the Normal posterior makes both measures valid estimators under the respective loss functions.
| x | 0 | 1 | 2 | 3 |
| $p_{\theta_0}(x)$ | 0.01 | 0.04 | 0.5 | 0.45 |
| $p_{\theta_1}(x)$ | 0.02 | 0.08 | 0.4 | 0.5 |