Mother Jones
<!DOCTYPE html PUBLIC “-//W3C//DTD HTML 4.0 Transitional//EN” “http://www.w3.org/TR/REC-html40/loose.dtd”>
#wage_calc
font-family: “Trebuchet MS”, Helvetica, sans-serif;
font-size:1.1em;
width: 612px;
padding:10px;
background-color: #7AB3D1;
#wage_calc h3
font-size: 1.3em;
margin:0px;
color:#1D5880;
text-transform: uppercase;
letter-spacing: 1px;
#wage_calc p
margin:2px;
#wage_calc label
display:block;
margin-top: .5em;
margin-bottom: 1em;
#current_wages
margin-bottom:1em;
margin-left: ;
padding: 5px;
#input_dollar
margin-left: 1.5em;
#calculate
background-color: #3799C4;
border: 4px solid #1D5880;
color: #FCFBF3;
font-family: “Trebuchet MS”, Helvetica, sans-serif;
font-weight: bold;
letter-spacing: 1px;
line-height: normal;
text-transform: uppercase;
margin-left: 4.3em;
padding: .5em 2.6em .5em 2.6em;
cursor: pointer;
-moz-transition: all 0.15s;
-o-transition: all 0.15s;
-webkit-transition: all 0.15s;
transition: all 0.15s;
span.dollar,span#final_result
color: #FCFBF3;
font-size: 1.5em;
font-weight: bold;
#wage_calc footer
margin-top: 3em;
font-size: .7em;
line-height: normal;
text-align: left;
The richest 1 percent of Americans have seen their average income jump more than 270 percent over the past five decades. Meanwhile, the average income of the least wealthy 90 percent of Americans grew an anemic 22 percent during that time. (Those figures are based on inflation-adjusted real dollars.)
So how much would you be earning today if the phenomenal income growth at the very top of the income scale had trickled down to most Americans? Use this calculator to find out.
How much do you currently make in a year? $ Please enter a dollar amount.
If most Americans’ incomes had grown at the same rate as the 1 percent’s over the past 50 years, you currently would be making $0, the same amount you already do. Congrats! You’re already in the top 1 percent of earners!
Source: Mother Jones calculations based on data from the World Top Incomes Database
In other words, if you’re in the bottom 90 percent of earners, your current income would be an estimated 205 percent higher if the vast majority of incomes had kept up with the gains experienced by the superwealthy.
At the lowest end of the bottom 90 percent, the difference is even more extreme: If the minimum wage had kept up with the 1 percent, it would be nearly 250 percent higher than it is today.
Back in the real world, most Americans’ incomes have stagnated over the past few decades. Meanwhile, top incomes have skyrocketed, leaving middle- and low-income Americans behind and accelerating the growth of the income gap that began opening in the 1980s.
Methodology: The data used to the make this calculator is from the World Top Incomes Database. All income figures used to make the calculator are in 2012 dollars and do not include capital gains. Your hypothetical income is an estimate based on applying the overall change in the average income of the top 1 percent between 1960 and 2012 to the average incomes in 2012 for the bottom 90th, the top 10th to 5th, and top 5th to 1st income percentiles.
Money Bag designed by Roman Trilo-Denysyuk from The Noun Project. Calculator image by DVARG/Shutterstock
jQuery(‘#mojo_calculator’).submit(function()
var dollar_regex = /^$?0-9+(.0-90-9)?$/;
var value = jQuery(‘#current_wages’).val();
if (!dollar_regex.test(value))
jQuery(‘#calc_input_error’).show();
return;
jQuery(‘#calc_input_error’).hide();
value.replace(‘$’, ”);
value = parseFloat(value);
var one_percent_flag = false;
if (value < 112001)
value = value * 3.05031;
else if (value < 158000)
value = value * 2.08079;
else if (value < 372000)
value = value * 1.71262;
else
value = value;
one_percent_flag = true;
value = value.toFixed(0);
value = addCommas(value);
jQuery(‘#final_result’).text(value);
if (one_percent_flag)
jQuery(‘#one_percent_income’).show();
else
jQuery(‘#one_percent_income’).hide();
jQuery(‘#wage_results’).show();
});
function addCommas(nStr)
nStr += ”;
var x = nStr.split(‘.’);
var x1 = x0;
var x2 = x.length > 1 ? ‘.’ + x1 : ”;
var rgx = /(d+)(d3)/;
while (rgx.test(x1))
x1 = x1.replace(rgx, ‘$1’ + ‘,’ + ‘$2’);
return x1 + x2;
}
This article –
What If Your Income Grew as Fast as The 1 Percent’s? Try Our Calculator.