Family Matters

Demographic Assumptions and the Intergenerational Transmission of Wealth Inequality

Date: 2009-02-24
keywords:wealth; inequality; inheritance; bequests; primogeniture; assortative mating
JEL:E17, D31

Abstract

This paper highlights the crucial role of demographic assumptions in models of the intergenerational transmission of wealth inequality. Specifically, we show that the famous Blinder (1973) prediction that inheritance and mating practices can sustain but cannot cause wealth inequality is extremely fragile. Once we relax a single, untenable demographic restriction, we find that such familial institutions are causative for wealth inequality, even in the long run. The difference in findings hinges on an oft-ignored and apparently minor demographic detail: sex is random.

Contemporary economies show substantial inequality in the ownership of non-human wealth. For the U.S., over half of household net worth belongs to 5% of the population, and almost a third is held by 1% of the population [davies.etal-2006-wider].1 Permanent-income and life-cycle saving models often account for only a fraction of wealth accumulation. If modified to produce substantial wealth accumulation, they often fail to predict observed levels of wealth inequality.2 Researchers have therefore considered possible roles for inheritance (both financial and genetic) and of entrepreneurship. Institutional factors, including the details of inheritance practices and mating patterns, have drawn research attention somewhat more slowly.

The present paper is narrowly focused: our goal is to illustrate the importance of a single common demographic assumption for models of wealth inequality. Narrowly construed, our findings pinpoint a fragility in the predictions of a benchmark model: key predictions of the model are overturned by a small but attractive change in demographic assumptions. More broadly considered, the present paper illustrates the crucial role of demographic assumptions in models of wealth inequality.

1   The Benchmark Model

As our benchmark, we choose the [blinder-1973-qje] model. This benchmark model is ideally suited to our present project: it is well-known, extremely simple in structure, and explicitly designed for the exploration of the economic implications of family institutions. Additionally, it famously predicts that both primogeniture and class mating merely sustain existing wealth inequality and do not cause it to rise or fall. For researchers interested in explaining the level of wealth inequality, the benchmark model's predictions discourage attention to family institutions.

The benchmark model incorporates standard features of simple overlapping generations models. There is a constant population and sex distribution. Each person lives two periods, denoted "childhood" and "economic life". In childhood, all economic decisions are made by the parents. At the beginning of the second period, an individual's economic life starts with marriage, inheritance, and the commencement of work. All people marry and all married couples bear two children, a son and a daughter. In addition, mating may be random or assortative by wealth. Upon death, an individual may leave an estate. Division of the estate may involve equal sharing or male-preference bequests.

The benchmark model is intentionally very simple, introducing only enough structure to explore some implications of particular familial institutions (Blinder 1973). The goal of the model is not detailed realism but rather transparency in the answers to specific questions. Note in particular that debates about the relative contributions of entrepreneurship and inheritance to the wealth distributions of developed countries lie outside the scope of this model.

The benchmark model has the virtues of simplicity, transparency, attention to family institutions (mating and inheritance), and---for the purposes of the present paper---ease of simulation. The benchmark model produces well-known and surprising predictions (Blinder 1973). Specifically, neither unequal inheritances in the form of male-preference bequests nor wealth concentration in the form of class marriage produce wealth inequality. These family institutions can sustain existing wealth inequality but not modify it. We refer to these as the core predictions of the benchmark model.

While initially surprising, the core predictions of the benchmark are readily explained. Consider first the case of male-preference bequests. Recall that each family has two children, a boy and a girl. The bequest practices dictate that the son inherit everything, so the new generation must have the same wealth distribution as the old generation. Relative inequality---as measured by the coefficient of variation or the Gini coefficient---is unchanged. Consider next the case of class mating. Again, each family has two children, a son and a daughter. The two wealthiest families intermarry, forming the two richest families of the next generation. Similarly for the next two wealthiest, and so on. The benchmark model thus predicts that male-preference bequests and class mating can sustain but not cause wealth inequality.

1.1   Simulating the Benchmark Model

