-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1943 lines (1855 loc) · 106 KB
/
Copy pathindex.html
File metadata and controls
1943 lines (1855 loc) · 106 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Abundance — what humanity actually produces, per person</title>
<meta name="description" content="The world produces 1.4× the calories, 287× the water, 3.8× the electricity, and 12× the income per person that minimum needs require. A primary-sourced per-capita arithmetic of global production — anchored by Amartya Sen's Nobel-winning entitlement theory, twelve cash-transfer pilots, and meta-analyses across 279 studies. Every number cited. CC0.">
<meta name="keywords" content="abundance, scarcity, universal basic income, UBI, per capita arithmetic, redistribution, world production, world GDP, global hunger, poverty line, primary source, Omelas, Amartya Sen, entitlement theory, Bengal famine, cash transfer, GiveDirectly, Alaska Permanent Fund, Bolsa Familia, Stockton SEED, World Inequality Lab, Piketty, Wilkinson Pickett, Spirit Level, Acemoglu inclusive institutions, Ostrom commons, demographic transition, food waste, freshwater scarcity, Modern Energy Minimum">
<meta name="author" content="Eli Vargas (lordbasilaiassistant-sudo)">
<meta name="theme-color" content="#0a0b0e">
<meta name="format-detection" content="telephone=no">
<link rel="canonical" href="https://lordbasilaiassistant-sudo.github.io/Abundance/">
<link rel="alternate" hreflang="en" href="https://lordbasilaiassistant-sudo.github.io/Abundance/">
<link rel="alternate" hreflang="es" href="https://lordbasilaiassistant-sudo.github.io/Abundance/lang/es/">
<link rel="alternate" hreflang="x-default" href="https://lordbasilaiassistant-sudo.github.io/Abundance/">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- OpenGraph -->
<meta property="og:title" content="Abundance — the world already produces enough.">
<meta property="og:description" content="Primary-sourced per-capita arithmetic. Food 1.4×, water 287×, electricity 3.8×, GDP 12× their respective minimum-need thresholds. Every number cited. CC0.">
<meta property="og:type" content="article">
<meta property="og:url" content="https://lordbasilaiassistant-sudo.github.io/Abundance/">
<meta property="og:image" content="https://lordbasilaiassistant-sudo.github.io/Abundance/og.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="The world already produces enough. Food 1.4x, water 287x, electricity 3.8x, GDP 12x their respective minimum-need thresholds.">
<meta property="og:site_name" content="Abundance">
<meta property="article:published_time" content="2026-05-15T00:00:00Z">
<meta property="article:modified_time" content="2026-05-15T00:00:00Z">
<!-- Twitter / X -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Abundance — the world already produces enough.">
<meta name="twitter:description" content="Per-capita arithmetic with primary-source citations. Food 1.4×, water 287×, electricity 3.8×, GDP 12× their thresholds.">
<meta name="twitter:image" content="https://lordbasilaiassistant-sudo.github.io/Abundance/og.png">
<meta name="twitter:image:alt" content="Headline arithmetic from the Abundance site.">
<link rel="stylesheet" href="style.css">
<!-- Structured data for search engines and AI assistants -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Article",
"@id": "https://lordbasilaiassistant-sudo.github.io/Abundance/#article",
"headline": "The world already produces enough. The question is whether we admit it.",
"alternativeHeadline": "Abundance: a primary-sourced per-capita arithmetic of global production",
"description": "A single-page, fully-cited arithmetic check of whether aggregate global production of food, water, electricity, and economic output is sufficient to meet every human's documented minimum needs. Includes Sen's entitlement framing, the Omelas question, twelve cash-transfer pilots, a 114-study Bayesian meta-analysis (Crosta et al 2024), and a 165-study ODI systematic review (Bastagli et al 2016).",
"image": {
"@type": "ImageObject",
"url": "https://lordbasilaiassistant-sudo.github.io/Abundance/og.png",
"width": 1200,
"height": 630
},
"datePublished": "2026-05-15",
"dateModified": "2026-05-15",
"author": { "@type": "Person", "name": "Eli Vargas (lordbasilaiassistant-sudo)" },
"publisher": {
"@type": "Organization",
"name": "Abundance",
"logo": {
"@type": "ImageObject",
"url": "https://lordbasilaiassistant-sudo.github.io/Abundance/apple-touch-icon.png",
"width": 180,
"height": 180
}
},
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"isAccessibleForFree": true,
"url": "https://lordbasilaiassistant-sudo.github.io/Abundance/",
"inLanguage": ["en", "es"],
"wordCount": 7400,
"articleSection": [
"Per-capita arithmetic",
"Money / UBI feasibility",
"Kinds of scarcity",
"Omelas question",
"Cash-transfer pilots",
"Redistribution calculator",
"Historical context",
"FAQ",
"Methodology and sources"
],
"keywords": "abundance, scarcity, universal basic income, UBI, redistribution, per capita, world production, world GDP, hunger, poverty, Amartya Sen, Bengal famine, entitlement failure, Omelas, GiveDirectly, Alaska Permanent Fund, Bolsa Familia, cash transfer evidence",
"speakable": {
"@type": "SpeakableSpecification",
"cssSelector": ["#thesis", ".lede", ".hero-stats"]
},
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://lordbasilaiassistant-sudo.github.io/Abundance/"
},
"hasPart": [
{ "@type": "WebPage", "@id": "https://lordbasilaiassistant-sudo.github.io/Abundance/countries.html", "name": "Per-country drill-down" },
{ "@type": "WebPage", "@id": "https://lordbasilaiassistant-sudo.github.io/Abundance/case-studies.html", "name": "Country case studies" },
{ "@type": "WebPage", "@id": "https://lordbasilaiassistant-sudo.github.io/Abundance/embed/calculator.html", "name": "Embeddable calculator" },
{ "@type": "WebPage", "@id": "https://lordbasilaiassistant-sudo.github.io/Abundance/bibliography.md", "name": "Academic bibliography" }
],
"citation": [
"UN World Population Prospects 2024",
"IMF World Economic Outlook April 2026",
"FAO Food Outlook 2024",
"FAO State of Food Security and Nutrition in the World 2025",
"IEA Electricity 2024",
"WHO Global Health Expenditure Report 2024",
"World Bank June 2025 Update to Global Poverty Lines",
"UN-Habitat 2024 / UN DESA",
"SIPRI Trends in World Military Expenditure 2024",
"UBS Global Wealth Report 2024",
"Banerjee, Faye, Krueger, Niehaus, Suri (2023) Universal Basic Income RCT, Kenya",
"Jones & Marinescu (2022) American Economic Journal: Economic Policy 14(2):315",
"Salehi-Isfahani & Mostafavi-Dehzooei (2018) Journal of Development Economics 135:349",
"West, Castro, Samra, Coltrera (2023) Journal of Urban Health 100:1184",
"Wiessner (2014) PNAS 111(39):14027",
"Ekirch (2024) Medical History, Cambridge Core",
"Conard, Malina, Münzel (2009) Nature 460:737",
"Larsen (1995) Annual Review of Anthropology 24:185",
"Sen (1981) Poverty and Famines: An Essay on Entitlement and Deprivation",
"Crosta, Karlan, Ong, Rüschenpöhler, Udry (2024) Unconditional Cash Transfers: A Bayesian Meta-Analysis",
"Bastagli, Hagen-Zanker et al (2016) ODI Rigorous Review of cash transfers",
"Costello et al (2003) JAMA 290(15):2023 — Cherokee casino dividend",
"Soares et al / World Bank — Brazil Bolsa Família evaluations",
"Chancel, Piketty, Saez, Zucman — World Inequality Report",
"Wilkinson & Pickett (2009) The Spirit Level",
"Acemoglu, Johnson, Robinson — Why Nations Fail (2024 Nobel)",
"Ostrom (1990) Governing the Commons (2009 Nobel)",
"Banerjee & Duflo (2011) Poor Economics (2019 Nobel)"
]
},
{
"@type": "Dataset",
"@id": "https://lordbasilaiassistant-sudo.github.io/Abundance/data/essentials.json#dataset",
"name": "Abundance — global per-capita essentials, with primary-source citations",
"description": "Structured JSON dataset of global production figures (food, water, electricity, GDP) and documented minimum-need thresholds, each with primary-source citation, year, and unit. Every ratio on the main page is computed live from these values.",
"url": "https://lordbasilaiassistant-sudo.github.io/Abundance/data/essentials.json",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"creator": { "@type": "Person", "name": "Eli Vargas (lordbasilaiassistant-sudo)" },
"datePublished": "2026-05-15",
"isAccessibleForFree": true,
"encodingFormat": "application/json",
"keywords": "world population, world GDP, food calorie supply, freshwater, electricity, poverty line, military spending"
},
{
"@type": "Dataset",
"@id": "https://lordbasilaiassistant-sudo.github.io/Abundance/data/countries.json#dataset",
"name": "Abundance — 91 countries × 10 World Bank indicators",
"description": "Per-country indicator dataset: population, GDP, GDP per capita, military spending, health spending, poverty headcount, electricity, broadband, life expectancy, renewable freshwater. Fetched live from the World Bank Open Data API.",
"url": "https://lordbasilaiassistant-sudo.github.io/Abundance/data/countries.json",
"license": "https://datacatalog.worldbank.org/public-licenses",
"creator": { "@type": "Organization", "name": "World Bank Open Data" },
"datePublished": "2026-05-15",
"isAccessibleForFree": true,
"encodingFormat": "application/json"
},
{
"@type": "Dataset",
"@id": "https://lordbasilaiassistant-sudo.github.io/Abundance/data/pilots.json#dataset",
"name": "Abundance — cash-transfer pilot evaluations",
"description": "Structured citations for twelve cash-transfer evaluations: GiveDirectly Kenya RCT, Alaska Permanent Fund, Iran 2011, Stockton SEED, Brazil Bolsa Familia, Cherokee casino dividend, Finland Basic Income Experiment, Baby's First Years (US), Manitoba Mincome, Mexico PROGRESA, Malawi & Zambia government transfers, and the SEWA/UNICEF India basic-income pilots.",
"url": "https://lordbasilaiassistant-sudo.github.io/Abundance/data/pilots.json",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"datePublished": "2026-05-15",
"isAccessibleForFree": true,
"encodingFormat": "application/json"
},
{
"@type": "BreadcrumbList",
"@id": "https://lordbasilaiassistant-sudo.github.io/Abundance/#breadcrumb",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Abundance",
"item": "https://lordbasilaiassistant-sudo.github.io/Abundance/"
}
]
},
{
"@type": "FAQPage",
"@id": "https://lordbasilaiassistant-sudo.github.io/Abundance/#faq",
"mainEntity": [
{
"@type": "Question",
"name": "If we give people a universal income, won't they stop working?",
"acceptedAnswer": {
"@type": "Answer",
"text": "No. Every well-designed evaluation finds either no labor-supply effect or a positive one. GiveDirectly's Kenya RCT (Banerjee, Faye, Krueger, Niehaus, Suri 2023) found no labor reduction across three transfer designs. Jones & Marinescu's 2022 study of Alaska's 40+ year Permanent Fund Dividend found no aggregate labor-supply reduction. Salehi-Isfahani & Mostafavi-Dehzooei (2018, J. Dev. Econ.) found Iran's 2011 universal transfer had no negative effect on labor and positive effects on women's and self-employed men's labor supply. Stockton SEED (West et al 2023, J. Urban Health) found full-time employment in the treatment group rose 12 percentage points vs 5 in the control group."
}
},
{
"@type": "Question",
"name": "Where would the money actually come from?",
"acceptedAnswer": {
"@type": "Answer",
"text": "A universal $3/day floor for every human costs $8.98 trillion/year, or 8.2% of world GDP. Existing reservoirs from which it could be drawn include: global household wealth $449.9T (UBS 2024), of which $213.8T is held by ~58 million people with net worth above $1M; global military spending $2.7T/year (SIPRI 2024); and an estimated $480-700B/year lost to multinational profit-shifting to tax havens (Zucman, Tørsløv, Wier 2018+). The site's interactive calculator lets readers stress-test their own assumptions."
}
},
{
"@type": "Question",
"name": "Doesn't inflation just eat any universal transfer?",
"acceptedAnswer": {
"@type": "Answer",
"text": "It can, if the transfer is not indexed. Iran's 2011 cash transfer demonstrated this empirically: cumulative 136.5% inflation over five years halved the real value of the transfer and erased ~40% of its poverty-reduction effect (Salehi-Isfahani 2018). The lesson is that indexing matters; it is not a refutation of the concept."
}
},
{
"@type": "Question",
"name": "Doesn't a wealth tax cause capital flight?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Some flight occurs, but the empirical literature finds the magnitude is often much smaller than predicted because most wealth is in illiquid assets (real estate, business ownership, retirement accounts) that cannot be moved as easily as cash. Gabriel Zucman's work (UC Berkeley) on tax-haven leakage estimates that roughly $7.6T of household wealth is offshore — this can be partly recovered through coordinated tax-haven enforcement, an active item on the OECD agenda. The site's redistribution calculator is honest about not modeling flight; the limits section says so."
}
},
{
"@type": "Question",
"name": "Isn't GDP-per-capita just an average that hides distribution?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. The site says exactly this in its methodology and limits sections. GDP is not income; it includes capital depreciation, government spending, and net exports. Average per-capita figures show that the aggregate physical resource is sufficient, which is a necessary precondition for distribution. It is not a sufficient condition. The point of the page is to refute 'we cannot produce enough,' not to argue 'distribution is solved.'"
}
},
{
"@type": "Question",
"name": "Won't lifting people out of poverty cause a population explosion?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The opposite is observed empirically. Fertility rates fall as women gain education, healthcare access, and income — the demographic transition. The UN's medium-variant projection (WPP 2024) is that global population peaks around 10.3B in the 2080s and then declines. Lifting people out of poverty accelerates fertility decline, not population growth."
}
},
{
"@type": "Question",
"name": "Doesn't innovation require inequality?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The empirical literature on long-run growth (Acemoglu, Johnson, Robinson — 2024 Nobel) finds that inclusive institutions, characterized by broad property rights, broad political voice, and broad access to opportunity, outperform extractive institutions over decades. Nordic countries combine high innovation output per capita with low inequality. The argument 'extreme inequality is the price of innovation' is not supported by cross-country evidence."
}
},
{
"@type": "Question",
"name": "Isn't this just communism / Marxism?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Tax-and-transfer is what every modern developed country already does. The arithmetic on this page is independent of any political ideology — it asks whether physical production exceeds physical need, and quantifies what redistribution would cost in dollars. Universal basic income proposals span the political spectrum: Milton Friedman (negative income tax), F.A. Hayek (a minimum income), Martin Luther King Jr., Richard Nixon, Andrew Yang, the GiveDirectly study (Banerjee et al), and Alaska's bipartisan Permanent Fund. The site does not advocate a political program; it shows the math and the pilot evidence."
}
}
]
}
]
}
</script>
</head>
<body>
<main class="container" role="main" itemscope itemtype="https://schema.org/Article">
<header class="masthead">
<div class="eyebrow">
A primary-sourced arithmetic · updated 2026-05-15
·
<a href="lang/es/">Español</a>
·
<a href="https://github.com/lordbasilaiassistant-sudo/Abundance#translations">+ translation</a>
</div>
<h1>The world already produces enough. <em>The question is whether we admit it.</em></h1>
<p class="lede">
Below: four numbers. Each is global production divided by the documented
minimum need, per person. Every number links to a primary source —
FAO, IEA, IMF, WHO, World Bank, UN-Habitat, SIPRI, UBS — and every
redistribution claim cites a peer-reviewed study.
</p>
<div class="hero-stats" role="region" aria-label="Headline per-capita ratios">
<div class="hero-stat">
<div class="label">Food</div>
<div class="ratio" id="hero-food">1.4<span class="x">×</span></div>
<div class="vs">supply ÷ daily<br>caloric need</div>
</div>
<div class="hero-stat">
<div class="label">Water</div>
<div class="ratio" id="hero-water">287<span class="x">×</span></div>
<div class="vs">renewable ÷ WHO<br>basic L/day</div>
</div>
<div class="hero-stat">
<div class="label">Electricity</div>
<div class="ratio" id="hero-energy">3.8<span class="x">×</span></div>
<div class="vs">generation ÷ Modern<br>Energy Minimum</div>
</div>
<div class="hero-stat">
<div class="label">Output (GDP)</div>
<div class="ratio" id="hero-gdp">12<span class="x">×</span></div>
<div class="vs">per capita ÷ World<br>Bank poverty line</div>
</div>
</div>
</header>
<nav class="toc" aria-label="Contents">
<a href="#thesis">1 · The thesis, in one sentence</a>
<a href="#math">2 · The per-capita arithmetic</a>
<a href="#money">3 · The money question — UBI / UHI feasibility</a>
<a href="#scarcity">4 · Three kinds of scarcity</a>
<a href="#omelas">5 · The Omelas question — is the suffering load-bearing?</a>
<a href="#pilots">6 · Where this has already been done</a>
<a href="#dials">7 · Move the dials yourself</a>
<a href="#history">8 · Historical context — work as a recent system</a>
<a href="#limits">9 · Honest limits of this page</a>
<a href="#faq">10 · Common objections, answered</a>
<a href="#act">11 · What this asks of whoever can act</a>
<a href="#sources">12 · Sources & methodology</a>
</nav>
<div class="card tinted-warm" style="margin-bottom:24px">
<p style="margin:0">
<strong>If you can act on this</strong> — there is a short, fully-cited open
letter addressed to anyone with the power to move resources:
<a href="letter.html"><strong>To whoever can end this →</strong></a>.
And a set of free <a href="tools/">in-browser tools</a> (image editor, image
compressor, QR code generator, contrast checker, password generator — no
account, no upload, nothing leaves your device) — manufactured scarcity,
refuted in code.
</p>
</div>
<!-- ============================================================
SECTION 1 — Thesis
Single-paragraph statement of the page's argument, anchored
to Sen (1981). To edit: update prose + the Sen citation.
============================================================ -->
<section id="thesis">
<h2>1 · The thesis, in one sentence</h2>
<p>
For every essential resource where global production data exists, aggregate
human production already exceeds aggregate human need — usually by a wide
margin. Hunger, homelessness, and energy poverty in 2026 are <em>distribution
outcomes</em>, not <em>production outcomes</em>.
</p>
<p>
This is not a new claim. <strong>Amartya Sen won the 1998 Nobel Prize in
Economics</strong> for proving exactly this — that the great famines of
the twentieth century, including the 1943 Bengal famine that killed
~3 million people, occurred during years of <em>adequate or above-average</em>
food production. Famine, Sen showed, is an <em>entitlement failure</em>:
some people lose the legal/economic claim to food while the food is still
there.
(<a href="https://gdsnet.org/Sen1982PovertyandFaminesBook.pdf">Sen, A. (1981). <em>Poverty and Famines: An Essay on Entitlement and Deprivation.</em> Oxford University Press.</a>)
</p>
<p>
This page does not argue policy. It states arithmetic, cites the
experiments that have already tested the policy, and points at the
scholars who have been making this case for forty years.
</p>
</section>
<!-- ============================================================
SECTION 2 — Per-capita arithmetic
Cards for food, water, electricity, GDP, housing, plus new
essentials (insulin, internet, vaccines, sanitation, drinking-water
access, clean cooking, basic education, maternal survival, medicines).
Each value is read from data/essentials.json AND recomputed
in the inline <script> at the bottom of this file.
To add a new essential: see CONTRIBUTING.md
============================================================ -->
<section id="math">
<h2>2 · The per-capita arithmetic</h2>
<p class="small">
Divisor everywhere on this page: <span class="num" id="pop-display">8,200,000,000</span>
people, the UN's mid-2024 estimate
(<a href="https://population.un.org/wpp/assets/Files/WPP2024_Summary-of-Results.pdf">WPP 2024</a>).
For the per-country breakdown see <a href="countries.html"><strong>Abundance · by country →</strong></a>
(sortable World Bank data for 91 countries).
</p>
<!-- FOOD -->
<div class="card" id="card-food">
<h3>Food <span class="tag abundance">abundance exists</span></h3>
<div class="row">
<div class="stat">
<div class="label">Daily food supply, global average</div>
<div class="value accent" id="food-supply">2,950 kcal / person / day</div>
<div class="sub">FAOSTAT food balance sheets, 2021 latest revision</div>
</div>
<div class="stat">
<div class="label">Adult minimum need (reference)</div>
<div class="value" id="food-need">2,100 kcal / person / day</div>
<div class="sub">FAO/WHO/UNU Human Energy Requirements, 2001</div>
</div>
</div>
<div class="row">
<div class="stat">
<div class="label">Ratio: supply ÷ need</div>
<div class="ratio accent" id="food-ratio">1.40<span class="x">×</span></div>
<div class="sub">We currently produce ~40% more calories than the human population needs.</div>
</div>
<div class="stat">
<div class="label">People still in hunger, 2024</div>
<div class="value danger" id="food-hungry">673 million</div>
<div class="sub">FAO SOFI 2025. Coexists with ~32% of food being lost or wasted.</div>
</div>
</div>
<p>
The Bengal famine of 1943 — the most-studied modern famine — occurred
in a year when rice production in Bengal was <em>13% higher</em> than in
1941, a non-famine year. Grain prices rose more than 300% over four
years while agricultural wages rose 30%. People starved because the
money they earned could no longer buy the food that physically existed.
Sen's analysis of this and subsequent famines (Ethiopia 1973, Sahel
1968–73, Bangladesh 1974) established the modern consensus that
starvation in the modern era is overwhelmingly a problem of access, not
production.
</p>
<p class="src">
Sources:
<a href="https://ourworldindata.org/food-supply">FAOSTAT food balance sheets via Our World in Data</a> ·
<a href="https://www.fao.org/4/y5686e/y5686e00.htm">FAO/WHO/UNU energy requirements</a> ·
<a href="https://openknowledge.fao.org/handle/20.500.14283/cd6008en">SOFI 2025</a> ·
<a href="https://www.fao.org/family-farming/detail/en/c/1681058/">FAO + UNEP Food Waste Index 2024</a> ·
<a href="https://gdsnet.org/Sen1982PovertyandFaminesBook.pdf">Sen (1981) <em>Poverty and Famines</em></a>
</p>
</div>
<!-- WATER -->
<div class="card" id="card-water">
<h3>Freshwater <span class="tag uneven">geographically uneven</span></h3>
<div class="row">
<div class="stat">
<div class="label">Renewable freshwater, globally</div>
<div class="value accent" id="water-total">43,000 km³ / year</div>
<div class="sub">FAO AQUASTAT — long-term renewable resources</div>
</div>
<div class="stat">
<div class="label">Per person per day, even split</div>
<div class="value" id="water-pc">14,367 L / person / day</div>
<div class="sub">Math: 43,000 km³ ÷ 8.2B ÷ 365 days</div>
</div>
</div>
<div class="row">
<div class="stat">
<div class="label">WHO intermediate-access threshold</div>
<div class="value" id="water-need">50 L / person / day</div>
<div class="sub">Drinking, cooking, basic hygiene</div>
</div>
<div class="stat">
<div class="label">Ratio: supply ÷ basic need</div>
<div class="ratio accent" id="water-ratio">287<span class="x">×</span></div>
<div class="sub">Globally, ~287 days of basic-access water exist per person per day. The hard problem is moving it.</div>
</div>
</div>
<p class="src">
Sources:
<a href="https://www.fao.org/aquastat/en/overview/methodology/water-resources/">FAO AQUASTAT</a> ·
<a href="https://www.who.int/publications/i/item/WHO-SDE-WSH-03.02">WHO domestic water quantity guidelines</a>
</p>
</div>
<!-- ENERGY -->
<div class="card" id="card-energy">
<h3>Electricity <span class="tag abundance">abundance exists</span></h3>
<div class="row">
<div class="stat">
<div class="label">Global generation, 2024</div>
<div class="value accent" id="energy-total">~30,856 TWh / year</div>
<div class="sub">IEA Electricity 2024 + 2024 growth of ~1,200 TWh</div>
</div>
<div class="stat">
<div class="label">Per person, even split</div>
<div class="value" id="energy-pc">3,763 kWh / person / year</div>
<div class="sub">Math: 30,856 TWh ÷ 8.2B</div>
</div>
</div>
<div class="row">
<div class="stat">
<div class="label">IEA Tier 1 access</div>
<div class="value" id="energy-need-low">100 kWh / person / yr</div>
<div class="sub">Lights, phone charging, fan</div>
</div>
<div class="stat">
<div class="label">Modern Energy Minimum (productive use)</div>
<div class="value" id="energy-need-high">1,000 kWh / person / yr</div>
<div class="sub">Rockefeller Foundation / Energy for Growth Hub</div>
</div>
</div>
<div class="row">
<div class="stat">
<div class="label">Ratio: supply ÷ Tier 1</div>
<div class="ratio accent" id="energy-ratio-low">38<span class="x">×</span></div>
</div>
<div class="stat">
<div class="label">Ratio: supply ÷ Modern Energy Minimum</div>
<div class="ratio accent" id="energy-ratio-high">3.8<span class="x">×</span></div>
</div>
</div>
<p class="src">
Sources:
<a href="https://www.iea.org/reports/electricity-2024/executive-summary">IEA Electricity 2024</a> ·
<a href="https://www.iea.org/articles/defining-energy-access-2020-methodology">IEA energy access definitions</a> ·
<a href="https://www.rockefellerfoundation.org/wp-content/uploads/2020/12/Modern-Energy-Minimum-Sept30.pdf">Modern Energy Minimum (2020)</a>
</p>
</div>
<!-- MONEY -->
<div class="card" id="card-money">
<h3>Output (GDP) <span class="tag abundance">abundance exists</span></h3>
<div class="row">
<div class="stat">
<div class="label">World GDP, 2024 (nominal)</div>
<div class="value accent" id="gdp-total">$110.06 trillion</div>
<div class="sub">IMF WEO April 2026</div>
</div>
<div class="stat">
<div class="label">Per person, even split</div>
<div class="value" id="gdp-pc">$13,422 / person / yr</div>
<div class="sub">Math: $110.06T ÷ 8.2B</div>
</div>
</div>
<div class="row">
<div class="stat">
<div class="label">World Bank extreme poverty line</div>
<div class="value" id="poverty-line">$3.00 / person / day</div>
<div class="sub">2021 PPP, updated June 2025</div>
</div>
<div class="stat">
<div class="label">Ratio: GDP-per-capita ÷ poverty-line annual</div>
<div class="ratio accent" id="gdp-ratio">12.3<span class="x">×</span></div>
<div class="sub">Global per-capita output is ~12× the line at which a human is no longer "in extreme poverty."</div>
</div>
</div>
<p class="src">
Sources:
<a href="https://www.imf.org/external/datamapper/NGDPD@WEO/WEOWORLD">IMF WEO</a> ·
<a href="https://www.worldbank.org/en/news/factsheet/2025/06/05/june-2025-update-to-global-poverty-lines">World Bank, June 2025 poverty line update</a>
</p>
</div>
<!-- INSULIN -->
<div class="card" id="card-insulin">
<h3>Insulin <span class="tag real">manufactured scarcity</span></h3>
<div class="row">
<div class="stat">
<div class="label">Cost-based price to make one human-insulin pen</div>
<div class="value accent" id="insulin-cost">$0.94</div>
<div class="sub">MSF Access / JAMA Network Open (2024)</div>
</div>
<div class="stat">
<div class="label">US list price for the same molecule</div>
<div class="value danger" id="insulin-us">$90.69</div>
<div class="sub">Barber, Sulis et al (2024)</div>
</div>
</div>
<div class="row">
<div class="stat">
<div class="label">Markup over cost</div>
<div class="ratio danger" id="insulin-markup">96<span class="x">×</span></div>
<div class="sub">International price spread of the regular vial: factor of 103.</div>
</div>
<div class="stat">
<div class="label">Adults with diabetes, globally</div>
<div class="value" id="insulin-pop">589 million</div>
<div class="sub">IDF Diabetes Atlas 2024. 81% in low- and middle-income countries.</div>
</div>
</div>
<p>
Insulin was isolated in 1921; in 1923 its discoverers sold the patent to
the University of Toronto for $1 so that it could not be monopolized. A
century later, the molecule costs ~$1 to manufacture and ~$90+
to buy in the United States. This is the cleanest single example on the
page of <em>manufactured scarcity</em>: there is no physical shortage of
insulin. There is a pricing structure protected by patent and supply-chain
consolidation.
</p>
<p class="src">
Source:
<a href="https://msfaccess.org/jama-network-open-estimated-sustainable-cost-based-prices-diabetes-medicines">Barber, Sulis et al (2024). 'Estimated Sustainable Cost-Based Prices for Diabetes Medicines,' JAMA Network Open / MSF Access Campaign</a> ·
<a href="https://diabetesatlas.org/">IDF Diabetes Atlas 11th ed.</a>
</p>
</div>
<!-- INTERNET -->
<div class="card" id="card-internet">
<h3>Internet <span class="tag uneven">distribution failure</span></h3>
<div class="row">
<div class="stat">
<div class="label">Global Internet users, 2024</div>
<div class="value accent" id="net-users">5.5 billion</div>
<div class="sub">68% of world population (ITU 2024)</div>
</div>
<div class="stat">
<div class="label">Still offline</div>
<div class="value danger" id="net-offline">2.6 billion</div>
<div class="sub">1.8B in rural areas; 27% Internet use in low-income countries vs 93% in high-income.</div>
</div>
</div>
<div class="row">
<div class="stat">
<div class="label">Annual global Internet traffic</div>
<div class="value" id="net-traffic">~7.3 zettabytes / year</div>
<div class="sub">Fixed ~6 ZB + mobile ~1.3 ZB (ITU 2024)</div>
</div>
<div class="stat">
<div class="label">Per person, even split</div>
<div class="value" id="net-pc">~890 GB / person / year</div>
<div class="sub">~2.4 GB / person / day</div>
</div>
</div>
<p>
International bandwidth capacity is <span class="num">1,835 Tbps</span>
(TeleGeography 2024), growing 24%/year, and the laid-but-unlit ("dark")
fiber inventory exceeds installed capacity in most countries by multiples.
Aggregate capacity is not the constraint. The gap is the
<span class="num">2.6 billion</span> people without affordable access —
most of them rural, most of them in low-income countries, where
Internet use is 27% vs 93% in rich countries.
</p>
<p class="src">
Sources:
<a href="https://www.itu.int/itu-d/reports/statistics/facts-figures-2024/index/">ITU Facts and Figures 2024</a> ·
<a href="https://blog.telegeography.com/international-internet-bandwidth">TeleGeography Global Bandwidth Research 2024</a>
</p>
</div>
<!-- VACCINES -->
<div class="card" id="card-vaccines">
<h3>Childhood vaccines <span class="tag uneven">distribution failure</span></h3>
<div class="row">
<div class="stat">
<div class="label">DTP3 global coverage, 2024</div>
<div class="value accent" id="vacc-cov">85%</div>
<div class="sub">~109M infants fully immunized. WHO target: 90%.</div>
</div>
<div class="stat">
<div class="label">"Zero-dose" infants — no routine vaccines at all</div>
<div class="value danger" id="vacc-zero">14 million</div>
<div class="sub">Concentrated in conflict and fragile-state contexts.</div>
</div>
</div>
<p>
The supply side of routine childhood immunization is one of the rare areas
where global manufacturing capacity already exceeds need by a comfortable
margin. The Serum Institute of India alone produces more than 1.5 billion
doses per year; UNICEF procures vaccines for ~45% of the world's children
at prices of cents-to-dollars per dose. The 14 million zero-dose infants
are not a supply problem. They are a cold-chain, conflict, funding-gap,
and political-will problem.
</p>
<p class="src">
Source:
<a href="https://www.who.int/teams/immunization-vaccines-and-biologicals/immunization-analysis-and-insights/global-monitoring/immunization-coverage/who-unicef-estimates-of-national-immunization-coverage">WHO/UNICEF Estimates of National Immunization Coverage (WUENIC) 2024 revision</a> ·
<a href="https://www.who.int/news/item/15-07-2025-global-childhood-vaccination-coverage-holds-steady-yet-over-14-million-infants-remain-unvaccinated-who-unicef">WHO + UNICEF press release, Jul 2025</a>
</p>
</div>
<!-- HOUSING -->
<div class="card" id="card-housing">
<h3>Housing <span class="tag uneven">distribution failure</span></h3>
<div class="row">
<div class="stat">
<div class="label">Homeless worldwide, 2024</div>
<div class="value danger" id="housing-homeless">318 million</div>
<div class="sub">UN-Habitat / UN DESA</div>
</div>
<div class="stat">
<div class="label">Lacking adequate housing</div>
<div class="value danger" id="housing-inadequate">2.8 billion</div>
<div class="sub">≈ 40% of the global population</div>
</div>
</div>
<p>
Unlike food or electricity, there is no single "global housing production"
number to divide. But the inverse is well-documented: in many wealthy
countries, <em>vacant</em> housing units exceed homeless population by an
order of magnitude or more. The shortage is not of walls; it is of
walls people are allowed to enter.
</p>
<p class="src">
Source:
<a href="https://social.desa.un.org/world-summit-2025/blog/300million-people-homeless-worldwide">UN DESA, World Social Summit 2025 background</a>
</p>
</div>
<!-- NEW ESSENTIALS (added 2026-06-15): sanitation, drinking-water access,
clean cooking, basic education, maternal survival, essential medicines -->
<div class="card" id="card-sanitation">
<h3>Sanitation <span class="tag uneven">distribution failure</span></h3>
<div class="row">
<div class="stat"><div class="label">World population with safely managed sanitation</div><div class="value accent" id="sanitation-have">57%</div><div class="sub">WHO/UNICEF JMP (2023)</div></div>
<div class="stat"><div class="label">People still lacking it</div><div class="value danger" id="sanitation-lack">3.5 billion</div><div class="sub">WHO/UNICEF JMP (2023)</div></div>
</div>
<p>The engineering of safe sanitation is a solved problem and most of the world already lives with it: in 2022 some <span class="num">57%</span> of humanity (about <span class="num">4.5 billion</span> people) used safely managed sanitation. The remaining <span class="num">3.5 billion</span> without it, including <span class="num">419 million</span> who still practise open defecation, are short of plumbing and treatment capacity, not of any unknown technology. This is a distribution and investment gap, not a production limit.</p>
<p class="src">Source: <a href="https://washdata.org/reports/jmp-2023-wash-households">WHO/UNICEF Joint Monitoring Programme (2023). Progress on household drinking water, sanitation and hygiene 2000-2022.</a></p>
</div>
<div class="card" id="card-drinking-water">
<h3>Drinking-water access <span class="tag uneven">distribution failure</span></h3>
<div class="row">
<div class="stat"><div class="label">World population with safely managed drinking water</div><div class="value accent" id="water-access-have">73%</div><div class="sub">WHO/UNICEF JMP (2023)</div></div>
<div class="stat"><div class="label">People still lacking it</div><div class="value danger" id="water-access-lack">2.2 billion</div><div class="sub">WHO/UNICEF JMP (2023)</div></div>
</div>
<p>The planet's renewable freshwater works out to thousands of cubic metres per person per year; the binding constraint is delivery, not the resource. In 2022 some <span class="num">73%</span> of humanity used safely managed drinking water, while <span class="num">2.2 billion</span> people did not, including <span class="num">115 million</span> who still drink untreated surface water. The water exists and treatment is routine engineering; the gap is pipes, pumps and treatment plants where they have not been built.</p>
<p class="src">Source: <a href="https://washdata.org/reports/jmp-2023-wash-households">WHO/UNICEF Joint Monitoring Programme (2023). Progress on household drinking water, sanitation and hygiene 2000-2022.</a></p>
</div>
<div class="card" id="card-clean-cooking">
<h3>Clean cooking fuel <span class="tag uneven">distribution failure</span></h3>
<div class="row">
<div class="stat"><div class="label">People still cooking with polluting fuels</div><div class="value danger" id="cooking-polluting">2.1 billion</div><div class="sub">WHO (2025), 2021 data</div></div>
<div class="stat"><div class="label">Deaths/year from household air pollution</div><div class="value danger" id="cooking-deaths">2.9 million</div><div class="sub">WHO (2025), 2021 data</div></div>
</div>
<p>Clean cookstoves, LPG and electric cooking are mass-produced, well-understood technologies. Yet about <span class="num">2.1 billion</span> people, roughly a quarter of humanity, still cook over open fires and inefficient stoves burning wood, dung, crop waste, coal or kerosene. The resulting household air pollution killed an estimated <span class="num">2.9 million</span> people in 2021, including over <span class="num">309,000</span> children under five. The shortfall is affordability and supply chains for fuel and stoves, not a missing invention.</p>
<p class="src">Source: <a href="https://www.who.int/news-room/fact-sheets/detail/household-air-pollution-and-health">World Health Organization (2025). Household air pollution fact sheet.</a></p>
</div>
<div class="card" id="card-education">
<h3>Basic education <span class="tag uneven">distribution failure</span></h3>
<div class="row">
<div class="stat"><div class="label">Out-of-school children & youth worldwide</div><div class="value danger" id="oosc-total">251 million</div><div class="sub">UNESCO GEM Report (2024)</div></div>
<div class="stat"><div class="label">Out-of-school rate, low- vs high-income</div><div class="value danger" id="oosc-gap">33% vs 3%</div><div class="sub">UNESCO GEM Report (2024)</div></div>
</div>
<p>Primary and lower-secondary schooling is a mature public service that rich countries deliver to essentially everyone. UNESCO counts <span class="num">251 million</span> children and youth out of school in 2024, a number that has fallen only about <span class="num">1%</span> in nearly a decade. In low-income countries <span class="num">33%</span> of school-age children are out of school against just <span class="num">3%</span> in high-income countries. The teaching methods exist; the gap is funding, teachers and access where conflict and poverty concentrate.</p>
<p class="src">Source: <a href="https://www.unesco.org/en/articles/251m-children-and-youth-still-out-school-despite-decades-progress-unesco-report">UNESCO (2024). Global Education Monitoring Report 2024: 251 million children and youth still out of school.</a></p>
</div>
<div class="card" id="card-maternal">
<h3>Maternal survival <span class="tag uneven">distribution failure</span></h3>
<div class="row">
<div class="stat"><div class="label">Maternal deaths in 2023</div><div class="value danger" id="maternal-deaths">260,000</div><div class="sub">WHO/UNICEF/UNFPA/WB (2025)</div></div>
<div class="stat"><div class="label">Share concentrated in sub-Saharan Africa & S. Asia</div><div class="value danger" id="maternal-conc">87%</div><div class="sub">WHO/UNICEF/UNFPA/WB (2025)</div></div>
</div>
<p>The clinical interventions that prevent maternal death, skilled birth attendance, blood transfusion, treatment for haemorrhage, sepsis and hypertension, are standard care in high-income countries. Yet an estimated <span class="num">260,000</span> women died of maternal causes in 2023, about one every two minutes, from causes the same report calls largely preventable. About <span class="num">87%</span> of those deaths occurred in sub-Saharan Africa and Southern Asia. Global maternal mortality has already fallen roughly <span class="num">40%</span> since 2000, which shows the remaining toll tracks access to care, not a lack of medical knowledge.</p>
<p class="src">Source: <a href="https://www.who.int/publications/i/item/9789240108462">WHO, UNICEF, UNFPA, World Bank Group, UNDESA (2025). Trends in Maternal Mortality 2000 to 2023.</a></p>
</div>
<div class="card" id="card-essential-medicines">
<h3>Essential medicines <span class="tag uneven">distribution failure</span></h3>
<div class="row">
<div class="stat"><div class="label">Public-sector availability of generic medicines</div><div class="value danger" id="meds-public">38-68%</div><div class="sub">Lancet Global Health (2025)</div></div>
<div class="stat"><div class="label">WHO availability target</div><div class="value accent" id="meds-target">80%</div><div class="sub">WHO benchmark</div></div>
</div>
<p>Most medicines on the WHO Essential Medicines List are off-patent generics that can be manufactured for cents per dose. Yet across 54 low- and middle-income countries, public-sector availability of generic medicines ranged only from <span class="num">38%</span> to <span class="num">68%</span> by region, and no region's public or private sector met WHO's <span class="num">80%</span> availability target. Where stock runs out, patients paid <span class="num">3</span> to <span class="num">11.5</span> times international reference prices in private pharmacies. The drugs are cheap and abundant to make; the failure is procurement, supply chains and pricing.</p>
<p class="src">Source: <a href="https://pubmed.ncbi.nlm.nih.gov/39706661/">Oldfield et al. (2025). Prices, availability, and affordability of adult medicines in 54 low-income and middle-income countries. Lancet Global Health.</a></p>
</div>
</section>
<!-- ============================================================
SECTION 3 — Money question (UBI cost math)
Cost of universal $3/day floor; where the money is.
World Inequality Lab cross-confirmation added 2026-05-15.
============================================================ -->
<section id="money">
<h2>3 · The money question</h2>
<p>
Even if the resources exist, can the financial system move them? Here are
three numbers placed next to each other. They are not a policy proposal —
they are a sanity check on the claim "we cannot afford it."
</p>
<div class="card">
<h3>Cost of a universal $3/day floor — for every human alive</h3>
<div class="row">
<div class="stat">
<div class="label">Math: $3 × 8.2B × 365 days</div>
<div class="value accent" id="ubi-cost">$8.98 trillion / year</div>
<div class="sub">Universal — paid to everyone, including the wealthy.</div>
</div>
<div class="stat">
<div class="label">As a share of world GDP</div>
<div class="value accent" id="ubi-share">8.2%</div>
<div class="sub">Less than the share the world already spends on healthcare (9.9%).</div>
</div>
</div>
<p class="small">
For comparison: actually closing the <em>gap</em> for the 847M people below
the line costs far less, because most of them are not at $0/day; the average
poverty gap is roughly $1/day per affected person. Closing the gap costs
well under $1 trillion / year — comparable to a single year's growth in
global military spending.
</p>
</div>
<div class="card">
<h3>Where the money already is</h3>
<ul>
<li>
Global household wealth, 2023:
<span class="num">$449.9 trillion</span>
(<a href="https://www.ubs.com/global/en/media/display-page-ndp/en-20240710-gwr-2024.html">UBS Global Wealth Report 2024</a>).
Of that, <span class="num">$213.8T</span> is held by the 58 million
people with net worth over $1M — 0.7% of humanity holding 47.5% of the wealth.
Cross-confirmed by the <a href="https://wid.world/">World Inequality Lab</a>
(Chancel, Piketty, Saez, Zucman): the top 10% of humanity owns roughly
<span class="num">75%</span> of all personal wealth, and the
top 0.001% — fewer than 60,000 people — owns three times more wealth
than the entire bottom half of humanity combined.
</li>
<li>
Global military spending, 2024:
<span class="num">$2.7 trillion</span>
(<a href="https://www.sipri.org/publications/2025/sipri-fact-sheets/trends-world-military-expenditure-2024">SIPRI</a>) — 10th consecutive annual increase.
</li>
<li>
Global health spending, 2022:
<span class="num">$9.8 trillion</span>
(<a href="https://www.who.int/teams/health-financing-and-economics/global-spending-on-health-report">WHO</a>),
but the US alone accounts for 43%. Per-capita health spending in
high-income countries is ~87× that in low-income countries — same disease,
different price tag.
</li>
</ul>
<p class="small">
"We cannot afford it" is a statement about political will, not about
physical resources or aggregate money supply.
</p>
</div>
</section>
<!-- ============================================================
SECTION 4 — Three kinds of scarcity
Physical (real) vs distribution (solvable) vs manufactured.
Pure prose, no data dependencies.
============================================================ -->
<section id="scarcity">
<h2>4 · Three kinds of scarcity</h2>
<p>
Not all scarcity is fake. An honest version of this argument has to separate
three distinct things, because the policy response to each is different.
</p>
<h3>Physical scarcity <span class="tag real">real</span></h3>
<p>
Some things are genuinely finite or geographically bound: rare-earth elements,
helium, the lithium in a specific salt flat, doctor-hours per day, intact
tropical forest, a particular human's time, fresh water <em>in a desert</em>.
No amount of redistribution conjures these. They require substitution,
recycling, or restraint.
</p>
<h3>Distribution scarcity <span class="tag uneven">solvable</span></h3>
<p>
Production exceeds need globally, but the surplus is concentrated where need
is lowest. Food rots in one country while another starves. Electricity is
curtailed in one grid while another has none. Housing units sit empty in
cities where people sleep outside them.
This is the largest category by far. It is solved with logistics, pricing,
and rights — not with more production.
</p>
<h3>Manufactured scarcity <span class="tag real">created</span></h3>
<p>
A third category exists because someone profits from it existing:
</p>
<ul>
<li>
<strong>IP gates on near-zero-marginal-cost goods.</strong> A generic
insulin vial costs roughly $2–$6 to manufacture; the list price in the US
has reached $300+. The molecule isn't scarce. The legal right to copy it is.
</li>
<li>
<strong>Artificial limited editions.</strong> Sneakers, handbags, NFTs,
"drops" — supply could be infinite; scarcity is the product.
</li>
<li>
<strong>Planned obsolescence and repair lockouts.</strong> A working
device is made non-working to manufacture replacement demand.
</li>
<li>
<strong>Zoning that forbids new housing</strong> in places where people
want to live.
</li>
<li>
<strong>Information asymmetry.</strong> The "scarcity" of expertise often
survives only because the knowledge is paywalled or trade-secreted.
</li>
</ul>
<p>
Manufactured scarcity is the part of the system that is most legibly a
<em>choice</em>. It is the easiest to argue about and the hardest to dislodge,
because someone is profiting on the other side of the choice.
</p>
<p class="small">
We didn't only describe this category — we built small refutations of it: a
set of <a href="tools/">free, client-side tools</a> (an image editor, an image
compressor/converter, a QR code generator, a contrast checker, a password generator) that run entirely in your browser —
no account, no upload, nothing leaves your device — doing what subscription or
ad-gated services charge for. Manufactured scarcity, undone in a few files.
</p>
</section>
<!-- ============================================================
SECTION 5 — Omelas question
Le Guin frame + empirical answer (suffering is contingent,
not load-bearing). Pivot into pilot evidence in § 6.
============================================================ -->
<section id="omelas">
<h2>5 · The Omelas question</h2>
<p>
In 1973 Ursula K. Le Guin published a short story called
<em>The Ones Who Walk Away from Omelas</em>. Omelas is a city of beauty,
music, and abundant joy. Every citizen's happiness depends — they are told
on coming of age — on the continuous suffering of one child kept locked in a
basement. The reader is given the choice: accept the bargain, or walk away.
Le Guin never tells you what waits past the city walls.
(<a href="https://en.wikipedia.org/wiki/The_Ones_Who_Walk_Away_from_Omelas">background</a>)
</p>
<p>
The current global system has the shape of Omelas at scale. Roughly a billion
people live in conditions of relative abundance — durable shelter, clean
water, reliable food, electricity, healthcare, leisure — while
<span class="num">847M</span> live in extreme poverty,
<span class="num">2.8B</span> in inadequate housing, and
<span class="num">673M</span> in hunger. The wealthy world's comfort runs on
cobalt mined by children, garments sewn in unsafe factories, agricultural
labor below legal wages, and ecosystems converted to commodities. The
bargain isn't presented to anyone formally. It is just the condition of the
city.
</p>
<p>
Le Guin's story <em>poses</em> the bargain. It does not assert that the
bargain is necessary. The interesting question — the empirical question this
site can actually address — is whether the suffering is <strong>load-bearing</strong>.
If you removed the child from the basement, would Omelas collapse? Or has the
city simply never tried?
</p>
<p>
Three lines of evidence say the suffering is not load-bearing:
</p>
<ul>
<li>
<strong>Cash transfers do not reduce labor supply.</strong> Every
well-designed evaluation we have — Kenya, Iran, Stockton, Alaska —
finds either no labor-supply effect or a positive one. The widely-feared
"people will stop working if you give them money" version of the Omelas
bargain is not supported by data. (See §6 below for sources.)
</li>
<li>
<strong>High-comfort societies exist without correspondingly high
underclass exploitation.</strong> The Nordic countries, Costa Rica, and
several others sustain top-tier human development with lower internal
inequality and lower foreign-supply-chain abuse profiles than the US,
UK, or Gulf states. The luxuries are the same; the basement isn't.
</li>
<li>
<strong>Extractive vs inclusive institutions.</strong> The empirical
literature on long-run growth (Acemoglu, Johnson, Robinson, 2024 Nobel)
finds that <em>inclusive</em> institutions — broad property rights, broad
political voice, broad access to opportunity — outperform extractive ones
over decades. The basement is not the engine. The basement is the failure mode.
</li>
</ul>
<p>
That doesn't make removing the child easy. Transition costs are real —
capital flight, political resistance, the need to reorganize entire supply
chains. But "hard" is not the same as "load-bearing." The site's claim is
narrow: the resources exist, the cash-transfer experiments work, and the
basement-comfort link is contingent, not necessary.
</p>
<p class="small">
The next section is the part of Omelas that the story didn't write:
what happens when you actually try to lift the child out, on a recorded,
measured scale.
</p>
</section>
<!-- ============================================================
SECTION 6 — Cash-transfer pilots
Six programs + two meta-analyses. Each .pilot block reads
from data/pilots.json. Update both when adding/removing.
Also update FAQPage schema in <head> and the JSON-LD article
`citation` list.
============================================================ -->
<section id="pilots">
<h2>6 · Where this has already been done</h2>
<p>
Twelve programs across six continents and five decades — universal and
targeted, lump-sum and monthly, conditional and unconditional — each with
peer-reviewed or official-source evaluation. None of them is the full
solution. Together they show that the standard objections ("people will stop
working," "the money will be wasted," "it isn't sustainable") fail empirically
at the scales tested.
</p>
<div class="pilot">
<h4>GiveDirectly Universal Basic Income — rural Kenya (2017–ongoing)</h4>
<div class="meta">~23,000 people · 195 villages + 100 control · RCT</div>
<p class="small">
Three-arm randomized controlled trial run by Tavneet Suri (MIT), Abhijit
Banerjee (MIT, Nobel 2019), Paul Niehaus (UCSD), Alan Krueger (Princeton),
and Michael Faye. Three transfer designs compared: lump sum $500;
two-year monthly UBI ($0.75/day); twelve-year commitment, same monthly amount.
</p>
<ul>
<li><strong>No reduction in labor supply</strong> in any arm.</li>
<li>Lump-sum arm produced the largest income gain (~50% over control).</li>
<li>Long-term commitment changed behavior — saving, business creation —
that short-term transfers did not.</li>
</ul>
<p class="src">
<a href="https://www.povertyactionlab.org/sites/default/files/research-paper/Universal-Basic-Income-Short-Term-Results-from-a-Long-Term-Experiment-in-Kenya_BFKNS_December2023.pdf">Banerjee, Faye, Krueger, Niehaus, Suri (2023). Universal Basic Income: Short-Term Results from a Long-Term Experiment in Kenya.</a> ·
<a href="https://www.socialscienceregistry.org/trials/1952">AEA registry</a>
</p>
</div>