Before solving the problem, let’s clarify the notation.
\(\mathbf{H}(\phi)\) is the spatial correlation matrix of the underlying Gaussian process. It is an \(n \times n\) matrix with entries:
\[ [\mathbf{H}(\phi)]_{ij} = \rho(\phi; d_{ij}) \]
where: - \(\rho(\phi; d_{ij})\) is a correlation function - \(\phi\) is the spatial range parameter (or vector of parameters) - \(d_{ij}\) is the distance between locations \(\mathbf{s}_i\) and \(\mathbf{s}_j\)
Properties: - Diagonal elements: \(\rho(\phi; 0) = 1\) - Symmetric: \(\rho(\phi; d_{ij}) = \rho(\phi; d_{ji})\) - Positive definite (for valid correlation functions) - Usually decreases with distance
Common Correlation Functions:
| Name | Formula |
|---|---|
| Exponential | \(\rho(\phi; d) = \exp(-d/\phi)\) |
| Gaussian | \(\rho(\phi; d) = \exp(-d^2/\phi^2)\) |
| Matern | \(\rho(\phi; d) = \frac{2^{1-\nu}}{\Gamma(\nu)} (d/\phi)^\nu K_\nu(d/\phi)\) |
| Spherical | \(\rho(\phi; d) = 1 - \frac{3}{2}(d/\phi) + \frac{1}{2}(d/\phi)^3\) for \(d \leq \phi\); 0 for \(d > \phi\) |
In our model:
\[ \boldsymbol{\Sigma} = \sigma^2 \mathbf{H}(\phi) + \tau^2 \mathbf{I} \]
Suppose we have 3 locations, and we use an exponential correlation function with \(\phi = 1\) and \(\sigma^2 = 2\):
The correlation function is: \[ \rho(\phi; d) = \exp(-d/\phi) = \exp(-d) \]
The correlation matrix is:
\[ \mathbf{H}(\phi) = \begin{bmatrix} 1 & e^{-d_{12}} & e^{-d_{13}} \\ e^{-d_{21}} & 1 & e^{-d_{23}} \\ e^{-d_{31}} & e^{-d_{32}} & 1 \end{bmatrix} \]
If the distances are: - \(d_{12} = 0.5\) - \(d_{13} = 1.0\) - \(d_{23} = 0.7\)
Then:
\[ \mathbf{H}(\phi) = \begin{bmatrix} 1 & e^{-0.5} & e^{-1.0} \\ e^{-0.5} & 1 & e^{-0.7} \\ e^{-1.0} & e^{-0.7} & 1 \end{bmatrix} = \begin{bmatrix} 1 & 0.6065 & 0.3679 \\ 0.6065 & 1 & 0.4966 \\ 0.3679 & 0.4966 & 1 \end{bmatrix} \]
Then the covariance matrix of the observed data is:
\[ \boldsymbol{\Sigma} = 2\mathbf{H}(\phi) + \tau^2 \mathbf{I} \]
If \(\tau^2 = 0\) (noiseless case):
\[ \boldsymbol{\Sigma} = \begin{bmatrix} 2 & 1.213 & 0.7358 \\ 1.213 & 2 & 0.9932 \\ 0.7358 & 0.9932 & 2 \end{bmatrix} \]
If \(\tau^2 = 0.5\) (with noise):
\[ \boldsymbol{\Sigma} = \begin{bmatrix} 2.5 & 1.213 & 0.7358 \\ 1.213 & 2.5 & 0.9932 \\ 0.7358 & 0.9932 & 2.5 \end{bmatrix} \]
Notice that when \(\tau^2 > 0\), the diagonal elements increase (representing additional variance from noise), but the off-diagonal elements remain the same (representing spatial correlation).
We are given the joint normal distribution:
\[ \begin{pmatrix} Y_1 \\ Y_2 \end{pmatrix} = \begin{pmatrix} Y(\mathbf{s}_0) \\ \mathbf{y} \end{pmatrix} \sim N\left( \begin{pmatrix} \mu_1 \\ \mu_2 \end{pmatrix}, \begin{pmatrix} \Omega_{11} & \Omega_{12} \\ \Omega_{21} & \Omega_{22} \end{pmatrix} \right) \]
with:
We need to verify expressions (2.22), (2.23), and (2.24).
For a joint normal distribution, the conditional mean is:
\[ E[Y_1 | Y_2 = \mathbf{y}] = \mu_1 + \Omega_{12} \Omega_{22}^{-1} (\mathbf{y} - \mu_2) \]
Substituting the given values:
\[ E[Y(\mathbf{s}_0) | \mathbf{y}] = \mathbf{x}_0^T \boldsymbol{\beta} + \boldsymbol{\gamma}^T \boldsymbol{\Sigma}^{-1} (\mathbf{y} - \mathbf{X} \boldsymbol{\beta}) \]
Therefore:
\[ \boxed{E[Y(\mathbf{s}_0) | \mathbf{y}] = \mathbf{x}_0^T \boldsymbol{\beta} + \boldsymbol{\gamma}^T \boldsymbol{\Sigma}^{-1} (\mathbf{y} - \mathbf{X} \boldsymbol{\beta})} \]
This matches (2.22) exactly. ✓
For a joint normal distribution, the conditional variance is:
\[ \text{Var}[Y_1 | Y_2 = \mathbf{y}] = \Omega_{11} - \Omega_{12} \Omega_{22}^{-1} \Omega_{21} \]
Substituting the given values:
\[ \text{Var}[Y(\mathbf{s}_0) | \mathbf{y}] = \sigma^2 + \tau^2 - \boldsymbol{\gamma}^T \boldsymbol{\Sigma}^{-1} \boldsymbol{\gamma} \]
Therefore:
\[ \boxed{\text{Var}[Y(\mathbf{s}_0) | \mathbf{y}] = \sigma^2 + \tau^2 - \boldsymbol{\gamma}^T \boldsymbol{\Sigma}^{-1} \boldsymbol{\gamma}} \]
This matches (2.23) exactly. ✓
We want to express the conditional mean as a linear combination of \(\mathbf{y}\):
\[ E[Y(\mathbf{s}_0) | \mathbf{y}] = \lambda^T \mathbf{y} \]
The Generalized Least Squares (GLS) estimator of \(\boldsymbol{\beta}\) is:
\[ \hat{\boldsymbol{\beta}}_{\text{GLS}} = \left( \mathbf{X}^T \boldsymbol{\Sigma}^{-1} \mathbf{X} \right)^{-1} \mathbf{X}^T \boldsymbol{\Sigma}^{-1} \mathbf{y} \]
Starting from (2.22):
\[ E[Y(\mathbf{s}_0) | \mathbf{y}] = \mathbf{x}_0^T \boldsymbol{\beta} + \boldsymbol{\gamma}^T \boldsymbol{\Sigma}^{-1} (\mathbf{y} - \mathbf{X} \boldsymbol{\beta}) \]
Replace \(\boldsymbol{\beta}\) with \(\hat{\boldsymbol{\beta}}_{\text{GLS}}\):
\[ E[Y(\mathbf{s}_0) | \mathbf{y}] = \mathbf{x}_0^T \hat{\boldsymbol{\beta}}_{\text{GLS}} + \boldsymbol{\gamma}^T \boldsymbol{\Sigma}^{-1} \left( \mathbf{y} - \mathbf{X} \hat{\boldsymbol{\beta}}_{\text{GLS}} \right) \]
Expanding the second term:
\[ E[Y(\mathbf{s}_0) | \mathbf{y}] = \mathbf{x}_0^T \hat{\boldsymbol{\beta}}_{\text{GLS}} + \boldsymbol{\gamma}^T \boldsymbol{\Sigma}^{-1} \mathbf{y} - \boldsymbol{\gamma}^T \boldsymbol{\Sigma}^{-1} \mathbf{X} \hat{\boldsymbol{\beta}}_{\text{GLS}} \]
Grouping terms involving \(\hat{\boldsymbol{\beta}}_{\text{GLS}}\):
\[ E[Y(\mathbf{s}_0) | \mathbf{y}] = \boldsymbol{\gamma}^T \boldsymbol{\Sigma}^{-1} \mathbf{y} + \left( \mathbf{x}_0^T - \boldsymbol{\gamma}^T \boldsymbol{\Sigma}^{-1} \mathbf{X} \right) \hat{\boldsymbol{\beta}}_{\text{GLS}} \]
This gives us:
\[ \boxed{E[Y(\mathbf{s}_0) | \mathbf{y}] = \boldsymbol{\gamma}^T \boldsymbol{\Sigma}^{-1} \mathbf{y} + \left( \mathbf{x}_0^T - \boldsymbol{\gamma}^T \boldsymbol{\Sigma}^{-1} \mathbf{X} \right) \hat{\boldsymbol{\beta}}_{\text{GLS}}} \]
Note: The key step is factoring out \(\hat{\boldsymbol{\beta}}_{\text{GLS}}\) from \(\mathbf{x}_0^T \hat{\boldsymbol{\beta}}_{\text{GLS}} - \boldsymbol{\gamma}^T \boldsymbol{\Sigma}^{-1} \mathbf{X} \hat{\boldsymbol{\beta}}_{\text{GLS}}\) to get \((\mathbf{x}_0^T - \boldsymbol{\gamma}^T \boldsymbol{\Sigma}^{-1} \mathbf{X}) \hat{\boldsymbol{\beta}}_{\text{GLS}}\).
Substitute the GLS estimator into the expression:
\[ E[Y(\mathbf{s}_0) | \mathbf{y}] = \boldsymbol{\gamma}^T \boldsymbol{\Sigma}^{-1} \mathbf{y} + \left( \mathbf{x}_0^T - \boldsymbol{\gamma}^T \boldsymbol{\Sigma}^{-1} \mathbf{X} \right) \left( \mathbf{X}^T \boldsymbol{\Sigma}^{-1} \mathbf{X} \right)^{-1} \mathbf{X}^T \boldsymbol{\Sigma}^{-1} \mathbf{y} \]
Factor \(\mathbf{y}\) from both terms:
\[ E[Y(\mathbf{s}_0) | \mathbf{y}] = \left[ \boldsymbol{\gamma}^T \boldsymbol{\Sigma}^{-1} + \left( \mathbf{x}_0^T - \boldsymbol{\gamma}^T \boldsymbol{\Sigma}^{-1} \mathbf{X} \right) \left( \mathbf{X}^T \boldsymbol{\Sigma}^{-1} \mathbf{X} \right)^{-1} \mathbf{X}^T \boldsymbol{\Sigma}^{-1} \right] \mathbf{y} \]
Since \(E[Y(\mathbf{s}_0) | \mathbf{y}] = \lambda^T \mathbf{y}\), we have:
\[ \lambda^T = \boldsymbol{\gamma}^T \boldsymbol{\Sigma}^{-1} + \left( \mathbf{x}_0^T - \boldsymbol{\gamma}^T \boldsymbol{\Sigma}^{-1} \mathbf{X} \right) \left( \mathbf{X}^T \boldsymbol{\Sigma}^{-1} \mathbf{X} \right)^{-1} \mathbf{X}^T \boldsymbol{\Sigma}^{-1} \]
Taking the transpose of both sides:
\[ \lambda = \boldsymbol{\Sigma}^{-1} \boldsymbol{\gamma} + \boldsymbol{\Sigma}^{-1} \mathbf{X} \left( \mathbf{X}^T \boldsymbol{\Sigma}^{-1} \mathbf{X} \right)^{-1} \left( \mathbf{x}_0 - \mathbf{X}^T \boldsymbol{\Sigma}^{-1} \boldsymbol{\gamma} \right) \]
Therefore:
\[ \boxed{\lambda = \boldsymbol{\Sigma}^{-1} \boldsymbol{\gamma} + \boldsymbol{\Sigma}^{-1} \mathbf{X} \left( \mathbf{X}^T \boldsymbol{\Sigma}^{-1} \mathbf{X} \right)^{-1} \left( \mathbf{x}_0 - \mathbf{X}^T \boldsymbol{\Sigma}^{-1} \boldsymbol{\gamma} \right)} \]
This matches (2.24) exactly. ✓
| Expression | Result | Status |
|---|---|---|
| (2.22) | \(E[Y(\mathbf{s}_0) \| \mathbf{y}] = \mathbf{x}_0^T \boldsymbol{\beta} + \boldsymbol{\gamma}^T \boldsymbol{\Sigma}^{-1} (\mathbf{y} - \mathbf{X} \boldsymbol{\beta})\) | ✓ Verified |
| (2.23) | \(\text{Var}[Y(\mathbf{s}_0) \| \mathbf{y}] = \sigma^2 + \tau^2 - \boldsymbol{\gamma}^T \boldsymbol{\Sigma}^{-1} \boldsymbol{\gamma}\) | ✓ Verified |
| (2.24) | \(\lambda = \boldsymbol{\Sigma}^{-1} \boldsymbol{\gamma} + \boldsymbol{\Sigma}^{-1} \mathbf{X} (\mathbf{X}^T \boldsymbol{\Sigma}^{-1} \mathbf{X})^{-1} (\mathbf{x}_0 - \mathbf{X}^T \boldsymbol{\Sigma}^{-1} \boldsymbol{\gamma})\) | ✓ Verified |
Conditional Mean: The conditional mean of \(Y(\mathbf{s}_0)\) given observed data \(\mathbf{y}\) consists of:
Conditional Variance: The conditional variance is the unconditional variance minus the variance explained by the observed data.
Kriging Weights: The weight vector \(\lambda\) accounts for both:
These results form the foundation of universal kriging with measurement error.