Let $X$ be $T\times N$ random matrix. We are interested in the sample variance covariance matrix of $X$. It holds that \begin{align} \hat\Sigma&=\frac{1}{T-1}X'\left(I_T-\frac{1}{T}\iota_T\iota_T'\right)X\\ &=\frac{1}{T-1}\left(X'X-\frac{1}{T}\underbrace{X'\iota_T}_{=T\hat{\mu}}\,\,\underbrace{\iota_T'X}_{=T\hat{\mu}'}\right),\\ &=\frac{1}{T-1}\left(X'X-T\hat{\mu}\hat{\mu}'\right)\\ &=\frac{1}{T-1}X'X-\frac{T}{T-1}\hat{\mu}\hat{\mu}'\\ &\approx\frac{1}{T-1}X'X \end{align} where $I_T$ is the identity matrix of size $T$ and $\iota_T$ is a $T\times 1$ vector of $1$'s. I am looking for an argument or condition why the last approximation holds.
2026-04-02 12:30:21.1775133021
Under which condition is $\hat\Sigma\approx\frac{1}{T-1}(X'X)$
56 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in APPROXIMATION
- Does approximation usually exclude equality?
- Approximate spline equation with Wolfram Mathematica
- Solving Equation with Euler's Number
- Approximate derivative in midpoint rule error with notation of Big O
- An inequality involving $\int_0^{\frac{\pi}{2}}\sqrt{\sin x}\:dx $
- On the rate of convergence of the central limit theorem
- Is there any exponential function that can approximate $\frac{1}{x}$?
- Gamma distribution to normal approximation
- Product and Quotient Rule proof using linearisation
- Best approximation of a function out of a closed subset
Related Questions in COVARIANCE
- Let $X, Y$ be random variables. Then: $1.$ If $X, Y$ are independent and ...
- Correct formula for calculation covariances
- How do I calculate if 2 stocks are negatively correlated?
- Change order of eigenvalues and correspoding eigenvector
- Compute the variance of $S = \sum\limits_{i = 1}^N X_i$, what did I do wrong?
- Bounding $\text{Var}[X+Y]$ as a function of $\text{Var}[X]+\text{Var}[Y]$
- covariance matrix for two vector-valued time series
- Calculating the Mean and Autocovariance Function of a Piecewise Time Series
- Find the covariance of a brownian motion.
- Autocovariance of a Sinusodial Time Series
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
I am not sure if this statement hold for arbitrary choices of the matrix $X$. However, maybe it could be useful to analyse your question in a more statistical setting. I'll assume that the elements in the columns of your matrix $X$ follow an iid Normal distribution $$x_i\sim \text{iid} N(0,1)$$ You are interested into the magnitude of the matrix $Y:=X'X$ compared to $Z:=T\hat{\mu}\hat{\mu}'$. You know that the elements in the diagonal of $Z$ consist of $T\hat{\mu}^2$. For the equivalent diagonal elements of $Y$ you have: $$Y_{i,i}=\sum_{j=1}^{T}X_{i,j}^2>\max X_{i}^2$$ where $\max X_{i}^2$ is the maximum of the $i$-th column of $X$. The expected value for $\max X_{i}$ can be found in this post to be $$ \begin{eqnarray} m_T &=& \sqrt{\log \left(\frac{T^2}{2 \pi \log \left(\frac{T^2}{2\pi} \right)}\right)} \cdot \left(1 + \frac{\gamma}{\log (T)} + \mathcal{o} \left(\frac{1}{\log (T)} \right) \right) \end{eqnarray}$$ where $\gamma$ is the Euler-Mascheroni constant. For example, given $T=60$ this value is 2.421 and therefore $E(\max X_{i}^2)>5.861$ On the other hand side you can easily derive that $\hat{\mu_i}$ must be $\sqrt{m_T/T}\approx0.3125$ (Matlab approximates the Probability of $\hat{\mu}\geq0.31$ as $0$) in the setting described above to be equal to $\max X_i ^2$ - which is, by the way a very conservative estimator for $Y_{i,i}$. However, I have not figured out how to handle the off-diagonal elements yet.