How much information are parental phenotypes expected to provide about offspring genotypes?
Not much, on average
There's a folk intuition floating around that knowing the phenotype of someone's parents and extended relatives is very important for predicting their genotype, even when you already have the individual's phenotype. The intuition here seems to be that phenotype is a noisy reflection of genotype, but the average of familial phenotypes is going to be more of a reflection of the individual's underlying genotype.
This would be true if it weren't for the fact that the genotypic variance of siblings is half that of the parent's generation. This means that there's a lot of genotypic variance within a family. Parental midpoint genotype will explain half the variance of offspring genotype, and the marginal predictive value of more distant relatives will be progressively halved. Both grandparent midpoints, for instance, will, on their own, explain only a quarter of the variance of grand-children genotypes.
The marginal variance of parental phenotypic midpoint on top of offspring phenotype will be lower still. And it's clear that the marginal of predictive value of more distant phenotypes will continue to decrease exponentially. They should collectively be no more than the marginal predictive value of parental midpoint, since the value of each is halving and 1/4 + 1/8 + 1/16 ... = 1/2.
This can be shown by simulation, but it's also easy to analyze this by hand. Let's have the following regression equation:
Where g is the individual genotype, p is the individual phenotype, and f is the parental midpoint phenotype. From the regression anatomy formula:
Where the beta is the beta from the regression of F on P, meaning predicting F from P. The top term is:
Where h is the square root of the trait's heritability.
Now the bottom term:
So the beta is:
You can manipulate this to get that it's roughly h-h^3, which is interesting because the non-marginal beta is h, so the marginal beta is strictly less. This is still a somewhat unintuitive polynomial, so it's easiest to just graph the whole thing.
We see that the line is h, which is the correlation between F and G, and the curve is beta_f. The curve is always less than the line, and peaks at intermediate heritabilities. When heritability is low, genetic information is generally not that predictive, and the marginal predictiveness of parental traits is not much less than the total predictiveness. As h gets quite large though, it becomes similar to individual phenotype, and the marginal predictiveness of parental phenotype goes to 0.
Now let's do the same for the other beta.
The top term is, using the same logic as above:
The bottom term is:
So we get:
The green curve shows the marginal predictiveness of individual phenotype for each h. It’s always superior to parental midpoint and always increasing.
Finally, we have:
The purple curve is R^2 plotted by h while the red curve is h^2, the variance explained by parental midpoint or individual phenotype alone given h. R^2 is never less than h^2 but it’s never much more.
The maximum gain is about 7% of the variance when h=0.60, or h^2 = 36%. At high IQ-like h’s, the variance-explained gain is <5%, which means the variance-explained gain from all family members should be <10%.
Conclusion
Ancestral family phenotypes are not very marginally informative of individual genotypes, given the individual’s phenotype.
Given an individual’s phenotype, you are probably not going to see much variance in parental midpoint phenotypes. With regards to IQ, parental midpoints only have SDs of about 10 since they are averages of 2. The high heritability of IQ reduces the SD of parental midpoints further to roughly 5, given an individual’s phenotype.
So if you have 10 130 IQ people, 8 to 9 of their parental midpoint phenotypes will be between 110 and 120. And this adds almost no information about the individual’s IQ gene score.
Appendix
Here’s code verifying the math. The model assumes no non-genetic correlation between parents and offspring (eg “shared environment”) as well as narrow sense heritability being the same as broad sense heritability. Either being untrue would make the marginal predictiveness of ancestor phenotypes even lower, because the latter reduces their relative importance to individual phenotype and the former puts extra information about parent midpoint in the offspring’s phenotype. You can test this with modifications to the code below:
import statsmodels.api as sm
import numpy as np
import math
import matplotlib.pyplot as plt
SIZE = 10000
err1 = []
err2 = []
err3 = []
for i in range(1,100):
h = float(i)/100
h2 = h*h
h4 = h2 * h2
f = np.random.normal(0,math.sqrt(1/2), SIZE)
gf = h*f + np.random.normal(0, math.sqrt(.5 * (1 - h2)), SIZE)
g = np.array([np.random.normal(j, math.sqrt(1/2), 1)[0] for j in gf])
p = h*g + np.random.normal(0, math.sqrt(1-h2), SIZE)
X = np.column_stack([p, f])
X = sm.add_constant(X)
model = sm.OLS(g, X).fit()
bf = ((h/2 - (h*h*h)/2) / (.5 - .25*h4))
bp = (h - (h*h*h)/2)/( (1 - h4*.5))
r2 = ((bf**2)/2 + (bp**2) + h2*bf*bp)
err1.append( bf - model.params[2])
err2.append(bp - model.params[1])
err3.append( r2 - model.rsquared)
plt.plot(err1)
plt.plot(err2)
plt.plot(err3)
plt.show()
The article was titled making a case economically for immigration and I saw a critique of it was that critique by you or by someone else I can't find the critique now
Hey I have a question I saw a sub stack arguing for the case for Mass immigration from economics someone made a critique of that was that you or could you help me find the critique