Since this paper focuses on a fundamental heterogeneity at the individual level, we reconstruct the benchmark Blinder model as an agent-based simulation. We show that we can replicate the [blinder-1973-qje] theoretical results in a simulation setting, and we then illustrate and explain the fragility of Blinder's predictions.

The benchmark model sets the following rules: population is constant, all income is consumed (so inheritance is the only way in which people acquire wealth), and there are no estate taxes.3 The benchmark model intentionally ignores inter vivos gifts, differential fertility among groups (e.g., income groups), and changes in the age structure of the population. The benchmark model's simple structure facilitates the unveiling of key distributional effects of mating habits and inheritance practices.

1.1.1   Needs of the Simulation

Each individual needs to be associated with the following data: a sex, a spouse, and a networth. Couples need to produce children and provide them with bequests, based on household net worth. We begin by sketching a simple procedural approach to the basic simulation problem, and then we outline the agent-based approach chosen for this paper.

Represent a cohort by two arrays of networth, one array of "males" and one of "females". Each period, pair up the males and females ("marriage", based on mating practices), determine the number and sexes of each couple's children, and create two new arrays of males and females based on the outcome. The values in the new arrays will be determined by the bequest practices of the population. Each interation of the procedure will resemble the following pseudocode.

new_males = []
new_females = []
for male, female in pairup(males, females):
    hh_networth = male + female
    new_males.append(male_share * hh_networth)
    new_females.append(female_share * hh_networth)
males, females = new_males, new_females

This procedural approach is adequate to the simplest case considered by Blinder, where each couple bears a boy and a girl, and male children inherit everything. Since female wealth is always zero, each male's wealth is always unchanged by marriage. It should be clear that the distribution of wealth will be static, whether or not mating is class based. If females were to inherit everything, the outcome would be symmetric. In this sense, a social practice of sex-based bequests does not cause inequality in the wealth distribution, although it can sustain existing inequality.

Additionally, the pseudocode above makes it clear that when mating is is strictly class based, the distribution of wealth will again be static, whether or not males inherit everything. In this case, the pairup function would ensure that the richest males will always wed the richest females, reproducing the distribution of wealth. In this sense, a social practice of class mating does not cause inequality in the wealth distribution, although it can sustain existing inequality.

In contrast, if random selection is the social mating practice, and additionally males and females inherit equally, fortunes will disperse and the distribution of wealth will tend to equality.

1.1.2   Agent-Based Version

We can reconstitute the benchmark [blinder-1973-qje] theoretical model as an agent-based simulation model. For our agent-based simulation, we introduce three basic classes: Individual, Cohort, and Population. A Population instance is a sequence of Chort instances, each of which is a sequence of Individual instances. Additionally we introduce a Transactor mixin and an Economy which just initializes and run the simulation.

Behavior is concentrated in the Individual class; the Cohort and Population classes are essentially containers that do simple bookkeeping. A Population instance contains a single Cohort instance, in order to match as closely as possible the benchmark Blinder model. (In the benchmark theoretical model, a single cohort, or "generation", is economically active at each point in time.) A Cohort instance contains many individuals.

An individual has the following key data attributes: sex is either M or F, spouse is the individual's spouse (or None), and children is a list of the individual's children. (As a Transactor, each individual has a net worth; household net worth can be caclculated from the constituent individuals.) An individual has the following key behavioral attributes (or methods): get_household_wealth, bear_children, wed, and distribute_estate. In the benchmark simulation model, the first two are rather self explanatory, but there are some important details in how a spouse is chosen and how an estate is distributed.

Transactor
  • Data: networth
  • Methods: payin, payout
Individual
  • Inherit data and methods from Transactor
  • Data: sex, spouse, children
  • Methods: wed, bear_children, distribute_estate, get_household_wealth
Cohort (sequence of individuals)
  • Data: age,
  • Methods:
Population (sequence of cohorts)
  • Data: individuals, economy
  • Methods: evolve, get_wealth_distribution
Economy (controls the simulation)
  • Data: params, population
  • Methods: run

1.1.3   Parameters

