# Agent-based Systems for Modeling Wealth Distribution

**Author:** Philipp D. Dubach | **Published:** August 30, 2025 | **Updated:** February 22, 2026
**Categories:** Economics
**Keywords:** wealth distribution model, agent-based wealth simulation, wealth tax effect on inequality, Pareto distribution wealth, affine wealth model, wealth tax macroeconomics, inequality economics modeling, fiscal policy simulation

## Key Takeaways

- The Affine Wealth Model matches 27 years of U.S. wealth data with less than 0.16% average error, showing extreme concentration emerges from random transactions alone.
- Even a 1% wealth tax shifts the simulated distribution from Pareto extremes to a stable equilibrium where top agents hold at most 3-4x their starting wealth.
- Roughly 10% of the U.S. population holds negative net worth, a feature the Affine Wealth Model captures by allowing agents to go below zero.

---

A question [Gary Stevenson](https://www.youtube.com/garyseconomics), the self-proclaimed [best trader in the world](https://on.ft.com/4n7z5jD), has been asking for some time is [if a wealth tax can fix Britain's economy](https://uclrethinkingeconomics.com/2025/06/25/gary-stevenson-can-a-wealth-tax-fix-britains-economy/).
> [...] he believed the continued parlous state of the economy would halt any interest rate hikes. The reason? Because when ordinary people receive money, they spend it, stimulating the economy, while the wealthy tend to save it. But our economic model promotes the concentration of wealth among a select few at the expense of everybody else's living standards.

*Owen Jones on Gary Stevenson for [The Guardian](https://www.theguardian.com/commentisfree/2022/jan/13/super-rich-spend-2m-on-whisky-wealth-tax-pandemic)*

Something I generally find very useful and appealing is visualizing systems, models and complexities. Any wealth distribution model is by nature a complex system, and agent-based simulation is one of the best ways to make that complexity visible. The [Affine Wealth Model](https://arxiv.org/abs/1604.02370)
> a stochastic, agent-based, binary-transaction Asset-Exchange Model (AEM) for wealth distribution that allows for agents with negative wealth

elegantly demonstrates how random transactions inevitably lead to Pareto distributions without intervention. In this [Jupyter Notebook Fabio Manganiello](https://notebooks.manganiello.tech/fabio/wealth-inequality.ipynb) provides great visualizations of the wealth model. He shows how wealth distributes in an open market where a set of agents trades without any mechanisms in place to prevent a situation of extreme inequality.
<a href="#lightbox-wealth-dist-0-tp5-tax-gif-0" style="display: block; width: 80%; margin: 0 auto; padding: 1.5rem 0; text-decoration: none;">
  <picture class="img-lightbox">
    
    <source media="(max-width: 768px)" 
            srcset="https://static.philippdubach.com/cdn-cgi/image/width=320,quality=80,format=webp/wealth-dist-0-tp5-tax.gif 320w,
                    https://static.philippdubach.com/cdn-cgi/image/width=480,quality=80,format=webp/wealth-dist-0-tp5-tax.gif 480w,
                    https://static.philippdubach.com/cdn-cgi/image/width=640,quality=80,format=webp/wealth-dist-0-tp5-tax.gif 640w,
                    https://static.philippdubach.com/cdn-cgi/image/width=960,quality=80,format=webp/wealth-dist-0-tp5-tax.gif 960w,
                    https://static.philippdubach.com/cdn-cgi/image/width=1200,quality=80,format=webp/wealth-dist-0-tp5-tax.gif 1200w"
            sizes="80vw">
    
    
    <source media="(max-width: 1024px)" 
            srcset="https://static.philippdubach.com/cdn-cgi/image/width=768,quality=80,format=webp/wealth-dist-0-tp5-tax.gif 768w,
                    https://static.philippdubach.com/cdn-cgi/image/width=1024,quality=80,format=webp/wealth-dist-0-tp5-tax.gif 1024w,
                    https://static.philippdubach.com/cdn-cgi/image/width=1440,quality=80,format=webp/wealth-dist-0-tp5-tax.gif 1440w"
            sizes="80vw">
    
    
    <source media="(min-width: 1025px)" 
            srcset="https://static.philippdubach.com/cdn-cgi/image/width=1200,quality=80,format=webp/wealth-dist-0-tp5-tax.gif 1200w,
                    https://static.philippdubach.com/cdn-cgi/image/width=1600,quality=80,format=webp/wealth-dist-0-tp5-tax.gif 1600w,
                    https://static.philippdubach.com/cdn-cgi/image/width=2000,quality=80,format=webp/wealth-dist-0-tp5-tax.gif 2000w"
            sizes="80vw">
    
    
    <img src="https://static.philippdubach.com/cdn-cgi/image/width=1200,quality=80/wealth-dist-0-tp5-tax.gif" 
         alt="Animation of two side-by-side histogram charts showing wealth distribution. Left chart titled Wealth Distribution (wealth tax: 0%) Right chart titled Wealth Distribution (wealth tax: 5%)" 
         class=""
         width="1200"
         height="630"
         loading="lazy"
         decoding="async"
         style="width: 100%; height: auto; display: block;">
  </picture>
</a>



It can be seen in the left graph that with no tax wealth quickly stashes up in the pockets of a very small group of agents, while most of the other agents end up piling up in the lowest bucket. As we introduce a wealth tax of 25%, then 5% (right graph) and 1% we can see how the distribution becomes more even and therefore more desirable from the perspective of wealth equality, and also very stable over time, with the agents in the highest buckets quickly having at most 3-4x of their initial amount.

As with any model, the paper as well as the simulation have it's [limitations](https://notebooks.manganiello.tech/fabio/wealth-inequality.ipynb#Limitations), but again my interest is more in the way a few lines of code can visualize a economic relationships elegantly. It would be interesting to further investigate: (1) How sensitive are these equilibrium distributions to the transaction constraint (max_exchanged_share)? Does allowing larger transfers accelerate concentration or fundamentally alter the [steady-state Gini coefficient](https://en.wikipedia.org/wiki/Gini_coefficient)? (2) The above wealth tax implementation taxes the sender - but what happens if we model progressive taxation on received amounts above median wealth instead? Does the locus of taxation matter for distributional outcomes?


---

## Frequently Asked Questions

### Why do random transactions lead to wealth concentration?

The Affine Wealth Model shows that even when agents start with equal wealth and trade randomly, a Pareto distribution emerges naturally. Without any structural advantages or unfair rules, the mathematics of repeated random exchanges causes wealth to pile up among a small number of agents while most end up near the bottom. This happens because small random advantages compound over time, just as they do in real economies.

### How does a wealth tax affect inequality in agent-based simulations?

In simulations of the Affine Wealth Model, introducing even a modest wealth tax of 1% to 5% dramatically changes the outcome. The distribution shifts from extreme concentration to a more stable, even spread where the wealthiest agents hold at most 3-4 times their initial amount. The redistribution mechanism prevents runaway accumulation and produces a steady-state equilibrium.

### What is the Affine Wealth Model?

The Affine Wealth Model is a stochastic, agent-based, binary-transaction Asset-Exchange Model for wealth distribution. It was designed to allow for agents with negative wealth, reflecting real-world conditions where roughly 10% of the U.S. population holds negative net worth due to mortgages and student loans. The model has been empirically validated against 27 years of U.S. wealth data with an average error of less than 0.16%.

### Can simple economic models accurately predict real-world wealth distribution?

Yes. Agent-based models with relatively few parameters have demonstrated remarkable accuracy in matching empirical wealth data across developed countries. The Affine Wealth Model reproduces both the Pareto distribution observed in the top 10% of the population and the exponential distribution seen in the lower 90%, validating the principle that a few structural rules can generate the full complexity of real wealth distributions.


---

*Philipp D. Dubach — [http://philippdubach.com/](http://philippdubach.com/) — 2025*