Skip to content

Commit ae8c6a2

Browse files
authored
added 1 definition
1 parent 7d9e1d7 commit ae8c6a2

1 file changed

Lines changed: 44 additions & 0 deletions

File tree

D/covmat-cross.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
layout: definition
3+
mathjax: true
4+
5+
author: "Joram Soch"
6+
affiliation: "BCCN Berlin"
7+
e_mail: "joram.soch@bccn-berlin.de"
8+
date: 2022-09-26 09:45:00
9+
10+
title: "Cross-covariance matrix"
11+
chapter: "General Theorems"
12+
section: "Probability theory"
13+
topic: "Covariance"
14+
definition: "Cross-covariance matrix"
15+
16+
sources:
17+
- authors: "Wikipedia"
18+
year: 2022
19+
title: "Cross-covariance matrix"
20+
in: "Wikipedia, the free encyclopedia"
21+
pages: "retrieved on 2022-09-26"
22+
url: "https://en.wikipedia.org/wiki/Cross-covariance_matrix#Definition"
23+
24+
def_id: "D176"
25+
shortcut: "covmat-cross"
26+
username: "JoramSoch"
27+
---
28+
29+
30+
**Definition:** Let $X = [X_1, \ldots, X_n]^\mathrm{T}$ and $Y = [Y_1, \ldots, Y_m]^\mathrm{T}$ be two [random vectors](/D/rvec) that can or cannot be of equal size. Then, the cross-covariance matrix of $X$ and $Y$ is defined as the $n \times m$ matrix in which the entry $(i,j)$ is the [covariance](/D/cov) of $X_i$ and $Y_j$:
31+
32+
$$ \label{eq:covmat-cross}
33+
\Sigma_{XY} =
34+
\begin{bmatrix}
35+
\mathrm{Cov}(X_1,Y_1) & \ldots & \mathrm{Cov}(X_1,Y_m) \\
36+
\vdots & \ddots & \vdots \\
37+
\mathrm{Cov}(X_n,Y_1) & \ldots & \mathrm{Cov}(X_n,Y_m)
38+
\end{bmatrix} =
39+
\begin{bmatrix}
40+
\mathrm{E}\left[ (X_1-\mathrm{E}[X_1]) (Y_1-\mathrm{E}[Y_1]) \right] & \ldots & \mathrm{E}\left[ (X_1-\mathrm{E}[X_1]) (Y_m-\mathrm{E}[Y_m]) \right] \\
41+
\vdots & \ddots & \vdots \\
42+
\mathrm{E}\left[ (X_n-\mathrm{E}[X_n]) (Y_1-\mathrm{E}[Y_1]) \right] & \ldots & \mathrm{E}\left[ (X_n-\mathrm{E}[X_n]) (Y_m-\mathrm{E}[Y_m]) \right]
43+
\end{bmatrix} \; .
44+
$$

0 commit comments

Comments
 (0)