The results reported for our simulation model use cohorts of 200 individuals, but the key results are not sensitive to cohort size. (In the benchmark theoretical model, there are implicitly a great many individuals in a generation: Blinder treats the distribution of wealth as a continuous probability density function.) Finally, since Blinder invoked limiting distributions for key results of the theoretical model, we must face the question of how many cohorts to produce over the course of the simulation. We will report results for 160 generations, which allows a clear view of the steady state of the economy.

2   Sex Is Random

Researchers consider inheritance to be an important determinant of individual financial wealth, especially for very wealthy families.4 However the benchmark model shows us that evidence that inheritance practices sustain wealth inequality need not constitute evidence that these practices determine its level. (This crucial distinction is often ignored.) Recall the core predictions of the benchmark model: male-preference bequests sustain but do not change the distribution of wealth, and class mating sustains but does not change the distribution of wealth. Since the benchmark model is simple enough to be relatively transparent, these predictions are readily understandable as implications of the model. Nevertheless, these predictions are often considered surprising or counterintuitive.

We now show that both predictions rest on the neglect of an oft-overlooked yet fundamental demographic factor. Recall a core demographic assumption of the benchmark model: each family has two children, a boy and a girl. Models of wealth accumulation often do not distinguish individuals by sex, but this is a fairly common assumption when they do. It is an analytically tractable way to ensure a constant population and sex ratio. Blinder (p.610) justified this demographic structure by the hope "that it does not stray too far from the truth for a stationary economy." However, even a steady-state population does not mean one boy and one girl per family. We find that an apparently minor modification of this assumption produces large changes in the model predictions. Before we can explore this, however, we need to clarify the nature of class mating and of male-preference bequests.

Marriage is a core social institution that can have important effects on wealth inequality. If marriage is perfectly assortative by wealth ('class mating'), we might expect this to concentrate wealth. If marriage is determined by factors unrelated to wealth ('random mating'), we might expect this to moderate wealth inequality.

We must distinguish two characterizations of 'class mating': spouses paired based on household wealth, and spouses paired based on their own individual wealth. When each household has one child of each sex, failure to draw this distinction is innocuous in the benchmark model. Otherwise, each concept gains independent interest. Here we adopt the second characterization: after ranking men and women by individual wealth, 'class mating' means that spouses share a common rank.5

Our project also calls for more care in the discussion of primogeniture. Economists sometimes use the term 'primogeniture' very loosely to refer to a variety of male-preference bequest practices. When families may have no sons, or multiple sons, this usage becomes untenable. If there are multiple sons, do all inherit? If there are no sons, can daughters inherit? If daughters can inherit and there are multiple daughters, do all inherit? If daughters cannot inherit and there are no sons, what is the line of bequest transmission? Since each alternative changes the model, attempts to explain an actual distribution of wealth must naturally be bound to actual social practices.

We can use any of the above options to illustrate the importance of demographic assumptions in models of wealth inequality. In the context of the present paper, we need a practice that is a close match to the benchmark model in two ways: it should be a plausible extension of the notion of male-preference bequests to the new demographic context, and among remaining the options it should appear least likely to cause additional wealth inequality. We therefore consider the case of split inheritances. Specifically, we take 'male-preference bequests' to mean that a lone son inherits everything (matching the benchmark model), multiple sons inherit everything and split it equally, and in the absence of a male heir, daughters inherit everything and split it equally.

The individuals in the resulting model are heterogeneous: they differ by sex, the sex of their sibling, and the wealth of their family. Such heterogeneity is a substantial complication if we attempt to extend the original deductive analysis of the benchmark model. However this degree of heterogeneity can easily be handled by simulation methods. We therefore simulate both the benchmark model and our modifications of it.

Figure 1 presents the results of five simulations. We measure wealth inequality with a Gini coefficient and chart inequality across 160 generations. Each simulation imposes a Gini coefficient of 0.6 for the initial distribution of wealth. (The value of this model parameter proves unimportant.)

