Monday, September 08, 2025

Religiosity vs. Time

In reference to a Pew study on intergenerational religiosity, Scott writes:

Contra compelling anecdotes, only ~5% of people raised very religious end up atheist later in life (X). Most people are about as religious as their parents; most exceptions are only slightly less religious, and most families that secularize do it over several generations.

Okay, but those generations add up.

Here is the Pew data as a matrix. I have reversed the row order such that both row and column indicies increase with religiosity. I have also subtracted 1% from element (4,4) such that the table sums to 1.0.

PEW =

0.06000.01000.0100 0
0.04000.08000.03000.0100
0.03000.09000.16000.0300
0.02000.05000.14000.2400

Note these are joint probabilities. To find the religious probabilities of the parent generation, we must sum all columns in each row (all code is MATLAB):

P_parent = sum(PEW,2);

P_parent'

ans =

0.0800 0.1600 0.3100 0.4500

To find the religiosity of each subsequent generation, we need the conditional probabilities, which we can derive from Bayes' Theorem:

P_child_given_parent = PEW./repmat(P_parent,1,4) 

P_child_given_parent =

0.75000.12500.1250 0
0.25000.50000.18750.0625
0.09680.29030.51610.0968
0.04440.11110.31110.5333

Finally, we construct a table showing the generational change over time:

for gen = 1:10

    R_gen(gen,:) = P_parent' * P_child_given_parent^(gen-1);

end

R_gen =

0.08000.16000.31000.4500
0.15000.23000.34000.2800
0.21530.26360.32450.1966
0.26750.27480.30500.1527
0.30560.27630.28990.1281
0.33210.27480.27950.1137
0.34980.27270.27260.1048
0.36160.27090.26820.0993
0.36930.26950.26530.0959
0.37430.26860.26350.0937

Which we can plot:

So, clearly, the Very Religious are the long-term demographic losers. My first thought was that we could make this up in volume, but then I realized that the initial table confounds our greater on-average fertility with the starting percentages; this is a poll of the children, so the children of very religious families were already more numerous among the respondents, assuming the poll was representative. My calculation of the conditional probability assumes fertility is equal, but I'm pretty sure I would need additional fertility data and a way to map it on to these categories in order to correct this.

My second thought is that these statistics might be biased with respect to "family" religiosity: it is plausible that children's characterization of their family's religiosity may be colored by their own. For instance, a child from a "somewhat" religious family who is personally "not at all" religious, might exaggerate family religiosity to "very". OTOH, I'm not sure this matters for predicting the trend.