Live data from Hacker News

What Does One Billion Dollars Look Like?

whatdoesonebilliondollarslooklike.website

61–70 of 107 posts

Re: What Does One Billion Dollars Look Like?

#61
post #51

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.

Let's have some fun. $600,000/per day, with an annual investment return of 7%, reaches $220b in 64 years, not 1004.

    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;
        }
    }
    }

Re: What Does One Billion Dollars Look Like?

#63

Earlier quoted context omitted.

I always thought one of the biggest problems with modern education is not spending enough time teaching people about interest rates/return on investment. If everyone just understood what you're pointing out here--just really "got it"--I feel like the world would be in a much better place. It's not dire (I don't think?), and I know we've come a very long way, but, man, it could be so much better.

Maybe. A lot of these calculations are usually based on historical averages for the US stock market. For the economy to keep moving, they need people to spend their money. Eventually it may all even out, where people spend so much once they hit a certain point in their life/portfolio, that it allows for everyone else to be saving and investing everything in the first few decades of life. But a transition period where…

Except for some extremists, I don't think the advice is to save and invest everything. Instead, you should try to be saving and investing a meaningful amount of your income.

Re: What Does One Billion Dollars Look Like?

#64

Earlier quoted context omitted.

In my neighborhood a million dollars would have a nice home, and 3 rental properties, for a total of 4 homes.

Four houses. You have one home. The rest are just houses.

Do people live in them? Then they're homes.

Re: What Does One Billion Dollars Look Like?

#65
> consider the individual buying power of a billionaire

This is what I never understand about posts like this. The buying power of an individual for their own selfish purposes becomes meaningless at a surprisingly low number. One billion cannot even be spent as one or a few transactions.

Re: What Does One Billion Dollars Look Like?

#67
This visualization worked for me: https://www.celebritynetworth.com/articles/entertainment-art...

$1 million in $100 bills can be -tightly- packed into a standard briefcase.

$1 billion in $100 bills is ten 4-foot high pallets.

$1 trillion, 10000 of those pallets, covers a US football-field sized area.

Re: What Does One Billion Dollars Look Like?

#68

> consider the individual buying power of a billionaire This is what I never understand about posts like this. The buying power of an individual for their own selfish purposes becomes meaningless at a surprisingly low number. One billion cannot even be spent as one or a few transactions.

How much does a sports franchise cost? A newly constructed high-rise? A private island? A contract for a ~~private army~~ security force? A bribe?

Re: What Does One Billion Dollars Look Like?

#69
When you understand the extreme inequality; that most people don't have $100K and some people have billions, and you understand how the monetary system works to compound the billions, it puts into perspective how the system functions.

If the system seems like it's about 'value creation' it's only because billionaires let it be that way. With that kind of money, you can probably run the whole system however you want.

That kind of money cannot buy that many goods and services without causing hyperinflation... What can that money be used for? Business asset acquisitions, luxury real estate, fine art and political manipulations... Either way they're getting marginal benefits out of it; the asset valuations are likely inflated by billionaires' own wealth competing against one another. Ultimately, once that level of wealth is reached, the whole market becomes about political influence... And even this can cause inflation; but this kind of inflation can be offset by oppression; you can use money to incentivize people to control each other in a hierarchy.

In such society, as a regular person, you need to pick a billionaire tribe because the money flows top-down. If you're not in any billionaire tribe, what will happen is everyone else who is will be getting paid but you won't be getting paid. This is sad because the truth (about various things) is often a middle-ground between different billionaire perspectives or sometimes it's diametrically opposed to any billionaire's perspective. It's already a kind of monarchy, fueled by fiat money creation.

Re: What Does One Billion Dollars Look Like?

#70

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.

Mindboggling, thank you. Right on that note is one of my favourite tweets on the internet: > Have you ever considered the possibility that Jeff Bezos just works 130 billion times harder than you?

It's not accurate to think of his billionaire status as compensation. Jeff Bezos owns ~10% of a $2.2T company. That's the whole story. He never even took a penny of stock comp his entire career at Amazon.

It really is an important clarification. I have worked at startups where the founders worked several times harder than I did and they ended up with $0 and one of them in debt.

Post reply on HN