I have been asked to write about regression to the mean by some readers. Previous articles provided simulations and intuitions — I will add onto this some mathematical concepts as well as some more intuitions behind these.
Variance Decomposition of IQ
The other articles’ simulations were based on decomposing IQ into two sources: additive genetics and everything else, which we can call the “broad environment.”
Mathematically, this looks like this:
p_i = hg_i + (\sqrt{1-h^2})e_iWhere p is phenotype, g is additive gene score, and e is broad environment. Here, each of the random variables is defined as having a mean of 0 and a variance of 1. The constant terms control how much of the resulting phenotype variance each component explains.
Taking the variance of both sides,
\mathbb{V}[p_i] = \mathbb{V}[hg_i + (\sqrt{1-h^2})e_i] \implies 1 = h^2 + (1-h^2) = 1Assuming no covarance between gene score and broad environment. h^2 is familiar — it is the phenotypic “variance explained” by genetics, a.k.a the heritability. Our second equation shows why the coefficient in front of g_i becomes h when h^2 is used as g_i’s “variance explained”.
Conditional Expectation Functions
To analyze what happens when we select people based on phenotype, we need to understand conditional expectation functions. If we allow g to be random, we can write the following:
\mathbb{E}[p_i|g_i] = hg_i + \mathbb{E}[(\sqrt{1-h^2})e_i] = h g_iThis means if we select on genotype, we expect an above average phenotype as well. But we’re selecting on phenotype, so we need the CEFs given p of g and e.
Assuming no covariance between e and g, we get
g_i = hp_i + \epsilon_i \implies \mathbb{E}[g_i | p_i] = h p_iand
e_i = (\sqrt{1-h^2})p_i + \epsilon_i \implies \mathbb{E}[e_i
| p_i] = (\sqrt{1-h^2})p_iUsing these functions, if we let h^2 = 1/2, and if we select a trillion people with an average IQ of 1 SD, then their average environment and genotype will both be about 0.70 SD.
As you can see, when selecting on something, associated correlate means are always less extreme. Mathematically, this is due to the Cauchy-Schwarz inequality, which bounds correlations between -1 and 1.
What is the intuition for this? We can derive it from 2D or 3D linear algebra. Once data has been standarzed, the correlation between two samples is the same as the projection of one unit vector onto another. The Cauchy-Schwarz inequality also tells us this is between -1 and 1.
|<x,y>| \: \leq ||x|| \: ||y|| \implies |<u_1,u_2>| \leq 1
Why? You can draw vector projection in 2D. Projection finds the point on one vector’s span that minimizes the distance to the projected vector. Projections are always orthogonal. If you project a unit vector onto a unit vector, think about what you get.
Comments
No comments yet.
Log in to leave a comment.