Earlier quoted context omitted.
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; } } }
What Does One Billion Dollars Look Like?
81–90 of 107 posts
Re: What Does One Billion Dollars Look Like?
#82Earlier quoted context omitted.
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…
> . If we are seeing slowing growth, or even population decline, can we expect the markets to contract right a long with the population. What will that mean for everyone’s retirement accounts? Shit, the bigger scarier one is housing and ss. A huge percentage of people's retirement is either directly in housing (i.e. their house is their only asset), or indirectly in housing via their (mbs or other mortgage related bo…
Re: What Does One Billion Dollars Look Like?
#83Earlier 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.
> 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?), Maybe, but it also is predicated on a market like today's market, where the average American saves approximately zero dollars and has to work until social security. If everyone saved a lot, you'd get a different situation. Probably a better situation…
Re: What Does One Billion Dollars Look Like?
#84Earlier quoted context omitted.
> 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?), Maybe, but it also is predicated on a market like today's market, where the average American saves approximately zero dollars and has to work until social security. If everyone saved a lot, you'd get a different situation. Probably a better situation…
The average American might be able to save more and work fewer years if the average American didn't make the economically self-harming and unnecessary average spending decisions that average Americans make on social status signifiers, luxury goods, depreciating liabilities, etc.
Re: What Does One Billion Dollars Look Like?
#85"The average American household spent $87,432 in 2021." That number seems awfully high to me? That's more than I am seeing the average household makes in 2023.
For the average, Jeff bezos is pulling it up.
Re: What Does One Billion Dollars Look Like?
#86Earlier quoted context omitted.
> I also figure he, like Elon Musk, pays orders of magnitude more than his fair share, if we consider the definition for "fair share" to mean everyone pays the same amount of direct cash transfer into the system and gets the same amount of direct cash receipt out of the system. I appreciate the clarity, but this is a bizarre definition of fair share. Do you really believe that everyone gets the same amount of usage f…
>Do you really believe that everyone gets the same amount of usage from, and contributes to the same amount of wear and tear on, municipal and infrastructural resources? No, I do not believe that, but it's worth noting that taxing income has no direct relationship to usage-based taxation of public resources. There are people who pay millions in income taxes while making negligible use of roads, and there are net tax…
Lacking that utopia, we have to estimate. You say income taxes are an unfair mechanism; what do you think is fairer?
Re: What Does One Billion Dollars Look Like?
#87$1 billion dollars looks like $20-$35 million dollars a year of indefinite spending, inflation adjusting, depending on the exact form of the billion dollars and the tax rates involved. So, spending 100% of the after tax income of like 75 (well paid!) staff engineers at a big tech company in CA, but without having any job.
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.
Re: What Does One Billion Dollars Look Like?
#88Earlier quoted context omitted.
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; } } }
There appears to be an unspoken normative view being asserted throughout the thread that people who do not invest their money and take advantage of compounding should achieve outcomes comparable to those who do invest their money and take advantage of compounding, essentially idealizing the elimination of the opportunity cost of not strategically deploying capital, discounting the benefits accrued to those who can do…