Interactive Exploration Of The Gender Pay Gap

Dec 15, 2018


When I was younger, my mom would tell me: "You have to work 110% as hard to as a man to get the same pay." As a young girl, I scoffed at my mom's antiquated views. "I'll never face the same out-dated sexist views and practices she faced. Things are different now," I thought. A recent experience made me think back to her advice. And now that I'm older and more skilled in programming, let's see if we can use some simple mathematical models and Javascript to interactively explore the basis of the gender pay gap.

Does the gender pay gap still exist? Well, it depends on how you look at it.

Let's consider a simple mathematical model of a hypothetical scenario. We will have our hypothetical scenario take place in our favorite setting: academia. Consider a scenario where your salary is a direct function of your publication record. Specifically, consider a linear model where your salary starts are some baseline and then increases by $cA for every first author paper, $cB for every middle author paper, and $cC for every acknowledgement (with cA > cB > cC generally). Let's make up some numbers for demonstration purposes.
Base Salary (baseSalary): $

Number of first author papers (mA):
Number of middle author papers (mB):
Number of acknowledgements (mC):

Salary increase per first author paper (cA): $
Salary increase per middle author paper (cB): $
Salary increase per acknowledgement (cC): $

Salary = baseSalary + cA*mA + cB*mB + cC*mC = $

When we look at the salaries of men and women in academia, which are both direct functions of the number of papers they have, we may see that women on average have lower salaries. But this can fully be explained by their poorer publication records (fewer first author papers, more acknowledgements). Therefore, their lower salaries are reflective of their lower productivity. Thus, we can claim there is no true 'gender pay gap'. Indeed, this is often the rationale behind arguments "debunking" the gender pay gap.

However, based on my own experience, a woman's contributions may be more frequently dismissed as less substantial. Consider what would happen if a man insists his contribution is worthy of first authorship whereas a women's same contribution is regarded as warranting a middle authorship. Or similarly, a man's contribution is considered sufficient for middle authorship whereas a women's same contribution is seen as easy or trivial and thus only gets her an acknowledgement. More concretely, consider that a man makes contributions resulting in mA first author papers, mB middle author papers, and mC acknowledgements as previously. A woman makes the same contributions. But d% of what should have been first author papers result in middle author papers and d% of what should have been middle author papers result only in acknowledgements. Even if such sexist differential assessments of your contribution's worth occurs in only a small fraction of papers i.e. d% is small, such seemingly minor biases could propagate into real-world financial differences. Since salaries are direct functions of publication record, biases in authorship would propagate to result in what we could view as a 'gender pay gap'.
Percentage of papers where women's contributions are given less credit (d): %

wA = mA - d/100*mA
wB = mB + d/100*mA - d/100*mB
wC = mC + d/100*mB

Women's Salary = baseSalary + cA*wA + cB*wB + cC*wC = $

"Gender Pay Gap" = $

ie. a woman doing the same work would earn cents to a man's dollar.

Such a scenario, if true, would suggest that our previous seemingly logical quantication of "productivity" (publication record) was itself liable to gendered biases and that a 'gender pay gap' does indeed exist but not in an straightforward manner. This scenario, while hypothetical, is unfortunately not completely unrealistic. Multiple studies have noted the gendered system of academic publishing at all stages of the publication pipeline (not just with respect to authorship, but also reviewership and editorship) potentially contributing to the likelihood of our hypothetical scenario manifesting in reality. Another study of high-impact medical journals from 1994 to 2014 found that only 30% of the research papers had female first authors despite women representing closer to 40% of physician researchers, suggesting that women are less likely to be first authors than expected. The probability of becoming an academic itself is a function of the number of 1st authors so biases in publication rate and authorship may propagate to influence the number of women faculty. And of course, this issue is not limited to women and may disproportionally impact other particular groups and individuals as well.

What we can do?

So what is the solution? If say d% of women's efforts are insufficiently credited, then women will need to publish more to make up the resulting wage gap. Consider how many additional first author papers a woman would need to publish in order to make up the gender pay gap. And let's say the additional publications take a certain amount of quantiable 'units' of effort. Let's see if my mom's 110% guess is far off!
Effort needed to produce a first-author paper (effortA):
Effort needed to produce a middle author paper (effortB):
Effort needed to produce an acknowledgements paper (effortC):

additionalPapers = (salary - wSalary)/cA/(1-d)
manEffort = mA*effortA + mB+effortB + mC*effortC
womanEffort = (mA+additionalPapers)*effortA + mB+effortB + mC*effortC
moreEffort = womanEffort / manEffort * 100

Women need to work % as hard!

Conclusion

Of course this is just an oversimplied mathematical model and simulation. The real world is much more complex and none of the parameters used here are not actually estimated from any real data. But the trends it highlights may not be far off. And the trends that we can see from tinkering with this simulation highlight how seemingly minor inequalities such as not getting the appropriate credit for your contributions on a paper may propagate to have tangible financial and career consequences. Therefore, those in academia must do everything we can to minimize the percentage of our work that's improperly credited in the first place. We must do our best to minimize the d%. But as long as this d% is nonzero, we may still need to work harder to achieve the same outcomes.

On the flip side, if and when we have the opportunity to establish or influence authorship lists, we must do better to make sure that all of our students, in particular those who are at risk of being marginalized and having their contributions dismissed, are properly credited for their contributions. In this manner, everyone has a role to play in paving the way towards a more equitable future in academia and beyond.