返回题库

等相关矩阵:相关系数 ρ 的可行范围

对角线矩阵

专题
Algorithmic Programming / 算法编程
难度
L4

题目详情

The correlation matrix of nn random variables has all the off- diagonal entries equal to ρ\rho . What are the possible values for ρ\rho ?

解析

等相关矩阵

Q=(1ρ)I+ρJQ=(1-\rho)I+\rho J

的特征值为:

  • 1ρ1-\rho(重数 n1n-1
  • 1+(n1)ρ1+(n-1)\rho(重数 1)

要使其为相关矩阵需半正定,因此两者非负:

1ρ0ρ1,1-\rho\ge 0\Rightarrow \rho\le 1, 1+(n1)ρ0ρ1n1.1+(n-1)\rho\ge 0\Rightarrow \rho\ge -\frac{1}{n-1}.

所以

1n1ρ1.\boxed{-\frac{1}{n-1}\le \rho\le 1}.