What will really make it sink in is looking at what the highest paid athlete you know of earns in a year and estimate what their earnings are while they’re just there sitting in the couch, having a meal ($25k accumulates during an average meal) or taking a crap ($2500) - they earn about $200k in their sleep, for example. Then realize they would need to earn that much for 800 years to have as much money as Jeff Bezos.
I was sure your numbers were wrong but if we assume $200,000 in your sleep means $600,000 a day, that’s $219,000,000 per year. Bezos has an estimated 220,000,000,000 dollars as of May 2025. $220,000,000,000 per year / $219,000,000 per year = 1004.6 years. Wild.
import core.stdc.stdio;
void main() {
double wealth = 0;
double pay = 600_000 * 365;
double api = .07;
for (int year = 0; ++year;)
{
wealth = wealth * 1.07 + pay;
if (wealth >= 222_000_000_000.0)
{
printf("year = %d\n", year);
break;
}
}
}