The perfectly horizontal line illustrates the benchmark model with male-preference bequests and/or class mating. (All three cases yield the same result, as expected.) The simulation results naturally reflect the analytically derived core predictions of the benchmark model: wealth inequality is sustained at the initial level and shows no tendency to change. The demographic structure of all other reported simulations differ from the benchmark model in an way that might seem minor but proves to be crucial: children's sexes are distributed randomly across families.

bmblinder.png

Intergenerational Inequality when Sex is Random

The topmost line illustrates the effect of male-preference bequests under class mating. The results diverge markedly from the benchmark predictions: inequality grows rapidly and stays high. In striking contrast with the benchmark predictions, we discover a role for inheritance in producing wealth inequality. Our more realistic demographics imply that male-preference bequests and class mating combine to cause extreme inequality.

The next two simulations show that there is now a critical synergy between bequest practices and mating practices. Consider the line illustrating male-preference bequests under random mating: inequality quickly declines to a modest Gini coefficient of about 0.4 and subsequently varies around that level. Although we do not see extreme inequality in this case, we still find that male-preference bequests are causative for the level of wealth inequality.

Next consider the outcome for equal bequests and class mating. We find a gentle downward trend in inequality. Again we have a striking contrast with the benchmark model: class mating fails to sustain wealth inequality. The explanation is natural: when multiple inheritance is possible, family fortunes must eventually disperse.

Finally, as a point of reference, Figure 1 also displays the outcomes under equal bequests and random mating. The results for this case are unsurprising and are compatible with the benchmark model predictions. There is a rapid decline of wealth inequality from its initial level toward an equal distribution of wealth.

3   Conclusion

Economists have long been interested in measuring and explaining inequality in the ownership of wealth. Research on the sources of wealth inequality remains active, and inheritance and mating practices have occasionally come under scrutiny. [blinder-1973-qje] derived surprising predictions from the benchmark model: male-preference bequests or class mating can sustain existing wealth inequality, but neither cause it. That is, neither male-preference bequests or class mating modify the level of wealth inequality, even in the long run. This paper uses simulation methods to show that the core predictions of the benchmark model depend on an analytically convenient and seemingly innocuous demographic assumption.

Although the distribution of wealth has received increasing attention from economists, the role of demographic assumptions is rarely explored.6 Our simulation results demonstrate that even apparently minor aspects of these demographic assumptions can be crucial, both for wealth dynamics and for steady-state outcomes. We make one change in the benchmark model: we allow randomness in sex determination. This seemingly trivial change radically alters the predictions of the model.

Allowing for randomness in the sex of offspring is an appealing increase in realism. As is so often the case, additional realism has a cost: it reduces the analytical tractability of the benchmark model. We therefore approach the model through simulation methods. Our simulation results show that this seemingly trivial change in demographic structure implies a dramatic change in model predictions. Perhaps most notably, male-preference bequests combine with class mating to cause the emergence of extreme inequality. The synergy is crucial. Neither male-preference bequests in the presence of random mating nor class mating in the presence of equal sharing can cause or even sustain substantial wealth inequality. Furthermore, under these slightly more realistic demographics, equal bequests prove a powerful equalizer even in the face of class mating.

The fragility of the provocative core predictions of the benchmark model is of considerable interest. More generally, the present paper illustrates the crucial role of demographic assumptions in models of wealth inequality. Our simulation results show how an seemingly minor change in demographic assumptions can dramatically alter a model's predictions.

4   References

