Two Kinds of Equal Opportunity Outcomes

Robinson, Azerrad, and Matthews have each argued that equality of opportunity would represent a “dystopian, totalitarian nightmare” and even that it is “impossible.”1

The underlying argument seems to be the following:

  1. In the relevant population, there is diversity of body, character, parents, etc. at some time period, \(t\).
  2. Difference between individuals A and B at time, \(t\), means they do not have equality of opportunity for outcome Y at time, \(t+k\) (e.g., usually jobs or income).
  3. Eliminating these differences among A and B at time, \(t\), let alone ALL individuals, would require eliminating differences in (a) genes,2 (b) parental investment in their children,3 etc.
  4. Eliminating these differences in (a) and (b) would be a symptom of a “dystopian, totalitarian nightmare”.
  5. Eliminating these differences in (a) and (b) is, technologically speaking, currently impossible.

Real equality of opportunity is inconceivable. It would mean that nobody had any genetic disadvantages, everybody had equally good parents, schools, communities. And that’s just within a country.4

Yet, there are two very different types of outcomes to which we might apply equal opportunity. On one hand, you have empirical outcomes. This is frequently top of mind due to the use of “race” or other sports metaphors.

It’s all well and good to ensure that the rules are applied equally once the starting gun has been fired, liberals say, but it really isn’t much of a race when some have been training for years while others couldn’t even afford a pair of running shoes.5

Here we are invited to believe that the outcome is just insofar as there was no cheating during the game’s timeline.

On the other hand, you have reward outcomes. This type of outcome depends on what the individual did in the past—it is because of something we observed during the race about individual A that we now wish to give them this reward. As should be immediately apparent, interventions on a reward look nothing like interventions on genes or parental activities. Thus, equality of opportunity for a reward outcome is neither dystopian nor totalitarian. Further, presupposing the reward exists and can be (re)distributed, equality of opportunity for a reward outcome is, technologically speaking, currently feasible.

Equality of opportunity is not a goal to be abandoned lightly.


Code

library(tidyverse)
library(magrittr)
set.seed(10204)
df <- data.frame(A = rnorm(100, 5, 1),
                 B = rnorm(100, 20, 3))

gg <- df %>%
  gather() %>%
  ggplot() +
  geom_density(aes(x = value, fill = key)) +
  theme_classic() +
  scale_fill_manual(values = c("#4caf50", "#2b94c3")) +
  labs(fill = "Individual")

ggsave(filename = "original.png", plot = gg)

Edit this page

Avatar
Joseph de la Torre Dwyer
Researcher

My research interests include distributive justice; the principles of responsibility, desert, and control; and reproducible research with R.