[blinder-1973-qje]Blinder, Alan S. 1973. A Model of Inherited Wealth. qje 87, 608--26.
[cagetti.nardi-2006-nber]Cagetti, Marco, and Mariacristina De Nardi. (2006) "Wealth Inequality: Data and Models". National Bureau of Economic Research NBER Working Paper 12550.
[cagetti.nardi-2006-jpe]Cagetti, Marco, and Mariacristina De Nardi. 2006. Entrepreneurship, Frictions, and Wealth. jpe 114, 835--70.
[canterbury.nosari-1985-sej]Canterbery, E Ray, and E Joe Nosari. 1985. The Forbes Four Hundred: The Determinants of Super-Wealth. sej 51, 1073--83.
[castaneda.gimenez.rull-2003-jpe]Casta,. 2003. Accounting for the U.S. Earnings and Wealth Inequality. jpe 111, 818--57.
[cogneau.grimm-2007-riw]Cogneau, Denis, and Michael Grimm. 2007. The Measurement of Income Distribution Dynamics when Demographics Are Correlated with Income. riw 53, 246--274.
[davies.etal-2006-wider]Davies, James B, et al. (2006) "The World Distribution of Household Wealth". UNU-WIDER 5-12-2006. http://www.wider.unu.edu/research/2006-2007/2006-2007-1/wider-wdhw-launch-5-12-2006/wider-wdhw-report-5-12-2006.pdf
[isaac-2007-jpke]Isaac, Alan G. 2008. Inheriting Inequality: Institutional Influences on the Distribution of Wealth. jpke 30, 187--204.
[kotlikoff-1988-jep]Kotlikoff, Laurence J. 1988. Intergenerational Transfers and Savings. jep 2, 41--58.
[laitner-2002-aer]Laitner, John. 2002. Wealth Inequality and Altruistic Bequests. aer 92, 270--3.
[pestieau-1984-oep]Pestieau, Pierre. 1984. The Effects of Varying Family Size on the Transmission and Distribution of Wealth. oep 36, 400--417.
[quadrini.rull-1997-frbmqr]Quardini, Vincenzo, and Jos. 1997. Understanding the U.S. Distribution of Wealth. Federal Reserve Bank of Minneapolis Quarterly Review 21, 22--36.
[wolff-1987-riw]Wolff, Edward N. 1987. Estimates of Household Wealth Inequality in the U.S., 1962--1983. Review of Income and Wealth 33, 231--56.
[wolff-1992-aer]Wolff, Edward N. 1992. Changing Inequality of Wealth. aer 82, 552--8.
[wolff-1994-riw]Wolff, Edward N. 1994. Trends in Household Wealth in the United States, 1962--83 and 1983--89. Review of Income and Wealth 40, 143--74.
[wolff-1998-jep]Wolff, Edward N. 1998. Recent Trends in the Size Distribution of Household Wealth. jep 12, 131-50.

5   Notes

[1][cagetti.nardi-2006-nber] and [laitner-2002-aer] offer roughly comparable estimates. Edward Wolff (1987, 1992, 1994, 1998) has been tracking these trends for the past two decades.
[2][quadrini.rull-1997-frbmqr] and [kotlikoff-1988-jep] review the difficulties life-cycle models have fitting income and wealth distributions. Calibrated modifications of life-cycle models show some promise of reproducing U.S. wealth and income distributions: [castaneda.gimenez.rull-2003-jpe] develop a life-cycle model with strong altruism that fits better than most previous efforts, and [cagetti.nardi-2006-jpe] show that credit constraints on entrepreneurs can skew the wealth distribution. (However both of these efforts may be compromised by neglect of family institutions.)
[3]In this sense, the model assumptions typify a simple overlapping-generations steady state. Within these constraints, the model suggests how wealth might be "reshuffled" across generations. (Blinder does speculate that the benchmark results are robust to a steadily growing population.) Proportional estate-tax rates and economy-wide rates of return on wealth add a little complexity without changing the distributional results explored here. More realistic estate-tax institutions and idiosyncratic rates of return raise interesting issues [isaac-2007-jpke], but these are tangential to the issues addressed in the present paper.
[4]Direct evidence is somewhat scarce but survey evidence continues to find that high income and high wealth individuals often inherit much of their wealth. (See [canterbury.nosari-1985-sej] for an interesting early attempt to explore the role of inheritance for the "super" wealthy.) Recent simulation work that has emphasized entrepreneurship also continues to find an important role for inheritance [cagetti.nardi-2006-jpe].
[5]Our reported simulations impose a restriction that siblings do not marry, which minimally alters the distributional outcomes.
[6]An relevant exception is [pestieau-1984-oep], who explored variations in family size. Interest in demographic factors has been somewhat stronger among income-inequality researchers. For example, [cogneau.grimm-2007-riw] offer an important empirical demonstration that demographics can influence income distribution dynamics.