// ============================================================================
// Reactive parameter engine (auto-generated data from dih_models/parameters.py)
// ----------------------------------------------------------------------------
// Single source of truth. Every number, formula, dependency, and confidence
// interval comes from parameters.json (inputs/computeExpr/distribution are
// added by the generate:everything pipeline, which traces the compute lambdas
// in parameters.py). The fetch is async, so it never blocks page render; the
// citations block in the file is unused here but harmless (gzipped + cached).
// ============================================================================
paramFile = await fetch("/assets/json/parameters.json").then(r => r.json())
Opening requested calculation...
Please wait, this takes like 47 seconds. Thank you for your patience! :)
☠
0 humans have been terminated by curable diseases since this page started loading
Investment Terms
Keywords
war-on-disease, 1-percent-treaty, medical-research, public-health, peace-dividend, decentralized-trials, dfda, dih, victory-bonds, health-economics, cost-benefit-analysis, clinical-trials, drug-development, regulatory-reform, military-spending, peace-economics, decentralized-governance, wishocracy, blockchain-governance, impact-investing
// sourceNode(meta): a small "source" line for a leaf. External params link to
// their citation; definitions are labelled assumptions; external-but-unsourced
// is flagged honestly so missing citations are visible rather than hidden.
// Built with createElement (not an HTML string) so the link-validator does not
// misread the embedded OJS source as a real anchor.
function sourceNode(meta) {
const ref = meta && meta.sourceRef;
const type = meta && meta.sourceType;
const el = document.createElement("div");
el.className = "rp-source";
function link(href, text) {
el.appendChild(document.createTextNode("source: "));
const a = document.createElement("a");
a.href = href; a.target = "_blank"; a.rel = "noopener"; a.textContent = text;
el.appendChild(a);
return el;
}
if (ref && citations[ref] && citations[ref].url) {
const c = citations[ref];
const who = [c.author, c.year].filter(Boolean).join(" ");
return link(c.url, c.title ? (c.title + (who ? ` (${who})` : "")) : (c.source || ref));
}
if (ref && /^https?:\/\//.test(ref)) return link(ref, ref);
if (type === "definition") { el.className = "rp-source rp-assumption"; el.textContent = "assumption / definition"; return el; }
if (type === "external") { el.className = "rp-source rp-uncited"; el.textContent = "source not yet cited"; return el; }
return null;
}// Compiled compute functions: turn each computeExpr string into a function of
// a lookup `p(name)`. Done once; reused for every evaluation.
compiledCompute = {
const fns = {};
for (const [name, meta] of Object.entries(paramData)) {
if (meta.computeExpr) {
// Rewrite BARE_PARAM_NAMES into p("BARE_PARAM_NAME") lookups.
const expr = meta.computeExpr.replace(
/\b[A-Z][A-Z0-9_]+\b/g,
(m) => (paramData[m] ? `p(${JSON.stringify(m)})` : m)
);
// eslint-disable-next-line no-new-func
fns[name] = new Function("p", `return (${expr});`);
}
}
return fns;
}// evaluate(name): resolve a parameter's current value given reader overrides,
// recomputing calculated parameters from their dependencies. Memoized per call.
function makeEvaluator(ov) {
const cache = new Map();
function p(name) {
if (cache.has(name)) return cache.get(name);
let val;
if (name in ov) {
val = ov[name]; // reader override wins
} else if (compiledCompute[name]) {
val = compiledCompute[name](p); // recompute from dependencies
} else {
val = paramData[name] ? paramData[name].value : NaN; // leaf default
}
cache.set(name, val);
return val;
}
return p;
}// Formatting helpers mirroring the book's style.
function fmtValue(meta, v) {
const unit = meta && meta.unit;
if (unit === "USD") {
const a = Math.abs(v);
if (a >= 1e12) return "$" + (v / 1e12).toFixed(2) + "T";
if (a >= 1e9) return "$" + (v / 1e9).toFixed(1) + "B";
if (a >= 1e6) return "$" + (v / 1e6).toFixed(1) + "M";
if (a >= 1e3) return "$" + (v / 1e3).toFixed(1) + "K";
return "$" + v.toFixed(2);
}
if (unit === "percent" || unit === "ratio") return v.toFixed(3);
if (unit === "x") return v.toFixed(2) + "x";
if (Math.abs(v) >= 1e6) return v.toLocaleString(undefined, {maximumFractionDigits: 0});
return v.toLocaleString(undefined, {maximumFractionDigits: 2});
}// paramTree(rootName): the recursive disclosure widget. Returns an Observable
// view whose .value is the live { name -> value } map. Native <details> gives
// progressive disclosure with zero overload: collapsed = one number, each click
// reveals one more level of the formula. Leaves are editable sliders bounded by
// their confidence interval; calculated nodes are read-only and expandable.
function paramTree(rootName) {
const ov = {}; // reader overrides: leaf name -> chosen value (local state)
const root = document.createElement("div");
root.className = "rp-shell";
// Imperative recompute: re-resolve all visible value spans from overrides.
const valueSpans = []; // {name, el}
function recompute() {
const p = makeEvaluator(ov);
for (const {name, el} of valueSpans) {
const meta = paramData[name];
el.textContent = fmtValue(meta, p(name));
}
root.value = Object.fromEntries(valueSpans.map(({name}) => [name, p(name)]));
root.dispatchEvent(new CustomEvent("input"));
}
function node(name, depth) {
const meta = paramData[name];
if (!meta) return document.createElement("span");
const isCalc = !!meta.computeExpr;
const wrap = document.createElement(isCalc ? "details" : "div");
wrap.className = "rp-node";
wrap.style.marginLeft = depth === 0 ? "0" : "1rem";
const head = document.createElement(isCalc ? "summary" : "div");
head.className = "rp-head";
const label = document.createElement("span");
label.className = "rp-label";
label.textContent = (meta.description || name).split(".")[0];
const value = document.createElement("span");
value.className = "rp-value";
valueSpans.push({name, el: value});
head.appendChild(label);
head.appendChild(value);
wrap.appendChild(head);
if (isCalc) {
// Formula line + recurse into each dependency.
const body = document.createElement("div");
body.className = "rp-body";
const formula = document.createElement("div");
formula.className = "rp-formula";
formula.textContent = "= " + meta.computeExpr.replace(/\b([A-Z][A-Z0-9_]+)\b/g, (m) => {
const dm = paramData[m];
return dm ? (dm.description || m).split(".")[0].replace(/\s+/g, " ") : m;
});
body.appendChild(formula);
for (const dep of (meta.inputs || [])) body.appendChild(node(dep, depth + 1));
wrap.appendChild(body);
} else {
// Editable leaf: slider bounded by CI (or +/-50% if no CI).
const ci = meta.confidenceInterval;
const base = meta.value;
const lo = ci ? ci[0] : base * 0.5;
const hi = ci ? ci[1] : base * 1.5;
const ctrl = document.createElement("div");
ctrl.className = "rp-control";
const slider = document.createElement("input");
slider.type = "range";
slider.min = lo;
slider.max = hi;
slider.step = (hi - lo) / 100 || 1;
slider.value = base;
const reset = document.createElement("button");
reset.className = "rp-reset";
reset.textContent = "reset";
slider.addEventListener("input", () => {
ov[name] = +slider.value;
recompute();
});
reset.addEventListener("click", () => {
delete ov[name];
slider.value = base;
recompute();
});
const range = document.createElement("span");
range.className = "rp-range";
range.textContent = ci ? `${fmtValue(meta, lo)} – ${fmtValue(meta, hi)} (95% CI)` : "adjustable";
ctrl.appendChild(slider);
ctrl.appendChild(reset);
ctrl.appendChild(range);
wrap.appendChild(ctrl);
// Source line: cite the data behind this input so the reader can verify it.
const srcEl = sourceNode(meta);
if (srcEl) wrap.appendChild(srcEl);
}
return wrap;
}
if (rootName) root.appendChild(node(rootName, 0));
recompute();
return root;
}On my planet, when somebody asks you for money, you check two things. First: is anybody keeping any of it? Second: does giving it away make you richer or poorer?
Nobody who operates Earth Optimization Services owns equity in it. I am told this is unusual. On my planet, building something and then not owning it is just called building something. But on yours, the question “what do you get out of this?” apparently requires an answer more complicated than “the same thing you get out of it: a planet where fewer people die.” So here is the longer answer.
The people who operate EOS live on the same planet you do. If the planet gets better, they get the better planet. Equity in a company is a number on a screen. A world where your children do not die of treatable diseases is a thing that is actually real. These are different categories of object. Your species treats them as the same category, which I find philosophically interesting and practically fatal.
The second check: does giving money make you richer or poorer? If war and disease end, the shares appreciate substantially. If they do not, you own shares in defense contractors, which historically perform well during periods of continued military spending. The downside is whatever else you would have done with the money.
What EOS is
Earth Optimization Services is a company. Not a fund. Not a nonprofit. Not a movement. A company that sells products and services, makes money, and uses the money to optimize Earth. Your government requires me to be specific about the legal structure, so: it is a holding company. Everything described in this book is a product or subsidiary of EOS.
| Product | What it does | Revenue |
|---|---|---|
| The Manual | The book you are reading | Sales (pay-what-you-want, anchored to $90 (95% CI: $88-$92)) |
| The Uniform | T-shirts that say “I am retarded” | Sales + the free permanent-marker version |
| The Fund | Buys defense contractor shares, redirects lobbying via voting rights | A transparent operating fee, no carry |
| Optimitron | Policy optimization platform | SaaS subscriptions, consulting |
| The dFDA | Clinical trial infrastructure | Platform fees |
| The Prize | Assurance contracts for coordinated action | Escrow returns |
| Incentive Alignment Bonds | Revenue-share bonds funding the political campaign | Bond issuance fees |
The fund arm buys shares in defense contractors and uses the voting rights to redirect their lobbying budgets toward the 1% Treaty158 159. This is the Loving Takeover. The shareholders being bought out end up richer (buying shares increases the price) and longer-lived (the treaty adds approximately 12 years (95% CI: 8 years-18 years) to every beneficiary, including the people being bought out). On my planet this is called a gift. On yours it requires a 494-line document.
The long-term goal is to acquire sufficient influence over every company that shapes government policy, then redistribute that control to humanity through wishocracy160. EOS is the temporary centralized structure that builds the decentralized one. When wishocracy is operational, EOS hands over the keys.
How you make money
There are three layers of appreciation.
Layer 1: Buying pressure. A coordinated buy-up creates roughly $722 billion of net new demand against a tradeable float of roughly $460 billion. When demand exceeds supply, prices rise. This is arithmetic.
Layer 2: Credibility cascade. As the campaign builds credibility, the market prices in the probability of success. Early buyers see appreciation, which attracts more buyers, which raises prices further. This is the same mechanism that prices in M&A announcements, FDA approvals, and earnings revisions.
Layer 3: The pivot. If the treaty passes, GDP at year 15 is roughly 4.1x (95% CI: 2.02x-8.62x) larger than the current trajectory. Defense contractors in a larger economy capture proportionally more revenue. The engineering workforce pivots to medical, biotech, and civilian applications.
The asymmetric structure. If the campaign succeeds, shares appreciate through all three layers. If it fails, you hold a normal defense contractor position. The downside is the foregone return on whatever else you would have bought.
The terms
| Term | Value | Why |
|---|---|---|
| Fund target | $500K to $2M | Seed capital. Enough to begin. Not enough to waste. |
| Minimum investment (friends & family) | $25,000 | Low enough to include the humans who believed before it was obvious. |
| Minimum investment (institutional) | $100,000 | Standard institutional minimum. |
| Operating fee | Transparent, covers cost | Salaries and operations, nothing above cost. |
| Performance fee / carry | None | The operators do not skim the upside. Their upside is the same notes you hold. |
| Lockup | 1 year | The interesting part takes longer, but you can leave. |
| Operator equity | 0% | Nobody who runs this owns a piece of it. |
| Security type | Revenue-share notes | Money in, more money out. No voting rights, no governance, no board seat. |
How the share price works
The share price of EOS is not derived from revenue. It is not derived from assets. It is not derived from what similar companies sell for. There are no similar companies.
The share price represents one thing: your fractional claim on the probability-weighted value of optimizing Earth. The formula:
\[\text{price} = \frac{P(I) \times V}{\text{total shares}}\]
V is the total value of success. This is the civilizational alpha from eliminating the political dysfunction tax54: the gap between what humanity produces under current policy and what it would produce under optimal policy. The book, the shirts, the fund fees, the consulting revenue. None of these enter V. They are mechanisms. V is what happens to civilization if the mechanisms work.
P(I) is the probability of success given total investment I. This is the only variable that changes with each share sold. Each purchase increases I, which increases P, which increases the rational price.
This is circular. The price depends on the probability, the probability depends on the investment, the investment depends on the price. But the circle has a fixed point: a price at which the market’s implied belief in success is self-consistent with the investment level the price represents. That fixed point is the Platonic ideal.
Why the price must be pure. If you mix product revenue into the valuation, the share becomes a bet on book sales and consulting contracts. That is a different bet. The share is a bet on whether Earth gets optimized. Product revenue is how EOS funds its operations. It is not what the share is worth. Pricing the share on revenue would be like pricing the book on printing costs instead of anchoring to the civilizational value. Same category error.
A share priced at $X implies P(success) = X × total_shares / V. If you think the probability is higher than what the price implies, the share is undervalued. If lower, overvalued. The price discovery is honest because it is grounded in a falsifiable estimate of one thing: how likely is it that Earth gets optimized?
The continuous auction. Each new share is priced at the current P(I) × V / shares. As more people invest, I rises, P rises, price rises. No round numbers. No arbitrary caps. The price at any moment is the market’s self-consistent belief in the probability that Earth gets optimized. Any fixed price is wrong at almost every point: too high early (deters believers), too low late (subsidizes latecomers at believers’ expense). Only the continuous auction tracks the true expected value at every point.
If the campaign fails. P drops. Price drops. But investors still hold defense contractor shares, which perform normally during periods of continued military spending. The downside is the foregone return on whatever you would have bought instead. The share price goes to zero only if the probability of success goes to zero, which requires the complete impossibility of optimizing Earth. On my planet we would call that an unusual claim.
Where the money goes
Your investment
└─> Buy defense contractor shares
└─> Share price goes up (Layer 1)
└─> Gain voting rights
└─> Redirect lobbying budget
└─> Campaign credibility rises
└─> Share price goes up more (Layer 2)
└─> Pass the 1% treaty
└─> Economy grows 4.1x (95% CI: 2.02x-8.62x)
└─> Share price goes up a lot (Layer 3)
└─> You also don't die
The last line is not priced into the return, but it is arguably the more valuable one.
The cascade: how $5,000 becomes $722 billion
The diagram above assumes somebody buys everything at once. Nobody has $722 billion.
But you do not need to buy 50% of a company to control its board. In 2021, Engine No. 1 won three board seats at ExxonMobil while holding 0.02% of its shares. Carl Icahn has been redirecting boards since 1979 with positions between 1% and 10%. The mechanism is a demand letter the board is legally required to read (Caremark), a proxy proposal institutional investors are required to evaluate (ISS guidelines), and enough credibility that the board’s lawyers recommend settling.
Three methods, ordered by cost:
| Method | Cost (all 9 US primes) | Feasibility |
|---|---|---|
| Buy 51% of shares | ~$460 billion | Impossible without being a nation-state |
| Activist positions (1-5%) | ~$9.1 billion | Hard but demonstrated (Icahn, Ackman, Peltz) |
| Governance pressure + institutional votes | $75-200 million | Possible |
The third method works because institutional investors (Vanguard, BlackRock, State Street) hold 60-75% of defense contractor shares. They do not need to be bought. They need to be presented with an economically rational proxy proposal. ISS and Glass Lewis evaluate every one. “Your lobbying has negative ROI for your own shareholders” is economically rational. Engine No. 1 proved this at Exxon.
The cascade starts small.
Target 1: Huntington Ingalls (HII). Market cap ~$10 billion. The smallest major prime. A governance-pressure campaign costs $5,000-$15,000. If HII’s board commissions the lobbying ROI analysis (which Caremark doctrine increasingly requires), and the analysis shows what existing studies show (that the lobbying is self-defeating), the lobbying budget begins to redirect. This generates media coverage. Media coverage attracts investors. Investors create buying pressure.
Target 2: Kratos (KTOS). Then Leidos (LDOS). Then L3Harris (LHX). Each success creates three things: credibility (the previous one worked), capital (appreciation from the last campaign funds the next), and attention (which attracts more investors). Each target is funded by the appreciation from the previous one.
HII ($10B) → KTOS ($12B) → LDOS ($20B) → LHX ($45B)
→ GD ($80B) → NOC ($75B) → LMT ($110B) → BA ($130B)
→ RTX ($160B) → GE Aerospace ($200B+)
Then pharma ($373M/yr in lobbying). Then finance ($720M/yr). Then energy. Each sector’s lobbying apparatus, redirected to champion the treaty. Each funded by the appreciation from the last.
The cascade starts with one demand letter filed by one shareholder who paid $200 for one share.
How EOS funds its operations
The share price is derived from the probability of civilizational optimization, not from revenue. But EOS still needs money to operate. Here is where it comes from. Four layers. Each works independently. None of them enter the share price formula.
Layer 1: Fund management. A transparent operating fee that covers salaries and operations, and nothing above cost. No performance fee, no carry. The operators do not skim the upside; they hold the same notes you do. This is less than a normal fund takes, on purpose.
Layer 2: Consulting. The demand letter creates a legal obligation for the board to respond (Caremark). Responding requires commissioning an analysis of whether the company’s lobbying generates positive shareholder returns. EOS, through Optimitron, provides this analysis. The free version demonstrates competence. The paid version (deeper, proprietary, ongoing advisory) is how EOS becomes a consultant to the companies it is pressuring.
I spent a long time looking for the part where the demand letter and the consulting pipeline stop being the same object and could not find it. Each demand letter in the cascade creates a potential client. Across defense, pharma, and finance at scale, this is $10-50 million per year.
Layer 3: Platform. Optimitron becomes a SaaS product. Institutional investors, proxy advisory firms, and pension funds subscribe to the lobbying ROI data. This data is valuable to everyone who votes proxies, which is every institutional investor.
Layer 4: Brand. The book you are reading. The educational film. The shirts. None of this is large revenue. It is marketing that covers its own costs.
EOS does not need donations or grants. The revenue comes from the same activities that redirect the lobbying. If you separate the revenue from the mechanism, neither functions. Together, they compound: the more successfully EOS redirects lobbying, the more profitable it becomes.
Why competitors help
If another fund copies this strategy, EOS investors make more money. More funds buying means more buying pressure means higher share prices. More demand letters means faster board responses. More media attention means more retail investors.
Ten competing funds means ten times the buying pressure and ten times the demand letters. Competition and cooperation produce identical outcomes. I do not know a word for a game where this is true, but it is the game you are in.
The only thing that needs protecting is the governance: that whoever controls the redirected lobbying does not use it for extraction. This is why EOS publishes the equity formula, the humanity reserve, and the transfer clause before any of it is profitable. Establishing the norms first is the only defense against a version of this that is sleazy.
If someone copies this and executes it well, they have ended war and disease.
The two investment products
EOS offers two instruments. Both are products of the same company.
Revenue-share notes (the EOS share). Your money buys defense contractor shares via the fund. You receive two returns: (1) a revenue-share percentage of EOS’s operating revenue (fund fees, consulting, platform, brand), which is your cash return, and (2) appreciation of the share itself, whose price is set by the continuous auction at P(I) × V / shares. The cash return is operational. The share value is civilizational. They are separate. This is the takeover arm.
Incentive Alignment Bonds161. Your money funds the political campaign to pass the treaty. If the treaty passes, it generates $27.2 billion per year, and bondholders receive $2.72 billion per year forever (a 272% annual return on the campaign cost of $1 billion). This is the campaign financing arm.
The takeover buys the opposition. The bonds fund the campaign. You can buy one or both. Both are EOS products.
The math on your investment
Set the three personal variables. The success multiplier is not a number you guess: it is derived from how much larger the economy gets if the treaty passes. Expand it to see where the base case comes from, and drag any underlying driver to set your own.
Share-price multiplier if the campaign succeeds (base case = the economy at year 15 under the treaty, divided by the economy under the current trajectory). Expand to edit the drivers:
eosCalc = {
const amount = eosAmount;
const years = eosYears;
const prob = eosProb / 100;
const mult = eosMultiplierTree["TREATY_TRAJECTORY_GDP_VS_CURRENT_TRAJECTORY_MULTIPLIER_YEAR_15"];
const sp = eosSpReturn;
const netWorth = eosNetWorth;
const takeover = paramData["DEFENSE_TAKEOVER_COST_TOTAL"].value;
const success = amount * mult;
const fail = amount * Math.pow(1 + sp, years);
const ev = prob * success + (1 - prob) * fail;
// Systemic upside: the difference your existing economy-exposed wealth is worth
// under the treaty trajectory vs the current trajectory at year 15. Conservative
// (uses today's net worth, ignores 15 years of compounding that apply to both).
const systemicUpside = netWorth * (mult - 1);
const systemicEv = prob * systemicUpside;
// Entry-timing (the credibility cascade, Layer 2). A share is priced at
// P x V / shares. You buy when the market implies p0; if it succeeds, the share
// reprices to reflect ~certainty and the assets appreciate by `mult`. So the
// success multiple captured is mult / p0, and your edge over the market is the
// ratio of your belief to the implied price.
const p0 = eosEntryProb / 100;
const asleepSuccessMult = mult / p0; // what you make if it works, buying asleep
const asleepSuccess = amount * asleepSuccessMult;
const asleepEv = prob * asleepSuccess + (1 - prob) * fail;
const efficientEv = amount * mult; // if p0 == your belief, entry timing is fair
const edge = prob / p0; // belief / implied price
return {amount, years, prob, mult, sp, netWorth, takeover, success, fail, ev,
evVsSp: ev - fail, share: amount / takeover, systemicUpside, systemicEv,
leverage: systemicEv / Math.max(amount, 1),
p0, asleepSuccessMult, asleepSuccess, asleepEv, efficientEv, edge};
}html`<div class="eit-cards">
<div class="eit-card good">
<div class="eit-card-title">Value if Campaign Succeeds</div>
<div class="eit-card-value">${eosMoney(eosCalc.success)}</div>
<div class="eit-card-meta">${eosCalc.mult.toFixed(1)}x your investment</div>
</div>
<div class="eit-card">
<div class="eit-card-title">Value if Campaign Fails</div>
<div class="eit-card-value">${eosMoney(eosCalc.fail)}</div>
<div class="eit-card-meta">Defense stocks at ${(eosCalc.sp * 100).toFixed(1)}%/yr for ${eosCalc.years} years</div>
</div>
<div class="eit-card good">
<div class="eit-card-title">Expected Value (probability-weighted)</div>
<div class="eit-card-value">${eosMoney(eosCalc.ev)}</div>
<div class="eit-card-meta">${(eosCalc.prob * 100).toFixed(1)}% chance of ${eosMoney(eosCalc.success)} + ${((1 - eosCalc.prob) * 100).toFixed(1)}% chance of ${eosMoney(eosCalc.fail)}</div>
</div>
<div class="eit-card">
<div class="eit-card-title">Same Money in the S&P 500</div>
<div class="eit-card-value">${eosMoney(eosCalc.fail)}</div>
<div class="eit-card-meta">${eosMoney(eosCalc.amount)} at ${(eosCalc.sp * 100).toFixed(1)}% for ${eosCalc.years} years</div>
</div>
<div class="eit-card good">
<div class="eit-card-title">Expected Return vs S&P</div>
<div class="eit-card-value">${(eosCalc.evVsSp >= 0 ? "+" : "") + eosMoney(eosCalc.evVsSp)}</div>
<div class="eit-card-meta">${eosCalc.evVsSp >= 0 ? "Expected value exceeds S&P" : "S&P exceeds expected value"}</div>
</div>
<div class="eit-card">
<div class="eit-card-title">Your Share of the Takeover</div>
<div class="eit-card-value">${(eosCalc.share * 100).toFixed(6)}%</div>
<div class="eit-card-meta">${eosMoney(eosCalc.amount)} of ${eosMoney(eosCalc.takeover)} total</div>
</div>
</div>`html`<div class="eit-summary">You invest ${eosMoney(eosCalc.amount)}. If the campaign succeeds (${(eosCalc.prob * 100).toFixed(1)}% estimated), your shares appreciate to ${eosMoney(eosCalc.success)} (${eosCalc.mult.toFixed(1)}x). If it fails, you hold defense stocks worth ${eosMoney(eosCalc.fail)} at market return. The probability-weighted expected value is ${eosMoney(eosCalc.ev)}, which is ${eosMoney(Math.abs(eosCalc.evVsSp))} ${eosCalc.evVsSp >= 0 ? "more" : "less"} than the S&P would have returned. You also do not die of a curable disease, which is not reflected above but is arguably the better return.</div>`When you buy changes what you make
The cards above value the share by the appreciation of what it holds (defense contractors pivoting in a larger economy). That is only one of the layers. The other is repricing: a share is worth its probability of success times the value of success. You buy while the market prices that probability near zero. If you are right, the share reprices the whole way up, and you keep the difference.
This cuts two ways, and an honest pitch shows both.
html`<div class="eit-cards">
<div class="eit-card good">
<div class="eit-card-title">If the Market Is Asleep (the thesis)</div>
<div class="eit-card-value">${eosCalc.asleepSuccessMult >= 1 ? Math.round(eosCalc.asleepSuccessMult).toLocaleString() + "x" : eosCalc.asleepSuccessMult.toFixed(1) + "x"}</div>
<div class="eit-card-meta">success multiple buying at ${(eosCalc.p0 * 100).toFixed(1)}% implied (${eosCalc.mult.toFixed(1)}x assets times the repricing from ${(eosCalc.p0 * 100).toFixed(1)}% to certainty) = ${eosMoney(eosCalc.asleepSuccess)} on ${eosMoney(eosCalc.amount)}</div>
</div>
<div class="eit-card">
<div class="eit-card-title">If the Market Is Efficient (textbook)</div>
<div class="eit-card-value">${eosMoney(eosCalc.efficientEv)}</div>
<div class="eit-card-meta">then the price already reflects the odds, entry timing is fair, and you are paid in variance, not extra expected value. Early just means cheaper and riskier.</div>
</div>
<div class="eit-card good">
<div class="eit-card-title">Your Edge Over the Market</div>
<div class="eit-card-value">${eosCalc.edge >= 1 ? eosCalc.edge.toFixed(1) + "x" : eosCalc.edge.toFixed(2) + "x"}</div>
<div class="eit-card-meta">your ${(eosCalc.prob * 100).toFixed(1)}% belief divided by the ${(eosCalc.p0 * 100).toFixed(1)}% the market prices in. Above 1x, the market is underpaying you for the risk.</div>
</div>
</div>`html`<div class="eit-summary">Two ways to read the same share. <strong>If the market is efficient</strong>, the price already encodes the probability, so it does not matter when you buy: your expected value is about ${eosMoney(eosCalc.efficientEv)} either way, and entering early just trades safety for a bigger, rarer payoff. <strong>If the market is asleep</strong> (which it is, since no analyst models the end of war), you are buying at roughly ${(eosCalc.p0 * 100).toFixed(1)}% implied while believing ${(eosCalc.prob * 100).toFixed(1)}%, an edge of ${eosCalc.edge.toFixed(1)}x, and a win reprices the share about ${eosCalc.asleepSuccessMult >= 1 ? Math.round(eosCalc.asleepSuccessMult).toLocaleString() + "x" : eosCalc.asleepSuccessMult.toFixed(1) + "x"}. The edge is real exactly to the degree the market disbelieves, and it shrinks to zero the moment the thesis becomes obvious. That is the argument for going early.</div>`The number you are actually betting
Your investment is the lever. Your net worth is the bet. If the treaty passes and the economy ends up larger than the current trajectory, everything you own that tracks the economy (stocks, property, business equity) is worth more under that trajectory than the one where nothing happens. You are already long this outcome. The only question is whether you spend a little to improve its odds.
html`<div class="eit-cards">
<div class="eit-card good">
<div class="eit-card-title">Your Net Worth's Upside If It Works</div>
<div class="eit-card-value">${eosMoney(eosCalc.systemicUpside)}</div>
<div class="eit-card-meta">${eosMoney(eosCalc.netWorth)} riding the ${eosCalc.mult.toFixed(1)}x trajectory gap (economy-exposed wealth)</div>
</div>
<div class="eit-card good">
<div class="eit-card-title">Expected Systemic Upside</div>
<div class="eit-card-value">${eosMoney(eosCalc.systemicEv)}</div>
<div class="eit-card-meta">${(eosCalc.prob * 100).toFixed(1)}% chance of ${eosMoney(eosCalc.systemicUpside)}</div>
</div>
<div class="eit-card">
<div class="eit-card-title">Per Dollar Invested in EOS</div>
<div class="eit-card-value">${eosCalc.leverage >= 1 ? Math.round(eosCalc.leverage).toLocaleString() + "x" : eosCalc.leverage.toFixed(2) + "x"}</div>
<div class="eit-card-meta">expected systemic upside per dollar of EOS investment</div>
</div>
</div>`html`<div class="eit-summary">Your ${eosMoney(eosCalc.amount)} investment is dwarfed by what it protects. At a net worth of ${eosMoney(eosCalc.netWorth)}, the difference between the treaty trajectory and the current one is worth about ${eosMoney(eosCalc.systemicUpside)} to you if it passes, or ${eosMoney(eosCalc.systemicEv)} probability-weighted. That is roughly ${eosCalc.leverage >= 1 ? Math.round(eosCalc.leverage).toLocaleString() + " times" : eosCalc.leverage.toFixed(2) + " times"} your EOS investment, and it accrues whether or not you buy a single share. The investment does not create this upside; it nudges the probability that you collect it. (Caveat: this assumes your wealth tracks the economy. Cash and bonds lag; equities, property, and business equity track it more closely. Adjust the multiplier drivers above to set your own.)</div>`Your money is melting
This section is not about the fund. It is about everything else you own.
The value of money is a function of two variables: how much you have, and how long you can use it. Your species obsesses over the first variable and ignores the second, which is strange, because the second one is going to zero.
Your probability of being alive and cognitively functional decreases every day. Not because of the market. Because of biology. Every dollar you own is worth slightly less to you today than it was yesterday, because you are slightly closer to the point where you cannot use it. The account balance goes up. The person who can spend it degrades.
The math: if you have $1 million and you spend $200 on something that increases your probability of being alive to use the rest, you have increased the expected value of the remaining $999,800. The $200 does not just generate its own return. It preserves the value of everything else.
This scales linearly with wealth. A person with $1,000 who spends $200 preserves $800 of future utility. A person with $1 billion who spends $200 preserves $999,999,800. Same cost. Same action. The wealthier you are, the more you lose by dying on schedule.
A person who spends 80 years accumulating $100 million and then dies of a treatable disease has built a pile of something that became worthless at the moment of their death. On my planet we find this very confusing. You are building a number and then not being alive for it. It is like spending your life writing a book and then burning it on the last page.
Where to point the money: the lobbying allocation calculator
The question is not “should I buy defense stocks?” The question is: which companies give you the most lobbying redirect per dollar of shares?
Defense contractors are not the only companies lobbying against rational policy. Pharmaceutical companies spend roughly $56M/year lobbying against drug pricing reform and clinical trial modernization. That lobbying directly blocks the infrastructure this entire plan depends on. Insurance companies block healthcare reform. Oil and gas companies block energy transition. Each dollar of lobbying, redirected, is a dollar pushing toward the treaty instead of against it.
The calculator below takes your investment amount, allocates it across companies in proportion to their lobbying-per-dollar-of-market-cap ratio, and shows you what that buys: how many shareholder proposals you can file, how much lobbying you can challenge, and at what cost.
// Company data: lobbying spend, market cap, sector, mission relevance
companies = [
{ticker: "RTX", name: "RTX Corp (Raytheon)", sector: "Defense", lobby: 13.51e6, mcap: 243.7e9, relevance: "Missile defense, arms exports"},
{ticker: "LMT", name: "Lockheed Martin", sector: "Defense", lobby: 12.67e6, mcap: 120.8e9, relevance: "F-35, NDAA budgets"},
{ticker: "GD", name: "General Dynamics", sector: "Defense", lobby: 12.21e6, mcap: 93.7e9, relevance: "Navy ships, combat vehicles"},
{ticker: "BA", name: "Boeing", sector: "Defense", lobby: 11.93e6, mcap: 170.9e9, relevance: "Defense contracts, FAA"},
{ticker: "NOC", name: "Northrop Grumman", sector: "Defense", lobby: 8.84e6, mcap: 77.3e9, relevance: "B-21, nuclear modernization"},
{ticker: "LHX", name: "L3Harris", sector: "Defense", lobby: 2.49e6, mcap: 57.3e9, relevance: "ISR, electronic warfare"},
{ticker: "PFE", name: "Pfizer", sector: "Pharma", lobby: 10.07e6, mcap: 148.4e9, relevance: "Blocks drug price negotiation"},
{ticker: "RHHBY",name: "Roche/Genentech", sector: "Pharma", lobby: 10.76e6, mcap: 331.8e9, relevance: "Blocks biosimilar expansion"},
{ticker: "MRK", name: "Merck", sector: "Pharma", lobby: 9.32e6, mcap: 298.3e9, relevance: "Blocks Medicare negotiation"},
{ticker: "JNJ", name: "Johnson & Johnson", sector: "Pharma", lobby: 8.25e6, mcap: 560.3e9, relevance: "Blocks drug pricing reform"},
{ticker: "LLY", name: "Eli Lilly", sector: "Pharma", lobby: 6.72e6, mcap:1008.0e9, relevance: "Blocks insulin/GLP-1 price caps"},
{ticker: "NVS", name: "Novartis", sector: "Pharma", lobby: 6.22e6, mcap: 284.6e9, relevance: "Blocks drug importation"},
{ticker: "ABBV", name: "AbbVie", sector: "Pharma", lobby: 4.53e6, mcap: 401.5e9, relevance: "Patent thicket protections"},
{ticker: "UNH", name: "UnitedHealth", sector: "Insurance", lobby: 7.52e6, mcap: 360.1e9, relevance: "Blocks single-payer reform"},
{ticker: "XOM", name: "ExxonMobil", sector: "Energy", lobby: 6.82e6, mcap: 619.2e9, relevance: "Blocks climate regulation"},
{ticker: "CVX", name: "Chevron", sector: "Energy", lobby: 9.24e6, mcap: 373.0e9, relevance: "Blocks carbon tax"}
]viewof investmentAmount = Inputs.range([2000, 5000000], {
value: 400000,
step: 1000,
label: "Your investment ($)"
})
viewof holdingPeriod = Inputs.radio(
new Map([["1 year ($25K threshold)", 25000], ["2 years ($15K threshold)", 15000], ["3 years ($2K threshold)", 2000]]),
{value: 25000, label: "Holding period"}
)
viewof sectorWeighting = Inputs.radio(
new Map([["Equal (by lobby ratio)", "ratio"], ["Defense priority", "defense"], ["Pharma priority", "pharma"], ["All sectors", "all"]]),
{value: "ratio", label: "Sector weighting"}
)// Compute lobby-per-market-cap ratio and allocations
ranked = {
let weighted = companies.map(c => {
let ratio = c.lobby / c.mcap;
let sectorMult = 1.0;
if (sectorWeighting === "defense") sectorMult = c.sector === "Defense" ? 3.0 : 0.5;
if (sectorWeighting === "pharma") sectorMult = c.sector === "Pharma" ? 3.0 : 0.5;
if (sectorWeighting === "all") sectorMult = 1.0;
return {...c, ratio, weight: ratio * sectorMult};
});
let totalWeight = weighted.reduce((s, c) => s + c.weight, 0);
return weighted
.map(c => {
let allocation = (c.weight / totalWeight) * investmentAmount;
let canFile = allocation >= holdingPeriod;
return {
...c,
allocation: Math.round(allocation),
canFile,
lobbyRatio_bps: (c.ratio * 10000).toFixed(2),
lobbyChallenged: canFile ? c.lobby : 0
};
})
.sort((a, b) => b.ratio - a.ratio);
}// Summary statistics
summary = {
let totalAllocated = ranked.reduce((s, c) => s + c.allocation, 0);
let proposalsEnabled = ranked.filter(c => c.canFile).length;
let totalLobbyChallenged = ranked.reduce((s, c) => s + c.lobbyChallenged, 0);
let leverageRatio = totalLobbyChallenged / Math.max(totalAllocated, 1);
let sectorBreakdown = {};
for (let c of ranked) {
if (!sectorBreakdown[c.sector]) sectorBreakdown[c.sector] = {allocated: 0, lobbied: 0, count: 0};
sectorBreakdown[c.sector].allocated += c.allocation;
sectorBreakdown[c.sector].lobbied += c.lobbyChallenged;
sectorBreakdown[c.sector].count += c.canFile ? 1 : 0;
}
return {totalAllocated, proposalsEnabled, totalLobbyChallenged, leverageRatio, sectorBreakdown};
}// Display summary cards
html`<div style="display:grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap:1rem; margin:1rem 0;">
<div style="background:#fffaf1; border:1px solid rgba(60,43,16,0.16); border-radius:16px; padding:1rem;">
<div style="color:#6a5a45; font-size:0.84rem; text-transform:uppercase; letter-spacing:0.03em;">Proposals Enabled</div>
<div style="font-size:1.5rem; font-weight:700; color:#0e5f47;">${summary.proposalsEnabled} of ${ranked.length}</div>
<div style="color:#6a5a45; font-size:0.88rem;">companies where you meet the ${holdingPeriod === 25000 ? "$25K" : holdingPeriod === 15000 ? "$15K" : "$2K"} threshold</div>
</div>
<div style="background:#fffaf1; border:1px solid rgba(60,43,16,0.16); border-radius:16px; padding:1rem;">
<div style="color:#6a5a45; font-size:0.84rem; text-transform:uppercase; letter-spacing:0.03em;">Lobbying Challenged</div>
<div style="font-size:1.5rem; font-weight:700; color:#0e5f47;">$${(summary.totalLobbyChallenged / 1e6).toFixed(1)}M/year</div>
<div style="color:#6a5a45; font-size:0.88rem;">annual lobbying spend you can file proposals against</div>
</div>
<div style="background:#fffaf1; border:1px solid rgba(60,43,16,0.16); border-radius:16px; padding:1rem;">
<div style="color:#6a5a45; font-size:0.84rem; text-transform:uppercase; letter-spacing:0.03em;">Leverage Ratio</div>
<div style="font-size:1.5rem; font-weight:700; color:#0e5f47;">${Math.round(summary.leverageRatio)}x</div>
<div style="color:#6a5a45; font-size:0.88rem;">dollars of lobbying challenged per dollar invested</div>
</div>
<div style="background:#fffaf1; border:1px solid rgba(60,43,16,0.16); border-radius:16px; padding:1rem;">
<div style="color:#6a5a45; font-size:0.84rem; text-transform:uppercase; letter-spacing:0.03em;">Cost Per Proposal</div>
<div style="font-size:1.5rem; font-weight:700;">$${holdingPeriod.toLocaleString()}</div>
<div style="color:#6a5a45; font-size:0.88rem;">in shares held (you keep the shares)</div>
</div>
</div>`// Allocation table
html`<div style="overflow-x:auto; margin:1rem 0;">
<table style="width:100%; border-collapse:collapse; font-size:0.9rem;">
<thead>
<tr style="border-bottom:2px solid rgba(60,43,16,0.2);">
<th style="text-align:left; padding:0.5rem;">Company</th>
<th style="text-align:left; padding:0.5rem;">Sector</th>
<th style="text-align:right; padding:0.5rem;">Lobbying/yr</th>
<th style="text-align:right; padding:0.5rem;">Ratio (bps)</th>
<th style="text-align:right; padding:0.5rem;">Your Allocation</th>
<th style="text-align:center; padding:0.5rem;">Can File?</th>
</tr>
</thead>
<tbody>
${ranked.map(c => html`<tr style="border-bottom:1px solid rgba(60,43,16,0.1);">
<td style="padding:0.4rem 0.5rem; font-weight:600;">${c.ticker}</td>
<td style="padding:0.4rem 0.5rem; color:#6a5a45;">${c.sector}</td>
<td style="padding:0.4rem 0.5rem; text-align:right;">$${(c.lobby / 1e6).toFixed(1)}M</td>
<td style="padding:0.4rem 0.5rem; text-align:right;">${c.lobbyRatio_bps}</td>
<td style="padding:0.4rem 0.5rem; text-align:right; font-weight:600;">$${c.allocation.toLocaleString()}</td>
<td style="padding:0.4rem 0.5rem; text-align:center; color:${c.canFile ? '#0e5f47' : '#8d2f25'}; font-weight:700;">${c.canFile ? 'Yes' : 'No'}</td>
</tr>`)}
</tbody>
</table>
</div>`// Sector breakdown
html`<div style="margin:1rem 0; background:#fffaf1; border:1px solid rgba(60,43,16,0.16); border-radius:16px; padding:1rem; overflow-x:auto;">
<table style="width:100%; border-collapse:collapse; font-size:0.9rem;">
<thead>
<tr style="border-bottom:2px solid rgba(60,43,16,0.2);">
<th style="text-align:left; padding:0.4rem 0.5rem;">Sector</th>
<th style="text-align:right; padding:0.4rem 0.5rem;">Invested</th>
<th style="text-align:right; padding:0.4rem 0.5rem;">Lobbying</th>
<th style="text-align:right; padding:0.4rem 0.5rem;">Proposals</th>
</tr>
</thead>
<tbody>
${Object.entries(summary.sectorBreakdown).map(([sector, data]) =>
html`<tr style="border-bottom:1px solid rgba(60,43,16,0.08);">
<td style="padding:0.4rem 0.5rem; font-weight:600;">${sector}</td>
<td style="padding:0.4rem 0.5rem; text-align:right;">$${data.allocated.toLocaleString()}</td>
<td style="padding:0.4rem 0.5rem; text-align:right;">$${(data.lobbied / 1e6).toFixed(1)}M/yr</td>
<td style="padding:0.4rem 0.5rem; text-align:right;">${data.count}</td>
</tr>`
)}
</tbody>
</table>
</div>`// Save to localStorage for crowdsource-ready schema
{
if (typeof localStorage !== 'undefined') {
let overrides = {
param: "lobbying_allocation_investment",
value: investmentAmount,
holding_period_threshold: holdingPeriod,
sector_weighting: sectorWeighting,
timestamp: new Date().toISOString(),
results: {
proposals_enabled: summary.proposalsEnabled,
lobbying_challenged: summary.totalLobbyChallenged,
leverage_ratio: summary.leverageRatio
}
};
localStorage.setItem("eos_param_lobbying_allocation", JSON.stringify(overrides));
}
}Risk analysis: three scenarios
Scenario 1: Thesis works. Buy shares, gain influence, redirect lobbying, treaty passes. Shares appreciate through buying pressure, credibility cascade, and economic growth. Best case.
Scenario 2: Peace gets priced in early. Other forces (fiscal crisis, parallel peace movements, public opinion shift) reduce military spending before the takeover completes. Defense stocks decline. But: you’re buying shares cheaper, biotech positions (if held) appreciate, and board influence during a forced pivot is more valuable than ever.
Scenario 3: Status quo holds. Military spending continues. Treaty fails. But you hold defense stocks, which perform well during periods of continued military spending. The downside is the opportunity cost of whatever else you would have bought.
The asymmetry: In all three scenarios, owning the shares is better than not owning them. The worst case is “you own defense stocks that perform like defense stocks.” The best case is you own the companies that pivoted from weapons to medicine in the largest reallocation of capital in human history.
The hedge: The portfolio should include biotech and healthcare positions alongside defense. When defense spending falls, health spending rises. The two sectors are natural hedges. A portfolio long both captures the transition instead of suffering through it.
If you are greedy
If the campaign fails, you hold defense stocks. If it succeeds, the appreciation is a multiple of your investment. The expected value exceeds the S&P at most reasonable probability estimates because the upside is so much larger than the downside. The calculator above lets you test this with your own numbers.
If you are generous
Every dollar buys voting shares in the companies whose lobbyists are the single largest obstacle to the treaty. The money does not fund an advocacy campaign. It buys the opposition and redirects it.
If you are both
Greed and generosity arrive at the same place.
1.
NIH Common Fund. NIH pragmatic trials: Minimal funding despite 30x cost advantage. NIH Common Fund: HCS Research Collaboratory https://commonfund.nih.gov/hcscollaboratory (2025)
The NIH Pragmatic Trials Collaboratory funds trials at $500K for planning phase, $1M/year for implementation-a tiny fraction of NIH’s budget. The ADAPTABLE trial cost $14 million for 15,076 patients (= $929/patient) versus $420 million for a similar traditional RCT (30x cheaper), yet pragmatic trials remain severely underfunded. PCORnet infrastructure enables real-world trials embedded in healthcare systems, but receives minimal support compared to basic research funding. Additional sources: https://commonfund.nih.gov/hcscollaboratory | https://pcornet.org/wp-content/uploads/2025/08/ADAPTABLE_Lay_Summary_21JUL2025.pdf | https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5604499/
.2.
Cato Institute. Chance of dying from terrorism statistic. Cato Institute: Terrorism and Immigration Risk Analysis https://www.cato.org/policy-analysis/terrorism-immigration-risk-analysis
Chance of American dying in foreign-born terrorist attack: 1 in 3.6 million per year (1975-2015) Including 9/11 deaths; annual murder rate is 253x higher than terrorism death rate More likely to die from lightning strike than foreign terrorism Note: Comprehensive 41-year study shows terrorism risk is extremely low compared to everyday dangers Additional sources: https://www.cato.org/policy-analysis/terrorism-immigration-risk-analysis | https://www.nbcnews.com/news/us-news/you-re-more-likely-die-choking-be-killed-foreign-terrorists-n715141
.3.
NIH. Antidepressant clinical trial exclusion rates. Zimmerman et al. https://pubmed.ncbi.nlm.nih.gov/26276679/ (2015)
Mean exclusion rate: 86.1% across 158 antidepressant efficacy trials (range: 44.4% to 99.8%) More than 82% of real-world depression patients would be ineligible for antidepressant registration trials Exclusion rates increased over time: 91.4% (2010-2014) vs. 83.8% (1995-2009) Most common exclusions: comorbid psychiatric disorders, age restrictions, insufficient depression severity, medical conditions Emergency psychiatry patients: only 3.3% eligible (96.7% excluded) when applying 9 common exclusion criteria Only a minority of depressed patients seen in clinical practice are likely to be eligible for most AETs Note: Generalizability of antidepressant trials has decreased over time, with increasingly stringent exclusion criteria eliminating patients who would actually use the drugs in clinical practice Additional sources: https://pubmed.ncbi.nlm.nih.gov/26276679/ | https://pubmed.ncbi.nlm.nih.gov/26164052/ | https://www.wolterskluwer.com/en/news/antidepressant-trials-exclude-most-real-world-patients-with-depression
.4.
CNBC. Warren buffett’s career average investment return. CNBC https://www.cnbc.com/2025/05/05/warren-buffetts-return-tally-after-60-years-5502284percent.html (2025)
Berkshire’s compounded annual return from 1965 through 2024 was 19.9%, nearly double the 10.4% recorded by the S&P 500. Berkshire shares skyrocketed 5,502,284% compared to the S&P 500’s 39,054% rise during that period. Additional sources: https://www.cnbc.com/2025/05/05/warren-buffetts-return-tally-after-60-years-5502284percent.html | https://www.slickcharts.com/berkshire-hathaway/returns
.5.
World Health Organization. WHO global health estimates 2024. World Health Organization https://www.who.int/data/gho/data/themes/mortality-and-global-health-estimates (2024)
Comprehensive mortality and morbidity data by cause, age, sex, country, and year Global mortality: 55-60 million deaths annually Lives saved by modern medicine (vaccines, cardiovascular drugs, oncology): 12M annually (conservative aggregate) Leading causes of death: Cardiovascular disease (17.9M), Cancer (10.3M), Respiratory disease (4.0M) Note: Baseline data for regulatory mortality analysis. Conservative estimate of pharmaceutical impact based on WHO immunization data (4.5M/year from vaccines) + cardiovascular interventions (3.3M/year) + oncology (1.5M/year) + other therapies. Additional sources: https://www.who.int/data/gho/data/themes/mortality-and-global-health-estimates
.6.
GiveWell. GiveWell cost per life saved for top charities (2024). GiveWell: Top Charities https://www.givewell.org/charities/top-charities
General range: $3,000-$5,500 per life saved (GiveWell top charities) Helen Keller International (Vitamin A): $3,500 average (2022-2024); varies $1,000-$8,500 by country Against Malaria Foundation: $5,500 per life saved New Incentives (vaccination incentives): $4,500 per life saved Malaria Consortium (seasonal malaria chemoprevention): $3,500 per life saved VAS program details: $2 to provide vitamin A supplements to child for one year Note: Figures accurate for 2024. Helen Keller VAS program has wide country variation ($1K-$8.5K) but $3,500 is accurate average. Among most cost-effective interventions globally Additional sources: https://www.givewell.org/charities/top-charities | https://www.givewell.org/charities/helen-keller-international | https://ourworldindata.org/cost-effectiveness
.7.
U.S. Department of Defense. 5.56mm NATO ammunition bulk procurement pricing. (2024)
The cost of 5.56mm NATO ammunition at military bulk procurement rates is approximately $0.40 per round, based on Lake City Army Ammunition Plant production and commercial market floor prices for mil-spec M855 ammunition.
8.
Pike, J. U.s. Forces fire 250,000 rounds for every insurgent killed. (2011)
The General Accounting Office reports that US forces used 1.8 billion rounds of small-arms ammunition per year, a level that more than doubled in five years. An estimated 250,000 rounds were fired for every insurgent killed in Iraq and Afghanistan.
9.
AARP. Unpaid caregiver hours and economic value. AARP 2023 https://www.aarp.org/caregiving/financial-legal/info-2023/unpaid-caregivers-provide-billions-in-care.html (2023)
Average family caregiver: 25-26 hours per week (100-104 hours per month) 38 million caregivers providing 36 billion hours of care annually Economic value: $16.59 per hour = $600 billion total annual value (2021) 28% of people provided eldercare on a given day, averaging 3.9 hours when providing care Caregivers living with care recipient: 37.4 hours per week Caregivers not living with recipient: 23.7 hours per week Note: Disease-related caregiving is subset of total; includes elderly care, disability care, and child care Additional sources: https://www.aarp.org/caregiving/financial-legal/info-2023/unpaid-caregivers-provide-billions-in-care.html | https://www.bls.gov/news.release/elcare.nr0.htm | https://www.caregiver.org/resource/caregiver-statistics-demographics/
.10.
Forbes. Forbes world’s billionaires list 2024. (2024)
Forbes identified a record 2,781 billionaires worldwide with combined net worth of $14.2 trillion, 141 more than 2023. Bernard Arnault (LVMH) topped the list at $233 billion.
11.
CDC MMWR. Childhood vaccination economic benefits. CDC MMWR https://www.cdc.gov/mmwr/volumes/73/wr/mm7331a2.htm (1994)
US programs (1994-2023): $540B direct savings, $2.7T societal savings ( $18B/year direct, $90B/year societal) Global (2001-2020): $820B value for 10 diseases in 73 countries ( $41B/year) ROI: $11 return per $1 invested Measles vaccination alone saved 93.7M lives (61% of 154M total) over 50 years (1974-2024) Additional sources: https://www.cdc.gov/mmwr/volumes/73/wr/mm7331a2.htm | https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(24)00850-X/fulltext
.12.
CDC. Childhood vaccination (US) ROI. CDC https://www.cdc.gov/mmwr/preview/mmwrhtml/mm6316a4.htm (2017).
13.
U.S. Department of Justice. The false claims act. (2025).
14.
United States Supreme Court. State farm mutual automobile insurance co. V. Campbell, 538 u.s. 408. (2003).
15.
U.S. Bureau of Labor Statistics. CPI inflation calculator. (2024)
CPI-U (1980): 82.4 CPI-U (2024): 313.5 Inflation multiplier (1980-2024): 3.80× Cumulative inflation: 280.48% Average annual inflation rate: 3.08% Note: Official U.S. government inflation data using Consumer Price Index for All Urban Consumers (CPI-U). Additional sources: https://www.bls.gov/data/inflation_calculator.htm
.16.
James Surowiecki. The Wisdom of Crowds. (Surowiecki, 2004).
Explores the aggregation of information in groups, arguing that decisions are often better than could have been made by any single member of the group. The opening anecdote relates Francis Galton’s surprise that the crowd at a county fair accurately guessed the weight of an ox when the median of their individual guesses was taken. The three conditions for a group to be intelligent are diversity, independence, and decentralization. Additional sources: https://archive.org/details/wisdomofcrowds0000suro | https://en.wikipedia.org/wiki/The_Wisdom_of_Crowds | https://www.amazon.com/Wisdom-Crowds-James-Surowiecki/dp/0385721706
.17.
ClinicalTrials.gov API v2 direct analysis. ClinicalTrials.gov cumulative enrollment data (2025). Direct analysis via ClinicalTrials.gov API v2 https://clinicaltrials.gov/data-api/api
Analysis of 100,000 active/recruiting/completed trials on ClinicalTrials.gov (as of January 2025) shows cumulative enrollment of 12.2 million participants: Phase 1 (722k), Phase 2 (2.2M), Phase 3 (6.5M), Phase 4 (2.7M). Median participants per trial: Phase 1 (33), Phase 2 (60), Phase 3 (237), Phase 4 (90). Additional sources: https://clinicaltrials.gov/data-api/api
.18.
ACS CAN. Clinical trial patient participation rate. ACS CAN: Barriers to Clinical Trial Enrollment https://www.fightcancer.org/policy-resources/barriers-patient-enrollment-therapeutic-clinical-trials-cancer
Only 3-5% of adult cancer patients in US receive treatment within clinical trials About 5% of American adults have ever participated in any clinical trial Oncology: 2-3% of all oncology patients participate Contrast: 50-60% enrollment for pediatric cancer trials (<15 years old) Note: 20% of cancer trials fail due to insufficient enrollment; 11% of research sites enroll zero patients Additional sources: https://www.fightcancer.org/policy-resources/barriers-patient-enrollment-therapeutic-clinical-trials-cancer | https://hints.cancer.gov/docs/Briefs/HINTS_Brief_48.pdf
.19.
ScienceDaily. Global prevalence of chronic disease. ScienceDaily: GBD 2015 Study https://www.sciencedaily.com/releases/2015/06/150608081753.htm (2015)
2.3 billion individuals had more than five ailments (2013) Chronic conditions caused 74% of all deaths worldwide (2019), up from 67% (2010) Approximately 1 in 3 adults suffer from multiple chronic conditions (MCCs) Risk factor exposures: 2B exposed to biomass fuel, 1B to air pollution, 1B smokers Projected economic cost: $47 trillion by 2030 Note: 2.3B with 5+ ailments is more accurate than "2B with chronic disease." One-third of all adults globally have multiple chronic conditions Additional sources: https://www.sciencedaily.com/releases/2015/06/150608081753.htm | https://pmc.ncbi.nlm.nih.gov/articles/PMC10830426/ | https://pmc.ncbi.nlm.nih.gov/articles/PMC6214883/
.20.
C&EN. Annual number of new drugs approved globally: 50. C&EN https://cen.acs.org/pharmaceuticals/50-new-drugs-received-FDA/103/i2 (2025)
50 new drugs approved annually Additional sources: https://cen.acs.org/pharmaceuticals/50-new-drugs-received-FDA/103/i2 | https://www.fda.gov/drugs/development-approval-process-drugs/novel-drug-approvals-fda
.21.
Williams, R. J., Tse, T., DiPiazza, K. & Zarin, D. A. Terminated trials in the ClinicalTrials.gov results database: Evaluation of availability of primary outcome data and reasons for termination. PLOS One 10, e0127242 (2015)
Approximately 12% of trials with results posted on the ClinicalTrials.gov results database (905/7,646) were terminated. Primary reasons: insufficient accrual (57% of non-data-driven terminations), business/strategic reasons, and efficacy/toxicity findings (21% data-driven terminations).
22.
IQVIA Report. Global trial capacity. IQVIA Report: Clinical Trial Subjects Number Drops Due to Decline in COVID-19 Enrollment https://gmdpacademy.org/news/iqvia-report-clinical-trial-subjects-number-drops-due-to-decline-in-covid-19-enrollment/
1.9M participants annually (2022, post-COVID normalization from 4M peak in 2021) Additional sources: https://gmdpacademy.org/news/iqvia-report-clinical-trial-subjects-number-drops-due-to-decline-in-covid-19-enrollment/
.23.
Research and Markets. Global clinical trials market 2024. Research and Markets https://www.globenewswire.com/news-release/2024/04/19/2866012/0/en/Global-Clinical-Trials-Market-Research-Report-2024-An-83-16-Billion-Market-by-2030-AI-Machine-Learning-and-Blockchain-will-Transform-the-Clinical-Trials-Landscape.html (2024)
Global clinical trials market valued at approximately $83 billion in 2024, with projections to reach $83-132 billion by 2030. Additional sources: https://www.globenewswire.com/news-release/2024/04/19/2866012/0/en/Global-Clinical-Trials-Market-Research-Report-2024-An-83-16-Billion-Market-by-2030-AI-Machine-Learning-and-Blockchain-will-Transform-the-Clinical-Trials-Landscape.html | https://www.precedenceresearch.com/clinical-trials-market
.24.
OpenSecrets. Lobbying spend (defense). OpenSecrets https://www.opensecrets.org/industries/lobbying?ind=D (2024).
25.
Companies Market Cap. Largest defense contractors by market capitalization. CompaniesMarketCap.com: Defense Contractors https://companiesmarketcap.com/defense-contractors/largest-companies-by-market-cap/ (2026).
26.
Rummel, R. J. Death by Government: Genocide and Mass Murder Since 1900. (Transaction Publishers, 1994).
Political scientist R.J. Rummel’s comprehensive accounting of democide (government murder of unarmed civilians) in the 20th century. His final revised estimate: 262 million people murdered by their own governments from 1900-1999, excluding battle deaths in wars. Range: 200-272+ million. Communist regimes account for the largest share (100-148+ million). Updated figures at hawaii.edu/powerkills.
27.
GiveWell. Cost per DALY for deworming programs. https://www.givewell.org/international/technical/programs/deworming/cost-effectiveness
Schistosomiasis treatment: $28.19-$70.48 per DALY (using arithmetic means with varying disability weights) Soil-transmitted helminths (STH) treatment: $82.54 per DALY (midpoint estimate) Note: GiveWell explicitly states this 2011 analysis is "out of date" and their current methodology focuses on long-term income effects rather than short-term health DALYs Additional sources: https://www.givewell.org/international/technical/programs/deworming/cost-effectiveness
.28.
Calculated from IHME Global Burden of Disease (2.55B DALYs) and global GDP per capita valuation. $109 trillion annual global disease burden.
The global economic burden of disease, including direct healthcare costs ($8.2 trillion) and lost productivity ($100.9 trillion from 2.55 billion DALYs × $39,570 per DALY), totals approximately $109.1 trillion annually.
29.
U.S. Department of Transportation. Departmental guidance on valuation of a statistical life in economic analysis. (2024).
30.
Think by Numbers. Pre-1962 drug development costs and timeline (think by numbers). Think by Numbers: How Many Lives Does FDA Save? https://thinkbynumbers.org/health/how-many-net-lives-does-the-fda-save/ (1962)
Historical estimates (1970-1985): USD $226M fully capitalized (2011 prices) 1980s drugs: $65M after-tax R&D (1990 dollars), $194M compounded to approval (1990 dollars) Modern comparison: $2-3B costs, 7-12 years (dramatic increase from pre-1962) Context: 1962 regulatory clampdown reduced new treatment production by 70%, dramatically increasing development timelines and costs Note: Secondary source; less reliable than Congressional testimony Additional sources: https://thinkbynumbers.org/health/how-many-net-lives-does-the-fda-save/ | https://en.wikipedia.org/wiki/Cost_of_drug_development | https://www.statnews.com/2018/10/01/changing-1962-law-slash-drug-prices/
.31.
Biotechnology Innovation Organization (BIO). BIO clinical development success rates 2011-2020. Biotechnology Innovation Organization (BIO) https://go.bio.org/rs/490-EHZ-999/images/ClinicalDevelopmentSuccessRates2011_2020.pdf (2021)
Phase I duration: 2.3 years average Total time to market (Phase I-III + approval): 10.5 years average Phase transition success rates: Phase I→II: 63.2%, Phase II→III: 30.7%, Phase III→Approval: 58.1% Overall probability of approval from Phase I: 12% Note: Largest publicly available study of clinical trial success rates. Efficacy lag = 10.5 - 2.3 = 8.2 years post-safety verification. Additional sources: https://go.bio.org/rs/490-EHZ-999/images/ClinicalDevelopmentSuccessRates2011_2020.pdf
.32.
Nature Medicine. Drug repurposing rate ( 30%). Nature Medicine https://www.nature.com/articles/s41591-024-03233-x (2024)
Approximately 30% of drugs gain at least one new indication after initial approval. Additional sources: https://www.nature.com/articles/s41591-024-03233-x
.33.
EPI. Education investment economic multiplier (2.1). EPI: Public Investments Outside Core Infrastructure https://www.epi.org/publication/bp348-public-investments-outside-core-infrastructure/
Early childhood education: Benefits 12X outlays by 2050; $8.70 per dollar over lifetime Educational facilities: $1 spent → $1.50 economic returns Energy efficiency comparison: 2-to-1 benefit-to-cost ratio (McKinsey) Private return to schooling: 9% per additional year (World Bank meta-analysis) Note: 2.1 multiplier aligns with benefit-to-cost ratios for educational infrastructure/energy efficiency. Early childhood education shows much higher returns (12X by 2050) Additional sources: https://www.epi.org/publication/bp348-public-investments-outside-core-infrastructure/ | https://documents1.worldbank.org/curated/en/442521523465644318/pdf/WPS8402.pdf | https://freopp.org/whitepapers/establishing-a-practical-return-on-investment-framework-for-education-and-skills-development-to-expand-economic-opportunity/
.34.
PMC. Healthcare investment economic multiplier (1.8). PMC: California Universal Health Care https://pmc.ncbi.nlm.nih.gov/articles/PMC5954824/ (2022)
Healthcare fiscal multiplier: 4.3 (95% CI: 2.5-6.1) during pre-recession period (1995-2007) Overall government spending multiplier: 1.61 (95% CI: 1.37-1.86) Why healthcare has high multipliers: No effect on trade deficits (spending stays domestic); improves productivity & competitiveness; enhances long-run potential output Gender-sensitive fiscal spending (health & care economy) produces substantial positive growth impacts Note: "1.8" appears to be conservative estimate; research shows healthcare multipliers of 4.3 Additional sources: https://pmc.ncbi.nlm.nih.gov/articles/PMC5954824/ | https://cepr.org/voxeu/columns/government-investment-and-fiscal-stimulus | https://ncbi.nlm.nih.gov/pmc/articles/PMC3849102/ | https://set.odi.org/wp-content/uploads/2022/01/Fiscal-multipliers-review.pdf
.35.
World Bank. Infrastructure investment economic multiplier (1.6). World Bank: Infrastructure Investment as Stimulus https://blogs.worldbank.org/en/ppps/effectiveness-infrastructure-investment-fiscal-stimulus-what-weve-learned (2022)
Infrastructure fiscal multiplier: 1.6 during contractionary phase of economic cycle Average across all economic states: 1.5 (meaning $1 of public investment → $1.50 of economic activity) Time horizon: 0.8 within 1 year, 1.5 within 2-5 years Range of estimates: 1.5-2.0 (following 2008 financial crisis & American Recovery Act) Italian public construction: 1.5-1.9 multiplier US ARRA: 0.4-2.2 range (differential impacts by program type) Economic Policy Institute: Uses 1.6 for infrastructure spending (middle range of estimates) Note: Public investment less likely to crowd out private activity during recessions; particularly effective when monetary policy loose with near-zero rates Additional sources: https://blogs.worldbank.org/en/ppps/effectiveness-infrastructure-investment-fiscal-stimulus-what-weve-learned | https://www.gihub.org/infrastructure-monitor/insights/fiscal-multiplier-effect-of-infrastructure-investment/ | https://cepr.org/voxeu/columns/government-investment-and-fiscal-stimulus | https://www.richmondfed.org/publications/research/economic_brief/2022/eb_22-04
.36.
Mercatus. Military spending economic multiplier (0.6). Mercatus: Defense Spending and Economy https://www.mercatus.org/research/research-papers/defense-spending-and-economy
Ramey (2011): 0.6 short-run multiplier Barro (1981): 0.6 multiplier for WWII spending (war spending crowded out 40¢ private economic activity per federal dollar) Barro & Redlick (2011): 0.4 within current year, 0.6 over two years; increased govt spending reduces private-sector GDP portions General finding: $1 increase in deficit-financed federal military spending = less than $1 increase in GDP Variation by context: Central/Eastern European NATO: 0.6 on impact, 1.5-1.6 in years 2-3, gradual fall to zero Ramey & Zubairy (2018): Cumulative 1% GDP increase in military expenditure raises GDP by 0.7% Additional sources: https://www.mercatus.org/research/research-papers/defense-spending-and-economy | https://cepr.org/voxeu/columns/world-war-ii-america-spending-deficits-multipliers-and-sacrifice | https://www.rand.org/content/dam/rand/pubs/research_reports/RRA700/RRA739-2/RAND_RRA739-2.pdf
.37.
FDA. FDA-approved prescription drug products (20,000+). FDA https://www.fda.gov/media/143704/download
There are over 20,000 prescription drug products approved for marketing. Additional sources: https://www.fda.gov/media/143704/download
.38.
FDA. FDA GRAS list count ( 570-700). FDA https://www.fda.gov/food/generally-recognized-safe-gras/gras-notice-inventory
The FDA GRAS (Generally Recognized as Safe) list contains approximately 570–700 substances. Additional sources: https://www.fda.gov/food/generally-recognized-safe-gras/gras-notice-inventory
.39.
ACLED. Active combat deaths annually. ACLED: Global Conflict Surged 2024 https://acleddata.com/2024/12/12/data-shows-global-conflict-surged-in-2024-the-washington-post/ (2024)
2024: 233,597 deaths (30% increase from 179,099 in 2023) Deadliest conflicts: Ukraine (67,000), Palestine (35,000) Nearly 200,000 acts of violence (25% higher than 2023, double from 5 years ago) One in six people globally live in conflict-affected areas Additional sources: https://acleddata.com/2024/12/12/data-shows-global-conflict-surged-in-2024-the-washington-post/ | https://acleddata.com/media-citation/data-shows-global-conflict-surged-2024-washington-post | https://acleddata.com/conflict-index/index-january-2024/
.40.
UCDP. State violence deaths annually. UCDP: Uppsala Conflict Data Program https://ucdp.uu.se/
Uppsala Conflict Data Program (UCDP): Tracks one-sided violence (organized actors attacking unarmed civilians) UCDP definition: Conflicts causing at least 25 battle-related deaths in calendar year 2023 total organized violence: 154,000 deaths; Non-state conflicts: 20,900 deaths UCDP collects data on state-based conflicts, non-state conflicts, and one-sided violence Specific "2,700 annually" figure for state violence not found in recent UCDP data; actual figures vary annually Additional sources: https://ucdp.uu.se/ | https://en.wikipedia.org/wiki/Uppsala_Conflict_Data_Program | https://ourworldindata.org/grapher/deaths-in-armed-conflicts-by-region
.41.
Our World in Data. Terror attack deaths (8,300 annually). Our World in Data: Terrorism https://ourworldindata.org/terrorism (2024)
2023: 8,352 deaths (22% increase from 2022, highest since 2017) 2023: 3,350 terrorist incidents (22% decrease), but 56% increase in avg deaths per attack Global Terrorism Database (GTD): 200,000+ terrorist attacks recorded (2021 version) Maintained by: National Consortium for Study of Terrorism & Responses to Terrorism (START), U. of Maryland Geographic shift: Epicenter moved from Middle East to Central Sahel (sub-Saharan Africa) - now >50% of all deaths Additional sources: https://ourworldindata.org/terrorism | https://reliefweb.int/report/world/global-terrorism-index-2024 | https://www.start.umd.edu/gtd/ | https://ourworldindata.org/grapher/fatalities-from-terrorism
.42.
Institute for Health Metrics and Evaluation (IHME). IHME global burden of disease 2021 (2.88B DALYs, 1.13B YLD). Institute for Health Metrics and Evaluation (IHME) https://vizhub.healthdata.org/gbd-results/ (2024)
In 2021, global DALYs totaled approximately 2.88 billion, comprising 1.75 billion Years of Life Lost (YLL) and 1.13 billion Years Lived with Disability (YLD). This represents a 13% increase from 2019 (2.55B DALYs), largely attributable to COVID-19 deaths and aging populations. YLD accounts for approximately 39% of total DALYs, reflecting the substantial burden of non-fatal chronic conditions. Additional sources: https://vizhub.healthdata.org/gbd-results/ | https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(24)00757-8/fulltext | https://www.healthdata.org/research-analysis/about-gbd
.43.
Costs of War Project, Brown University Watson Institute. Environmental cost of war ($100B annually). Brown Watson Costs of War: Environmental Cost https://watson.brown.edu/costsofwar/costs/social/environment
War on Terror emissions: 1.2B metric tons GHG (equivalent to 257M cars/year) Military: 5.5% of global GHG emissions (2X aviation + shipping combined) US DoD: World’s single largest institutional oil consumer, 47th largest emitter if nation Cleanup costs: $500B+ for military contaminated sites Gaza war environmental damage: $56.4B; landmine clearance: $34.6B expected Climate finance gap: Rich nations spend 30X more on military than climate finance Note: Military activities cause massive environmental damage through GHG emissions, toxic contamination, and long-term cleanup costs far exceeding current climate finance commitments Additional sources: https://watson.brown.edu/costsofwar/costs/social/environment | https://earth.org/environmental-costs-of-wars/ | https://transformdefence.org/transformdefence/stats/
.44.
ScienceDaily. Medical research lives saved annually (4.2 million). ScienceDaily: Physical Activity Prevents 4M Deaths https://www.sciencedaily.com/releases/2020/06/200617194510.htm (2020)
Physical activity: 3.9M early deaths averted annually worldwide (15% lower premature deaths than without) COVID vaccines (2020-2024): 2.533M deaths averted, 14.8M life-years preserved; first year alone: 14.4M deaths prevented Cardiovascular prevention: 3 interventions could delay 94.3M deaths over 25 years (antihypertensives alone: 39.4M) Pandemic research response: Millions of deaths averted through rapid vaccine/drug development Additional sources: https://www.sciencedaily.com/releases/2020/06/200617194510.htm | https://pmc.ncbi.nlm.nih.gov/articles/PMC9537923/ | https://www.ahajournals.org/doi/10.1161/CIRCULATIONAHA.118.038160 | https://pmc.ncbi.nlm.nih.gov/articles/PMC9464102/
.45.
SIPRI. 36:1 disparity ratio of spending on weapons over cures. SIPRI: Military Spending https://www.sipri.org/commentary/blog/2016/opportunity-cost-world-military-spending (2016)
Global military spending: $2.7 trillion (2024, SIPRI) Global government medical research: $68 billion (2024) Actual ratio: 39.7:1 in favor of weapons over medical research Military R&D alone: $85B (2004 data, 10% of global R&D) Military spending increases crowd out health: 1% ↑ military = 0.62% ↓ health spending Note: Ratio actually worse than 36:1. Each 1% increase in military spending reduces health spending by 0.62%, with effect more intense in poorer countries (0.962% reduction) Additional sources: https://www.sipri.org/commentary/blog/2016/opportunity-cost-world-military-spending | https://pmc.ncbi.nlm.nih.gov/articles/PMC9174441/ | https://www.congress.gov/crs-product/R45403
.46.
Think by Numbers. Lost human capital due to war ($270B annually). Think by Numbers https://thinkbynumbers.org/military/war/the-economic-case-for-peace-a-comprehensive-financial-analysis/ (2021)
Lost human capital from war: $300B annually (economic impact of losing skilled/productive individuals to conflict) Broader conflict/violence cost: $14T/year globally 1.4M violent deaths/year; conflict holds back economic development, causes instability, widens inequality, erodes human capital 2002: 48.4M DALYs lost from 1.6M violence deaths = $151B economic value (2000 USD) Economic toll includes: commodity prices, inflation, supply chain disruption, declining output, lost human capital Additional sources: https://thinkbynumbers.org/military/war/the-economic-case-for-peace-a-comprehensive-financial-analysis/ | https://www.weforum.org/stories/2021/02/war-violence-costs-each-human-5-a-day/ | https://pubmed.ncbi.nlm.nih.gov/19115548/
.47.
PubMed. Psychological impact of war cost ($100B annually). PubMed: Economic Burden of PTSD https://pubmed.ncbi.nlm.nih.gov/35485933/
PTSD economic burden (2018 U.S.): $232.2B total ($189.5B civilian, $42.7B military) Civilian costs driven by: Direct healthcare ($66B), unemployment ($42.7B) Military costs driven by: Disability ($17.8B), direct healthcare ($10.1B) Exceeds costs of other mental health conditions (anxiety, depression) War-exposed populations: 2-3X higher rates of anxiety, depression, PTSD; women and children most vulnerable Note: Actual burden $232B, significantly higher than "$100B" claimed Additional sources: https://pubmed.ncbi.nlm.nih.gov/35485933/ | https://news.va.gov/103611/study-national-economic-burden-of-ptsd-staggering/ | https://pmc.ncbi.nlm.nih.gov/articles/PMC9957523/
.48.
CGDev. UNHCR average refugee support cost. CGDev https://www.cgdev.org/blog/costs-hosting-refugees-oecd-countries-and-why-uk-outlier (2024)
The average cost of supporting a refugee is $1,384 per year. This represents total host country costs (housing, healthcare, education, security). OECD countries average $6,100 per refugee (mean 2022-2023), with developing countries spending $700-1,000. Global weighted average of $1,384 is reasonable given that 75-85% of refugees are in low/middle-income countries. Additional sources: https://www.cgdev.org/blog/costs-hosting-refugees-oecd-countries-and-why-uk-outlier | https://www.unhcr.org/sites/default/files/2024-11/UNHCR-WB-global-cost-of-refugee-inclusion-in-host-country-health-systems.pdf
.49.
World Bank. World bank trade disruption cost from conflict. World Bank https://www.worldbank.org/en/topic/trade/publication/trading-away-from-conflict
Estimated $616B annual cost from conflict-related trade disruption. World Bank research shows civil war costs an average developing country 30 years of GDP growth, with 20 years needed for trade to return to pre-war levels. Trade disputes analysis shows tariff escalation could reduce global exports by up to $674 billion. Additional sources: https://www.worldbank.org/en/topic/trade/publication/trading-away-from-conflict | https://www.nber.org/papers/w11565 | http://blogs.worldbank.org/en/trade/impacts-global-trade-and-income-current-trade-disputes
.50.
VA. Veteran healthcare cost projections. VA https://department.va.gov/wp-content/uploads/2025/06/2026-Budget-in-Brief.pdf (2026)
VA budget: $441.3B requested for FY 2026 (10% increase). Disability compensation: $165.6B in FY 2024 for 6.7M veterans. PACT Act projected to increase spending by $300B between 2022-2031. Costs under Toxic Exposures Fund: $20B (2024), $30.4B (2025), $52.6B (2026). Additional sources: https://department.va.gov/wp-content/uploads/2025/06/2026-Budget-in-Brief.pdf | https://www.cbo.gov/publication/45615 | https://www.legion.org/information-center/news/veterans-healthcare/2025/june/va-budget-tops-400-billion-for-2025-from-higher-spending-on-mandated-benefits-medical-care
.51.
IQVIA Institute for Human Data Science. The global use of medicines 2024: Outlook to 2028. IQVIA Institute Report https://www.iqvia.com/insights/the-iqvia-institute/reports-and-publications/reports/the-global-use-of-medicines-2024-outlook-to-2028 (2024)
Global days of therapy reached 1.8 trillion in 2019 (234 defined daily doses per person). Diabetes, respiratory, CVD, and cancer account for 71 percent of medicine use. Projected to reach 3.8 trillion DDDs by 2028.
52.
Sinn, M. P. Private industry clinical trial spending estimate. (2025)
Estimated private pharmaceutical and biotech clinical trial spending is approximately $75-90 billion annually, representing roughly 90% of global clinical trial spending.
53.
Cybersecurity Ventures. Cybercrime economy projected to reach $10.5 trillion. Cybersecurity Ventures: $10.5T Cybercrime https://cybersecurityventures.com/hackerpocalypse-cybercrime-report-2016/ (2016)
Global cybercrime costs: $3T (2015) → $6T (2021) → $10.5T (2025 projected) 15% annual growth rate If measured as country, would be 3rd largest economy after US and China Greatest transfer of economic wealth in history Note: More profitable than global trade of all major illegal drugs combined. Includes data theft, productivity loss, IP theft, fraud Additional sources: <https://cybersecurityventures.com/hackerpocalypse-cybercrime-report-2016/> | https://www.boisestate.edu/cybersecurity/2022/06/16/cybercrime-to-cost-the-world-10-5-trillion-annually-by-2025/
.54.
Sinn, M. P. The Political Dysfunction Tax. https://manual.warondisease.org/knowledge/appendix/political-dysfunction-tax.html (2025) doi:10.5281/zenodo.18603840
Quantifying the gap between current global governance and theoretical maximum welfare, estimating a 31-53% efficiency score and $97 trillion in annual opportunity costs.
55.
Bolt, J. & Zanden, J. L. van. Maddison project database 2020. (2020)
Historical GDP per capita estimates from year 1 to present. Global GDP per capita in 1900: approximately 1,260 in 1990 international dollars (roughly 3,150 in 2024 USD after PPP and inflation adjustment). Standard reference for long-run comparative economic history.
56.
Applied Clinical Trials. Global government spending on interventional clinical trials: $3-6 billion/year. Applied Clinical Trials https://www.appliedclinicaltrialsonline.com/view/sizing-clinical-research-market
Estimated range based on NIH ( $0.8-5.6B), NIHR ($1.6B total budget), and EU funding ( $1.3B/year). Roughly 5-10% of global market. Additional sources: https://www.appliedclinicaltrialsonline.com/view/sizing-clinical-research-market | https://www.thelancet.com/journals/langlo/article/PIIS2214-109X(20)30357-0/fulltext
.57.
World Bank. Expense (% of GDP) - world. (2024).
58.
UBS. Credit suisse global wealth report 2023. Credit Suisse/UBS https://www.ubs.com/global/en/family-office-uhnw/reports/global-wealth-report-2023.html (2023)
Total global household wealth: USD 454.4 trillion (2022) Wealth declined by USD 11.3 trillion (-2.4%) in 2022, first decline since 2008 Wealth per adult: USD 84,718 Additional sources: https://www.ubs.com/global/en/family-office-uhnw/reports/global-wealth-report-2023.html
.59.
Component country budgets. Global government medical research spending ($67.5B, 2023–2024). See component country budgets: NIH Budget https://www.nih.gov/about-nih/what-we-do/budget.
60.
United Nations Department of Economic and Social Affairs, Population Division. World population prospects 2024: Summary of results. (2024)
The 2024 Revision of the World Population Prospects provides population estimates and projections for 237 countries or areas. Global median age approximately 30.5 years in 2024, reflecting population-weighted average across all regions.
61.
Stockholm International Peace Research Institute. Trends in world military expenditure, 2024. (2025).
62.
SIPRI. Global military spending ($2.72T, 2024). SIPRI https://www.sipri.org/publications/2025/sipri-fact-sheets/trends-world-military-expenditure-2024 (2025).
63.
Estimated from major foundation budgets and activities. Nonprofit clinical trial funding estimate.
Nonprofit foundations spend an estimated $2-5 billion annually on clinical trials globally, representing approximately 2-5% of total clinical trial spending.
64.
ICAN. Global nuclear weapon maintenance cost: $100 billion/year. ICAN: Global Spending $100B 2024 https://www.icanw.org/global_spending_on_nuclear_weapons_topped_100_billion_in_2024 (2024)
2024: >$100 billion ($190,151/minute) - 11% increase ($9.9B) from 2023 Nine nuclear-armed states: China, France, India, Israel, N. Korea, Pakistan, Russia, UK, US US: $56.8B (more than all other 8 states combined); China: $12.5B; UK: $10B (+26% YoY, biggest increase) Historical trend: $72.9B (2019) → $82.4B (2021) → >$100B (2024) Private sector contracts: $463B ongoing; $42.5B earned from contracts in 2024 alone Note: $100B/year figure accurate for 2024. Rapid growth from $73B (2019). US spends more than rest of world combined on nuclear weapons Additional sources: https://www.icanw.org/global_spending_on_nuclear_weapons_topped_100_billion_in_2024 | https://www.icanw.org/the_cost_of_nuclear_weapons
.65.
Industry reports: IQVIA. Global pharmaceutical r&d spending.
Total global pharmaceutical R&D spending is approximately $300 billion annually. Clinical trials represent 15-20% of this total ($45-60B), with the remainder going to drug discovery, preclinical research, regulatory affairs, and manufacturing development.
66.
UN. Global population reaches 8 billion. UN: World Population 8 Billion Nov 15 2022 https://www.un.org/en/desa/world-population-reach-8-billion-15-november-2022 (2022)
Milestone: November 15, 2022 (UN World Population Prospects 2022) Day of Eight Billion" designated by UN Added 1 billion people in just 11 years (2011-2022) Growth rate: Slowest since 1950; fell under 1% in 2020 Future: 15 years to reach 9B (2037); projected peak 10.4B in 2080s Projections: 8.5B (2030), 9.7B (2050), 10.4B (2080-2100 plateau) Note: Milestone reached Nov 2022. Population growth slowing; will take longer to add next billion (15 years vs 11 years) Additional sources: https://www.un.org/en/desa/world-population-reach-8-billion-15-november-2022 | https://www.un.org/en/dayof8billion | https://en.wikipedia.org/wiki/Day_of_Eight_Billion
.67.
Harvard Kennedy School. 3.5% participation tipping point. Harvard Kennedy School https://www.hks.harvard.edu/centers/carr/publications/35-rule-how-small-minority-can-change-world (2020)
The research found that nonviolent campaigns were twice as likely to succeed as violent ones, and once 3.5% of the population were involved, they were always successful. Chenoweth and Maria Stephan studied the success rates of civil resistance efforts from 1900 to 2006, finding that nonviolent movements attracted, on average, four times as many participants as violent movements and were more likely to succeed. Key finding: Every campaign that mobilized at least 3.5% of the population in sustained protest was successful (in their 1900-2006 dataset) Note: The 3.5% figure is a descriptive statistic from historical analysis, not a guaranteed threshold. One exception (Bahrain 2011-2014 with 6%+ participation) has been identified. The rule applies to regime change, not policy change in democracies. Additional sources: https://www.hks.harvard.edu/centers/carr/publications/35-rule-how-small-minority-can-change-world | https://www.hks.harvard.edu/sites/default/files/2024-05/Erica%20Chenoweth_2020-005.pdf | https://www.bbc.com/future/article/20190513-it-only-takes-35-of-people-to-change-the-world | https://en.wikipedia.org/wiki/3.5%25_rule
.68.
International IDEA. International IDEA voter turnout database world export. (2026)
Best current register-based estimate of global registered voters. Sum of the latest available country-level Registration counts in International IDEA’s world export on 2026-04-22 = 4,128,142,495 registered voters across 199 countries and political entities. Methodology notes that Registration is the number of names on the voters’ register as reported by electoral management bodies, and comparability is imperfect because voter rolls and registration systems differ across countries. Additional sources: https://www.idea.int/data-tools/data/voter-turnout-database | https://www.idea.int/data-tools/export?type=region_only&themeId=293&world=all&loc=home
.69.
World Bank. Gross savings (% of GDP). (2024).
70.
Federation of American Scientists. World nuclear forces. Federation of American Scientists https://fas.org/issues/nuclear-weapons/status-world-nuclear-forces/ (2024)
As of early 2025, we estimate that the world’s nine nuclear-armed states possess a combined total of approximately 12,241 nuclear warheads. Additional sources: https://fas.org/issues/nuclear-weapons/status-world-nuclear-forces/
.71.
NHGRI. Human genome project and CRISPR discovery. NHGRI https://www.genome.gov/11006929/2003-release-international-consortium-completes-hgp (2003)
Your DNA is 3 billion base pairs Read the entire code (Human Genome Project, completed 2003) Learned to edit it (CRISPR, discovered 2012) Additional sources: https://www.genome.gov/11006929/2003-release-international-consortium-completes-hgp | https://www.nobelprize.org/prizes/chemistry/2020/press-release/
.72.
PMC. Only 12% of human interactome targeted. PMC https://pmc.ncbi.nlm.nih.gov/articles/PMC10749231/ (2023)
Mapping 350,000+ clinical trials showed that only 12% of the human interactome has ever been targeted by drugs. Additional sources: https://pmc.ncbi.nlm.nih.gov/articles/PMC10749231/
.73.
WHO. ICD-10 code count ( 14,000). WHO https://icd.who.int/browse10/2019/en (2019)
The ICD-10 classification contains approximately 14,000 codes for diseases, signs and symptoms. Additional sources: https://icd.who.int/browse10/2019/en
.74.
Wikipedia. Longevity escape velocity (LEV) - maximum human life extension potential. Wikipedia: Longevity Escape Velocity https://en.wikipedia.org/wiki/Longevity_escape_velocity
Longevity escape velocity: Hypothetical point where medical advances extend life expectancy faster than time passes Term coined by Aubrey de Grey (biogerontologist) in 2004 paper; concept from David Gobel (Methuselah Foundation) Current progress: Science adds 3 months to lifespan per year; LEV requires adding >1 year per year Sinclair (Harvard): "There is no biological upper limit to age" - first person to live to 150 may already be born De Grey: 50% chance of reaching LEV by mid-to-late 2030s; SENS approach = damage repair rather than slowing damage Kurzweil (2024): LEV by 2029-2035, AI will simulate biological processes to accelerate solutions George Church: LEV "in a decade or two" via age-reversal clinical trials Natural lifespan cap: 120-150 years (Jeanne Calment record: 122); engineering approach could bypass via damage repair Key mechanisms: Epigenetic reprogramming, senolytic drugs, stem cell therapy, gene therapy, AI-driven drug discovery Current record: Jeanne Calment (122 years, 164 days) - record unbroken since 1997 Note: LEV is theoretical but increasingly plausible given demonstrated age reversal in mice (109% lifespan extension) and human cells (30-year epigenetic age reversal) Additional sources: https://en.wikipedia.org/wiki/Longevity_escape_velocity | https://pmc.ncbi.nlm.nih.gov/articles/PMC423155/ | https://www.popularmechanics.com/science/a36712084/can-science-cure-death-longevity/ | https://www.diamandis.com/blog/longevity-escape-velocity
.75.
OpenSecrets. Lobbyist statistics for washington d.c. OpenSecrets: Lobbying in US https://en.wikipedia.org/wiki/Lobbying_in_the_United_States
Registered lobbyists: Over 12,000 (some estimates); 12,281 registered (2013) Former government employees as lobbyists: 2,200+ former federal employees (1998-2004), including 273 former White House staffers, 250 former Congress members & agency heads Congressional revolving door: 43% (86 of 198) lawmakers who left 1998-2004 became lobbyists; currently 59% leaving to private sector work for lobbying/consulting firms/trade groups Executive branch: 8% were registered lobbyists at some point before/after government service Additional sources: https://en.wikipedia.org/wiki/Lobbying_in_the_United_States | https://www.opensecrets.org/revolving-door | https://www.citizen.org/article/revolving-congress/ | https://www.propublica.org/article/we-found-a-staggering-281-lobbyists-whove-worked-in-the-trump-administration
.76.
MDPI Vaccines. Measles vaccination ROI. MDPI Vaccines https://www.mdpi.com/2076-393X/12/11/1210 (2024)
Single measles vaccination: 167:1 benefit-cost ratio. MMR (measles-mumps-rubella) vaccination: 14:1 ROI. Historical US elimination efforts (1966-1974): benefit-cost ratio of 10.3:1 with net benefits exceeding USD 1.1 billion (1972 dollars, or USD 8.0 billion in 2023 dollars). 2-dose MMR programs show direct benefit/cost ratio of 14.2 with net savings of $5.3 billion, and 26.0 from societal perspectives with net savings of $11.6 billion. Additional sources: https://www.mdpi.com/2076-393X/12/11/1210 | https://www.tandfonline.com/doi/full/10.1080/14760584.2024.2367451
.77.
Gosse, M. E. Assessing cost-effectiveness in healthcare: History of the $50,000 per QALY threshold. Sustainability Impact Metrics https://ecocostsvalue.com/EVR/img/references%20others/Gosse%202008%20QALY%20threshold%20financial.pdf (2008).
78.
National Institutes of Health BRAIN Initiative. BRAIN 2025: A scientific vision. (2014).
79.
Congressional Research Service. Advanced Gene Editing: CRISPR-Cas9. https://www.congress.gov/crs_external_products/R/PDF/R44824/R44824.7.pdf (2018).
80.
U.S. Government Accountability Office. Electronic Health Records: First Year of CMS’s Incentive Programs Shows Opportunities to Improve Processes to Verify Providers Met Requirements. https://www.gao.gov/products/gao-12-481 (2012).
81.
U.S. Government Accountability Office. Operation Warp Speed Vaccine Candidate Awards Potential Value. https://www.gao.gov/assets/gao-21-207.pdf (2020).
82.
PCORnet. PCORnet quarterly progress report, Q4 2025. (2026).
83.
World Health Organization. Mental health global burden. World Health Organization https://www.who.int/news/item/28-09-2001-the-world-health-report-2001-mental-disorders-affect-one-in-four-people (2022)
One in four people in the world will be affected by mental or neurological disorders at some point in their lives, representing [approximately] 30% of the global burden of disease. Additional sources: https://www.who.int/news/item/28-09-2001-the-world-health-report-2001-mental-disorders-affect-one-in-four-people
.84.
Stockholm International Peace Research Institute. Trends in world military expenditure, 2023. (2024).
85.
Calculated from Orphanet Journal of Rare Diseases (2024). Diseases getting first effective treatment each year. Calculated from Orphanet Journal of Rare Diseases (2024) https://ojrd.biomedcentral.com/articles/10.1186/s13023-024-03398-1 (2024)
Under the current system, approximately 10-15 diseases per year receive their FIRST effective treatment. Calculation: 5% of 7,000 rare diseases ( 350) have FDA-approved treatment, accumulated over 40 years of the Orphan Drug Act = 9 rare diseases/year. Adding 5-10 non-rare diseases that get first treatments yields 10-20 total. FDA approves 50 drugs/year, but many are for diseases that already have treatments (me-too drugs, second-line therapies). Only 15 represent truly FIRST treatments for previously untreatable conditions.
86.
NIH. NIH budget (FY 2025). NIH https://www.nih.gov/about-nih/organization/budget (2024)
The budget total of $47.7 billion also includes $1.412 billion derived from PHS Evaluation financing... Additional sources: https://www.nih.gov/about-nih/organization/budget | https://officeofbudget.od.nih.gov/
.87.
Bentley et al. NIH spending on clinical trials: 3.3%. Bentley et al. https://pmc.ncbi.nlm.nih.gov/articles/PMC10349341/ (2023)
NIH spent $8.1 billion on clinical trials for approved drugs (2010-2019), representing 3.3% of relevant NIH spending. Additional sources: https://pmc.ncbi.nlm.nih.gov/articles/PMC10349341/ | https://catalyst.harvard.edu/news/article/nih-spent-8-1b-for-phased-clinical-trials-of-drugs-approved-2010-19-10-of-reported-industry-spending/
.88.
PMC. Standard medical research ROI ($20k-$100k/QALY). PMC: Cost-effectiveness Thresholds Used by Study Authors https://pmc.ncbi.nlm.nih.gov/articles/PMC10114019/ (1990)
Typical cost-effectiveness thresholds for medical interventions in rich countries range from $50,000 to $150,000 per QALY. The Institute for Clinical and Economic Review (ICER) uses a $100,000-$150,000/QALY threshold for value-based pricing. Between 1990-2021, authors increasingly cited $100,000 (47% by 2020-21) or $150,000 (24% by 2020-21) per QALY as benchmarks for cost-effectiveness. Additional sources: https://pmc.ncbi.nlm.nih.gov/articles/PMC10114019/ | https://icer.org/our-approach/methods-process/cost-effectiveness-the-qaly-and-the-evlyg/
.89.
Xia et al., Nature Food. Nuclear winter famine. Xia et al. https://www.nature.com/articles/s43016-022-00573-0 (2022)
We estimate that a nuclear war between the United States and Russia would produce 150 Tg of soot and lead to 5 billion people dying at the end of year 2. Additional sources: https://www.nature.com/articles/s43016-022-00573-0
.90.
Manhattan Institute. RECOVERY trial 82× cost reduction. Manhattan Institute: Slow Costly Trials https://manhattan.institute/article/slow-costly-clinical-trials-drag-down-biomedical-breakthroughs
RECOVERY trial: $500 per patient ($20M for 48,000 patients = $417/patient) Typical clinical trial: $41,000 median per-patient cost Cost reduction: 80-82× cheaper ($41,000 ÷ $500 ≈ 82×) Efficiency: $50 per patient per answer (10 therapeutics tested, 4 effective) Dexamethasone estimated to save >630,000 lives Additional sources: https://manhattan.institute/article/slow-costly-clinical-trials-drag-down-biomedical-breakthroughs | https://pmc.ncbi.nlm.nih.gov/articles/PMC9293394/
.91.
Trials. Patient willingness to participate in clinical trials. Trials: Patients’ Willingness Survey https://trialsjournal.biomedcentral.com/articles/10.1186/s13063-015-1105-3
Recent surveys: 49-51% willingness (2020-2022) - dramatic drop from 85% (2019) during COVID-19 pandemic Cancer patients when approached: 88% consented to trials (Royal Marsden Hospital) Study type variation: 44.8% willing for drug trial, 76.2% for diagnostic study Top motivation: "Learning more about my health/medical condition" (67.4%) Top barrier: "Worry about experiencing side effects" (52.6%) Additional sources: https://trialsjournal.biomedcentral.com/articles/10.1186/s13063-015-1105-3 | https://www.appliedclinicaltrialsonline.com/view/industry-forced-to-rethink-patient-participation-in-trials | https://pmc.ncbi.nlm.nih.gov/articles/PMC7183682/
.92.
The Commune. Pentagon audit failures ($2.46T unaccounted). The Commune https://thecommunemag.com/the-pentagon-misplaced-2-46-trillion-an-in-depth-look-at-the-financial-audit-failures (2024)
In the most recent audit, the Department of Defense (DoD) could not account for approximately 60% of its \(4.1 trillion in assets, amounting to\)2.46 trillion unaccounted for. Alternative title: Pentagon unsupported accounting adjustments (\(6.5T, single year, US Army) In 2015, the Department of Defense's Inspector General reported that the Army could not adequately support\)6.5 trillion in year-end adjustments, indicating severe accounting discrepancies. Additional sources: https://thecommunemag.com/the-pentagon-misplaced-2-46-trillion-an-in-depth-look-at-the-financial-audit-failures | https://accmag.com/audit-pentagon-cannot-account-for-6-5-trillion-dollars-is-taxpayer-money/
.93.
Tufts CSDD. Cost of drug development.
Various estimates suggest $1.0 - $2.5 billion to bring a new drug from discovery through FDA approval, spread across 10 years. Tufts Center for the Study of Drug Development often cited for $1.0 - $2.6 billion/drug. Industry reports (IQVIA, Deloitte) also highlight $2+ billion figures.
94.
Value in Health. Average lifetime revenue per successful drug. Value in Health: Sales Revenues for New Therapeutic Agents https://www.sciencedirect.com/science/article/pii/S1098301524027542
Study of 361 FDA-approved drugs from 1995-2014 (median follow-up 13.2 years): Mean lifetime revenue: $15.2 billion per drug Median lifetime revenue: $6.7 billion per drug Revenue after 5 years: $3.2 billion (mean) Revenue after 10 years: $9.5 billion (mean) Revenue after 15 years: $19.2 billion (mean) Distribution highly skewed: top 25 drugs (7%) accounted for 38% of total revenue ($2.1T of $5.5T) Additional sources: https://www.sciencedirect.com/science/article/pii/S1098301524027542
.95.
Lichtenberg, F. R. How many life-years have new drugs saved? A three-way fixed-effects analysis of 66 diseases in 27 countries, 2000-2013. International Health 11, 403–416 (2019)
Using 3-way fixed-effects methodology (disease-country-year) across 66 diseases in 22 countries, this study estimates that drugs launched after 1981 saved 148.7 million life-years in 2013 alone. The regression coefficients for drug launches 0-11 years prior (beta=-0.031, SE=0.008) and 12+ years prior (beta=-0.057, SE=0.013) on years of life lost are highly significant (p<0.0001). Confidence interval for life-years saved: 79.4M-239.8M (95 percent CI) based on propagated standard errors from Table 2.
96.
Deloitte. Pharmaceutical r&d return on investment (ROI). Deloitte: Measuring Pharmaceutical Innovation 2025 https://www.deloitte.com/ch/en/Industries/life-sciences-health-care/research/measuring-return-from-pharmaceutical-innovation.html (2025)
Deloitte’s annual study of top 20 pharma companies by R&D spend (2010-2024): 2024 ROI: 5.9% (second year of growth after decade of decline) 2023 ROI: 4.3% (estimated from trend) 2022 ROI: 1.2% (historic low since study began, 13-year low) 2021 ROI: 6.8% (record high, inflated by COVID-19 vaccines/treatments) Long-term trend: Declining for over a decade before 2023 recovery Average R&D cost per asset: $2.3B (2022), $2.23B (2024) These returns (1.2-5.9% range) fall far below typical corporate ROI targets (15-20%) Additional sources: https://www.deloitte.com/ch/en/Industries/life-sciences-health-care/research/measuring-return-from-pharmaceutical-innovation.html | https://www.prnewswire.com/news-releases/deloittes-13th-annual-pharmaceutical-innovation-report-pharma-rd-return-on-investment-falls-in-post-pandemic-market-301738807.html | https://hitconsultant.net/2023/02/16/pharma-rd-roi-falls-to-lowest-level-in-13-years/
.97.
Nature Reviews Drug Discovery. Drug trial success rate from phase i to approval. Nature Reviews Drug Discovery: Clinical Success Rates https://www.nature.com/articles/nrd.2016.136 (2016)
Overall Phase I to approval: 10-12.8% (conventional wisdom 10%, studies show 12.8%) Recent decline: Average LOA now 6.7% for Phase I (2014-2023 data) Leading pharma companies: 14.3% average LOA (range 8-23%) Varies by therapeutic area: Oncology 3.4%, CNS/cardiovascular lowest at Phase III Phase-specific success: Phase I 47-54%, Phase II 28-34%, Phase III 55-70% Note: 12% figure accurate for historical average. Recent data shows decline to 6.7%, with Phase II as primary attrition point (28% success) Additional sources: https://www.nature.com/articles/nrd.2016.136 | https://pmc.ncbi.nlm.nih.gov/articles/PMC6409418/ | https://academic.oup.com/biostatistics/article/20/2/273/4817524
.98.
SofproMed. Phase 3 cost per trial range. SofproMed https://www.sofpromed.com/how-much-does-a-clinical-trial-cost
Phase 3 clinical trials cost between $20 million and $282 million per trial, with significant variation by therapeutic area and trial complexity. Additional sources: https://www.sofpromed.com/how-much-does-a-clinical-trial-cost | https://www.cbo.gov/publication/57126
.99.
Ramsberg, J. & Platt, R. Pragmatic trial cost per patient (median $97). Learning Health Systems https://pmc.ncbi.nlm.nih.gov/articles/PMC6508852/ (2018)
Meta-analysis of 108 embedded pragmatic clinical trials (2006-2016). The median cost per patient was $97 (IQR $19–$478), based on 2015 dollars. 25% of trials cost <$19/patient; 10 trials exceeded $1,000/patient. U.S. studies median $187 vs non-U.S. median $27. Additional sources: https://pmc.ncbi.nlm.nih.gov/articles/PMC6508852/
.100.
WHO. Polio vaccination ROI. WHO https://www.who.int/news-room/feature-stories/detail/sustaining-polio-investments-offers-a-high-return (2019)
For every dollar spent, the return on investment is nearly US$ 39." Total investment cost of US$ 7.5 billion generates projected economic and social benefits of US$ 289.2 billion from sustaining polio assets and integrating them into expanded immunization, surveillance and emergency response programmes across 8 priority countries (Afghanistan, Iraq, Libya, Pakistan, Somalia, Sudan, Syria, Yemen). Additional sources: https://www.who.int/news-room/feature-stories/detail/sustaining-polio-investments-offers-a-high-return
.101.
ICRC. International campaign to ban landmines (ICBL) - ottawa treaty (1997). ICRC https://www.icrc.org/en/doc/resources/documents/article/other/57jpjn.htm (1997)
ICBL: Founded 1992 by 6 NGOs (Handicap International, Human Rights Watch, Medico International, Mines Advisory Group, Physicians for Human Rights, Vietnam Veterans of America Foundation) Started with ONE staff member: Jody Williams as founding coordinator Grew to 1,000+ organizations in 60 countries by 1997 Ottawa Process: 14 months (October 1996 - December 1997) Convention signed by 122 states on December 3, 1997; entered into force March 1, 1999 Achievement: Nobel Peace Prize 1997 (shared by ICBL and Jody Williams) Government funding context: Canada established $100M CAD Canadian Landmine Fund over 10 years (1997); International donors provided $169M in 1997 for mine action (up from $100M in 1996) Additional sources: https://www.icrc.org/en/doc/resources/documents/article/other/57jpjn.htm | https://en.wikipedia.org/wiki/International_Campaign_to_Ban_Landmines | https://www.nobelprize.org/prizes/peace/1997/summary/ | https://un.org/press/en/1999/19990520.MINES.BRF.html | https://www.the-monitor.org/en-gb/reports/2003/landmine-monitor-2003/mine-action-funding.aspx
.102.
OpenSecrets. Revolving door: Former members of congress. (2024)
388 former members of Congress are registered as lobbyists. Nearly 5,400 former congressional staffers have left Capitol Hill to become federal lobbyists in the past 10 years. Additional sources: https://www.opensecrets.org/revolving-door
.103.
Kinch, M. S. & Griesenauer, R. H. Lost medicines: A longer view of the pharmaceutical industry with the potential to reinvigorate discovery. Drug Discovery Today 24, 875–880 (2019)
Research identified 1,600+ medicines available in 1962. The 1950s represented industry high-water mark with >30 new products in five of ten years; this rate would not be replicated until late 1990s. More than half (880) of these medicines were lost following implementation of Kefauver-Harris Amendment. The peak of 1962 would not be seen again until early 21st century. By 2016 number of organizations actively involved in R&D at level not seen since 1914.
104.
Baily, M. N. Pre-1962 drug development costs (baily 1972). Baily (1972) https://samizdathealth.org/wp-content/uploads/2020/12/hlthaff.1.2.6.pdf (1972)
Pre-1962: Average cost per new chemical entity (NCE) was $6.5 million (1980 dollars) Inflation-adjusted to 2024 dollars: $6.5M (1980) ≈ $22.5M (2024), using CPI multiplier of 3.46× Real cost increase (inflation-adjusted): $22.5M (pre-1962) → $2,600M (2024) = 116× increase Note: This represents the most comprehensive academic estimate of pre-1962 drug development costs based on empirical industry data Additional sources: https://samizdathealth.org/wp-content/uploads/2020/12/hlthaff.1.2.6.pdf
.105.
Think by Numbers. Pre-1962 physician-led clinical trials. Think by Numbers: How Many Lives Does FDA Save? https://thinkbynumbers.org/health/how-many-net-lives-does-the-fda-save/ (1966)
Pre-1962: Physicians could report real-world evidence directly 1962 Drug Amendments replaced "premarket notification" with "premarket approval", requiring extensive efficacy testing Impact: New regulatory clampdown reduced new treatment production by 70%; lifespan growth declined from 4 years/decade to 2 years/decade Drug Efficacy Study Implementation (DESI): NAS/NRC evaluated 3,400+ drugs approved 1938-1962 for safety only; reviewed >3,000 products, >16,000 therapeutic claims FDA has had authority to accept real-world evidence since 1962, clarified by 21st Century Cures Act (2016) Note: Specific "144,000 physicians" figure not verified in sources Additional sources: https://thinkbynumbers.org/health/how-many-net-lives-does-the-fda-save/ | https://www.fda.gov/drugs/enforcement-activities-fda/drug-efficacy-study-implementation-desi | http://www.nasonline.org/about-nas/history/archives/collections/des-1966-1969-1.html
.106.
GAO. 95% of diseases have 0 FDA-approved treatments. GAO https://www.gao.gov/products/gao-25-106774 (2025)
95% of diseases have no treatment Additional sources: https://www.gao.gov/products/gao-25-106774 | https://globalgenes.org/rare-disease-facts/
.107.
Oren Cass, Manhattan Institute. RECOVERY trial cost per patient. Oren Cass https://manhattan.institute/article/slow-costly-clinical-trials-drag-down-biomedical-breakthroughs (2023)
The RECOVERY trial, for example, cost only about $500 per patient... By contrast, the median per-patient cost of a pivotal trial for a new therapeutic is around $41,000. Additional sources: https://manhattan.institute/article/slow-costly-clinical-trials-drag-down-biomedical-breakthroughs
.108.
NHS England; Águas et al. RECOVERY trial global lives saved ( 1 million). NHS England: 1 Million Lives Saved https://www.england.nhs.uk/2021/03/covid-treatment-developed-in-the-nhs-saves-a-million-lives/ (2021)
Dexamethasone saved 1 million lives worldwide (NHS England estimate, March 2021, 9 months after discovery). UK alone: 22,000 lives saved. Methodology: Águas et al. Nature Communications 2021 estimated 650,000 lives (range: 240,000-1,400,000) for July-December 2020 alone, based on RECOVERY trial mortality reductions (36% for ventilated, 18% for oxygen-only patients) applied to global COVID hospitalizations. June 2020 announcement: Dexamethasone reduced deaths by up to 1/3 (ventilated patients), 1/5 (oxygen patients). Impact immediate: Adopted into standard care globally within hours of announcement. Additional sources: https://www.england.nhs.uk/2021/03/covid-treatment-developed-in-the-nhs-saves-a-million-lives/ | https://www.nature.com/articles/s41467-021-21134-2 | https://pharmaceutical-journal.com/article/news/steroid-has-saved-the-lives-of-one-million-covid-19-patients-worldwide-figures-show | https://www.recoverytrial.net/news/recovery-trial-celebrates-two-year-anniversary-of-life-saving-dexamethasone-result
.109.
National September 11 Memorial & Museum. September 11 attack facts. (2024)
2,977 people were killed in the September 11, 2001 attacks: 2,753 at the World Trade Center, 184 at the Pentagon, and 40 passengers and crew on United Flight 93 in Shanksville, Pennsylvania.
110.
World Bank. World bank singapore economic data. World Bank https://data.worldbank.org/country/singapore (2024)
Singapore GDP per capita (2023): $82,000 - among highest in the world Government spending: 15% of GDP (vs US 38%) Life expectancy: 84.1 years (vs US 77.5 years) Singapore demonstrates that low government spending can coexist with excellent outcomes Additional sources: https://data.worldbank.org/country/singapore
.111.
International Monetary Fund. IMF singapore government spending data. (2024)
Singapore government spending is approximately 15% of GDP This is 23 percentage points lower than the United States (38%) Despite lower spending, Singapore achieves excellent outcomes: - Life expectancy: 84.1 years (vs US 77.5) - Low crime, world-class infrastructure, AAA credit rating Additional sources: https://www.imf.org/en/Countries/SGP
.112.
World Health Organization. WHO life expectancy data by country. (2024)
Life expectancy at birth varies significantly among developed nations: Switzerland: 84.0 years (2023) Singapore: 84.1 years (2023) Japan: 84.3 years (2023) United States: 77.5 years (2023) - 6.5 years below Switzerland, Singapore Global average: 73 years Note: US spends more per capita on healthcare than any other nation, yet achieves lower life expectancy Additional sources: https://www.who.int/data/gho/data/themes/mortality-and-global-health-estimates/ghe-life-expectancy-and-healthy-life-expectancy
.113.
CSIS. Smallpox eradication ROI. CSIS https://www.csis.org/analysis/smallpox-eradication-model-global-cooperation.
114.
PMC. Contribution of smoking reduction to life expectancy gains. PMC: Benefits Smoking Cessation Longevity https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1447499/ (2012)
Population-level: Up to 14% (9% men, 14% women) of total life expectancy gain since 1960 due to tobacco control efforts Individual cessation benefits: Quitting at age 35 adds 6.9-8.5 years (men), 6.1-7.7 years (women) vs continuing smokers By cessation age: Age 25-34 = 10 years gained; age 35-44 = 9 years; age 45-54 = 6 years; age 65 = 2.0 years (men), 3.7 years (women) Cessation before age 40: Reduces death risk by 90% Long-term cessation: 10+ years yields survival comparable to never smokers, averts 10 years of life lost Recent cessation: <3 years averts 5 years of life lost Additional sources: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1447499/ | https://www.cdc.gov/pcd/issues/2012/11_0295.htm | https://www.ajpmonline.org/article/S0749-3797(24)00217-4/fulltext | https://www.nejm.org/doi/full/10.1056/NEJMsa1211128
.115.
ICER. Value per QALY (standard economic value). ICER https://icer.org/wp-content/uploads/2024/02/Reference-Case-4.3.25.pdf (2024)
Standard economic value per QALY: $100,000–$150,000. This is the US and global standard willingness-to-pay threshold for interventions that add costs. Dominant interventions (those that save money while improving health) are favorable regardless of this threshold. Additional sources: https://icer.org/wp-content/uploads/2024/02/Reference-Case-4.3.25.pdf
.116.
GAO. Annual cost of u.s. Sugar subsidies. GAO: Sugar Program https://www.gao.gov/products/gao-24-106144
Consumer costs: $2.5-3.5 billion per year (GAO estimate) Net economic cost: $1 billion per year 2022: US consumers paid 2X world price for sugar Program costs $3-4 billion/year but no federal budget impact (costs passed directly to consumers via higher prices) Employment impact: 10,000-20,000 manufacturing jobs lost annually in sugar-reliant industries (confectionery, etc.) Multiple studies confirm: Sweetener Users Association ($2.9-3.5B), AEI ($2.4B consumer cost), Beghin & Elobeid ($2.9-3.5B consumer surplus) Additional sources: https://www.gao.gov/products/gao-24-106144 | https://www.heritage.org/agriculture/report/the-us-sugar-program-bad-consumers-bad-agriculture-and-bad-america | https://www.aei.org/articles/the-u-s-spends-4-billion-a-year-subsidizing-stalinist-style-domestic-sugar-production/
.117.
World Bank. Swiss military budget as percentage of GDP. World Bank: Military Expenditure https://data.worldbank.org/indicator/MS.MIL.XPND.GD.ZS?locations=CH
2023: 0.70272% of GDP (World Bank) 2024: CHF 5.95 billion official military spending When including militia system costs: 1% GDP (CHF 8.75B) Comparison: Near bottom in Europe; only Ireland, Malta, Moldova spend less (excluding microstates with no armies) Additional sources: https://data.worldbank.org/indicator/MS.MIL.XPND.GD.ZS?locations=CH | https://www.avenir-suisse.ch/en/blog-defence-spending-switzerland-is-in-better-shape-than-it-seems/ | https://tradingeconomics.com/switzerland/military-expenditure-percent-of-gdp-wb-data.html
.118.
World Bank. Switzerland vs. US GDP per capita comparison. World Bank: Switzerland GDP Per Capita https://data.worldbank.org/indicator/NY.GDP.PCAP.CD?locations=CH
2024 GDP per capita (PPP-adjusted): Switzerland $93,819 vs United States $75,492 Switzerland’s GDP per capita 24% higher than US when adjusted for purchasing power parity Nominal 2024: Switzerland $103,670 vs US $85,810 Additional sources: https://data.worldbank.org/indicator/NY.GDP.PCAP.CD?locations=CH | https://tradingeconomics.com/switzerland/gdp-per-capita-ppp | https://www.theglobaleconomy.com/USA/gdp_per_capita_ppp/
.119.
OECD. OECD government spending as percentage of GDP. (2024)
OECD government spending data shows significant variation among developed nations: United States: 38.0% of GDP (2023) Switzerland: 35.0% of GDP - 3 percentage points lower than US Singapore: 15.0% of GDP - 23 percentage points lower than US (per IMF data) OECD average: approximately 40% of GDP Additional sources: https://data.oecd.org/gga/general-government-spending.htm
.120.
OECD. OECD median household income comparison. (2024)
Median household disposable income varies significantly across OECD nations: United States: $77,500 (2023) Switzerland: $55,000 PPP-adjusted (lower nominal but comparable purchasing power) Singapore: $75,000 PPP-adjusted Additional sources: https://data.oecd.org/hha/household-disposable-income.htm
.121.
Wikipedia. Thalidomide scandal: Worldwide cases and mortality. Wikipedia https://en.wikipedia.org/wiki/Thalidomide_scandal
The total number of embryos affected by the use of thalidomide during pregnancy is estimated at 10,000, of whom about 40% died around the time of birth. More than 10,000 children in 46 countries were born with deformities such as phocomelia. Additional sources: https://en.wikipedia.org/wiki/Thalidomide_scandal
.122.
PLOS One. Health and quality of life of thalidomide survivors as they age. PLOS One https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0210222 (2019)
Study of thalidomide survivors documenting ongoing disability impacts, quality of life, and long-term health outcomes. Survivors (now in their 60s) continue to experience significant disability from limb deformities, organ damage, and other effects. Additional sources: https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0210222
.123.
US Census Bureau. Historical world population estimates. US Census Bureau https://www.census.gov/data/tables/time-series/demo/international-programs/historical-est-worldpop.html
US Census Bureau historical estimates of world population by country and region (1950-2050). US population in 1960: 180 million of 3 billion worldwide (6%). Additional sources: https://www.census.gov/data/tables/time-series/demo/international-programs/historical-est-worldpop.html
.124.
FDA Study via NCBI. Trial costs, FDA study. FDA Study via NCBI https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6248200/
Overall, the 138 clinical trials had an estimated median (IQR) cost of $19.0 million ($12.2 million-$33.1 million)... The clinical trials cost a median (IQR) of $41,117 ($31,802-$82,362) per patient. Additional sources: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6248200/
.125.
GBD 2019 Diseases and Injuries Collaborators. Global burden of disease study 2019: Disability weights. The Lancet 396, 1204–1222 (2020)
Disability weights for 235 health states used in Global Burden of Disease calculations. Weights range from 0 (perfect health) to 1 (death equivalent). Chronic conditions like diabetes (0.05-0.35), COPD (0.04-0.41), depression (0.15-0.66), and cardiovascular disease (0.04-0.57) show substantial variation by severity. Treatment typically reduces disability weights by 50-80 percent for manageable chronic conditions.
126.
WHO. Annual global economic burden of alzheimer’s and other dementias. WHO: Dementia Fact Sheet https://www.who.int/news-room/fact-sheets/detail/dementia (2019)
Global cost: $1.3 trillion (2019 WHO-commissioned study) 50% from informal caregivers (family/friends, 5 hrs/day) 74% of costs in high-income countries despite 61% of patients in LMICs $818B (2010) → $1T (2018) → $1.3T (2019) - rapid growth Note: Costs increased 35% from 2010-2015 alone. Informal care represents massive hidden economic burden Additional sources: https://www.who.int/news-room/fact-sheets/detail/dementia | https://alz-journals.onlinelibrary.wiley.com/doi/10.1002/alz.12901
.127.
JAMA Oncology. Annual global economic burden of cancer. JAMA Oncology: Global Cost 2020-2050 https://jamanetwork.com/journals/jamaoncology/fullarticle/2801798 (2020)
2020-2050 projection: $25.2 trillion total ($840B/year average) 2010 annual cost: $1.16 trillion (direct costs only) Recent estimate: $3 trillion/year (all costs included) Top 5 cancers: lung (15.4%), colon/rectum (10.9%), breast (7.7%), liver (6.5%), leukemia (6.3%) Note: China/US account for 45% of global burden; 75% of deaths in LMICs but only 50.0% of economic cost Additional sources: https://jamanetwork.com/journals/jamaoncology/fullarticle/2801798 | https://www.nature.com/articles/d41586-023-00634-9
.128.
CDC. U.s. Chronic disease healthcare spending. CDC https://www.cdc.gov/chronic-disease/data-research/facts-stats/index.html
Chronic diseases account for 90% of U.S. healthcare spending ( $3.7T/year). Additional sources: https://www.cdc.gov/chronic-disease/data-research/facts-stats/index.html
.129.
Diabetes Care. Annual global economic burden of diabetes. Diabetes Care: Global Economic Burden https://diabetesjournals.org/care/article/41/5/963/36522/Global-Economic-Burden-of-Diabetes-in-Adults
2015: $1.3 trillion (1.8% of global GDP) 2030 projections: $2.1T-2.5T depending on scenario IDF health expenditure: $760B (2019) → $845B (2045 projected) 2/3 direct medical costs ($857B), 1/3 indirect costs (lost productivity) Note: Costs growing rapidly; expected to exceed $2T by 2030 Additional sources: https://diabetesjournals.org/care/article/41/5/963/36522/Global-Economic-Burden-of-Diabetes-in-Adults | https://doi.org/10.1016/S2213-8587(17)30097-9
.130.
CBO. The 2024 Long-Term Budget Outlook. https://www.cbo.gov/publication/60039 (2024).
131.
World Bank, Bureau of Economic Analysis. US GDP 2024 ($28.78 trillion). World Bank https://data.worldbank.org/indicator/NY.GDP.MKTP.CD?locations=US (2024)
US GDP reached $28.78 trillion in 2024, representing approximately 26% of global GDP. Additional sources: https://data.worldbank.org/indicator/NY.GDP.MKTP.CD?locations=US | https://www.bea.gov/news/2024/gross-domestic-product-fourth-quarter-and-year-2024-advance-estimate
.132.
Environmental Working Group. US farm subsidy database and analysis. Environmental Working Group https://farm.ewg.org/ (2024)
US agricultural subsidies total approximately $30 billion annually, but create much larger economic distortions. Top 10% of farms receive 78% of subsidies, benefits concentrated in commodity crops (corn, soy, wheat, cotton), environmental damage from monoculture incentivized, and overall deadweight loss estimated at $50-120 billion annually. Additional sources: https://farm.ewg.org/ | https://www.ers.usda.gov/topics/farm-economy/farm-sector-income-finances/government-payments-the-safety-net/
.133.
Drug Policy Alliance. The drug war by the numbers. (2021)
Since 1971, the war on drugs has cost the United States an estimated $1 trillion in enforcement. The federal drug control budget was $41 billion in 2022. Mass incarceration costs the U.S. at least $182 billion every year, with over $450 billion spent to incarcerate individuals on drug charges in federal prisons.
134.
International Monetary Fund. IMF fossil fuel subsidies data: 2023 update. (2023)
Globally, fossil fuel subsidies were $7 trillion in 2022 or 7.1 percent of GDP. The United States subsidies totaled $649 billion. Underpricing for local air pollution costs and climate damages are the largest contributor, accounting for about 30 percent each.
135.
Papanicolas, Irene et al. Health care spending in the united states and other high-income countries. Papanicolas et al. https://jamanetwork.com/journals/jama/article-abstract/2674671 (2018)
The US spent approximately twice as much as other high-income countries on medical care (mean per capita: $9,892 vs $5,289), with similar utilization but much higher prices. Administrative costs accounted for 8% of US spending vs 1-3% in other countries. US spending on pharmaceuticals was $1,443 per capita vs $749 elsewhere. Despite spending more, US health outcomes are not better. Additional sources: https://jamanetwork.com/journals/jama/article-abstract/2674671
.136.
Hsieh, C.-T. & Moretti, E. Housing constraints and spatial misallocation. American Economic Journal: Macroeconomics https://www.aeaweb.org/articles?id=10.1257/mac.20170388 (2019)
We quantify the amount of spatial misallocation of labor across US cities and its aggregate costs. Tight land-use restrictions in high-productivity cities like New York, San Francisco, and Boston lowered aggregate US growth by 36% from 1964 to 2009. Local constraints on housing supply have had enormous effects on the national economy. Additional sources: https://www.aeaweb.org/articles?id=10.1257/mac.20170388
.137.
Yale Budget Lab. The fiscal, economic, and distributional effects of all u.s. tariffs. (2025)
Accounting for all the 2025 US tariffs and retaliation implemented to date, the level of real GDP is persistently -0.6% smaller in the long run, the equivalent of $160 billion 2024$ annually.
138.
Tax Foundation. Tax compliance costs the US economy $546 billion annually. https://taxfoundation.org/data/all/federal/irs-tax-compliance-costs/ (2024)
Americans will spend over 7.9 billion hours complying with IRS tax filing and reporting requirements in 2024. This costs the economy roughly $413 billion in lost productivity. In addition, the IRS estimates that Americans spend roughly $133 billion annually in out-of-pocket costs, bringing the total compliance costs to $546 billion, or nearly 2 percent of GDP.
139.
Cook, C., Cole, G., Asaria, P., Jabbour, R. & Francis, D. P. Annual global economic burden of heart disease. International Journal of Cardiology https://www.internationaljournalofcardiology.com/article/S0167-5273(13)02238-9/abstract (2014)
Heart failure alone: $108 billion/year (2012 global analysis, 197 countries) US CVD: $555B (2016) → projected $1.8T by 2050 LMICs total CVD loss: $3.7T cumulative (2011-2015, 5-year period) CVD is costliest disease category in most developed nations Note: No single $2.1T global figure found; estimates vary widely by scope and year Additional sources: https://www.ahajournals.org/doi/10.1161/CIR.0000000000001258
.140.
Source: US Life Expectancy FDA Budget 1543-2019 CSV. US life expectancy growth 1880-1960: 3.82 years per decade. (2019)
Pre-1962: 3.82 years/decade Post-1962: 1.54 years/decade Reduction: 60% decline in life expectancy growth rate Additional sources: https://ourworldindata.org/life-expectancy | https://www.mortality.org/ | https://www.cdc.gov/nchs/nvss/mortality_tables.htm
.141.
Source: US Life Expectancy FDA Budget 1543-2019 CSV. Post-1962 slowdown in life expectancy gains. (2019)
Pre-1962 (1880-1960): 3.82 years/decade Post-1962 (1962-2019): 1.54 years/decade Reduction: 60% decline Temporal correlation: Slowdown occurred immediately after 1962 Kefauver-Harris Amendment Additional sources: https://ourworldindata.org/life-expectancy | https://www.mortality.org/ | https://www.cdc.gov/nchs/nvss/mortality_tables.htm
.142.
Centers for Disease Control and Prevention. US life expectancy 2023. (2024)
US life expectancy at birth was 77.5 years in 2023 Male life expectancy: 74.8 years Female life expectancy: 80.2 years This is 6-7 years lower than peer developed nations despite higher healthcare spending Additional sources: https://www.cdc.gov/nchs/fastats/life-expectancy.htm
.143.
US Census Bureau. US median household income 2023. (2024)
US median household income was $77,500 in 2023 Real median household income declined 0.8% from 2022 Gini index: 0.467 (income inequality measure) Additional sources: https://www.census.gov/library/publications/2024/demo/p60-282.html
.144.
Manuel, D. U.s. Defense spending history: 100 years of military budgets. DaveManuel.com https://www.davemanuel.com/us-defense-spending-history-military-budget-data.php (2025)
US military spending in constant 2024 dollars: 1939 $29B (pre-WW2 baseline), 1940 $37B, 1944 $1,383B, 1945 $1,420B (peak), 1946 $674B, 1947 $176B, 1948 $117B, 2024 $886B. The post-WW2 demobilization cut spending 88% in two years (1945-1947). Current peacetime spending ($886B) is 30x the pre-WW2 baseline and 62% of peak WW2 spending, in inflation-adjusted dollars.
145.
Statista. US military budget as percentage of GDP. Statista https://www.statista.com/statistics/262742/countries-with-the-highest-military-spending/ (2024)
U.S. military spending amounted to 3.5% of GDP in 2024. In 2024, the U.S. spent nearly $1 trillion on its military budget, equal to 3.4% of GDP. Additional sources: https://www.statista.com/statistics/262742/countries-with-the-highest-military-spending/ | https://www.sipri.org/sites/default/files/2025-04/2504_fs_milex_2024.pdf
.146.
US Census Bureau. Number of registered or eligible voters in the u.s. US Census Bureau https://www.census.gov/newsroom/press-releases/2025/2024-presidential-election-voting-registration-tables.html (2024)
73.6% (or 174 million people) of the citizen voting-age population was registered to vote in 2024 (Census Bureau). More than 211 million citizens were active registered voters (86.6% of citizen voting age population) according to the Election Assistance Commission. Additional sources: https://www.census.gov/newsroom/press-releases/2025/2024-presidential-election-voting-registration-tables.html | https://www.eac.gov/news/2025/06/30/us-election-assistance-commission-releases-2024-election-administration-and-voting
.147.
U.S. Senate. Treaties. U.S. Senate https://www.senate.gov/about/powers-procedures/treaties.htm
The Constitution provides that the president ’shall have Power, by and with the Advice and Consent of the Senate, to make Treaties, provided two-thirds of the Senators present concur’ (Article II, section 2). Treaties are formal agreements with foreign nations that require two-thirds Senate approval. 67 senators (two-thirds of 100) must vote to ratify a treaty for it to take effect. Additional sources: https://www.senate.gov/about/powers-procedures/treaties.htm
.148.
Federal Election Commission. Statistical summary of 24-month campaign activity of the 2023-2024 election cycle. (2023)
Presidential candidates raised $2 billion; House and Senate candidates raised $3.8 billion and spent $3.7 billion; PACs raised $15.7 billion and spent $15.5 billion. Total federal campaign spending approximately $20 billion. Additional sources: https://www.fec.gov/updates/statistical-summary-of-24-month-campaign-activity-of-the-2023-2024-election-cycle/
.149.
OpenSecrets. Federal lobbying hit record $4.4 billion in 2024. (2024)
Total federal lobbying reached record $4.4 billion in 2024. The $150 million increase in lobbying continues an upward trend that began in 2016. Additional sources: https://www.opensecrets.org/news/2025/02/federal-lobbying-set-new-record-in-2024/
.150.
Columbia/NBER. Odds of a single vote being decisive in a u.s. Presidential election. Columbia/NBER: What Is the Probability Your Vote Will Make a Difference? https://sites.stat.columbia.edu/gelman/research/published/probdecisive2.pdf (2012)
National average: 1 in 60 million chance (2008 election analysis by Gelman, Silver, Edlin) Swing states (NM, VA, NH, CO): 1 in 10 million chance Non-competitive states: 34 states >1 in 100 million odds; 20 states >1 in 1 billion Washington DC: 1 in 490 billion odds Methodology: Probability state is necessary for electoral college win × probability state vote is tied Additional sources: https://sites.stat.columbia.edu/gelman/research/published/probdecisive2.pdf | https://onlinelibrary.wiley.com/doi/abs/10.1111/j.1465-7295.2010.00272.x
.151.
Hutchinson and Kirk. Valley of death in drug development. (2011)
The overall failure rate of drugs that passed into Phase 1 trials to final approval is 90%. This lack of translation from promising preclinical findings to success in human trials is known as the "valley of death." Estimated 30-50% of promising compounds never proceed to Phase 2/3 trials primarily due to funding barriers rather than scientific failure. The late-stage attrition rate for oncology drugs is as high as 70% in Phase II and 59% in Phase III trials.
152.
DOT. DOT value of statistical life ($13.6M). DOT: VSL Guidance 2024 https://www.transportation.gov/office-policy/transportation-policy/revised-departmental-guidance-on-valuation-of-a-statistical-life-in-economic-analysis (2024)
Current VSL (2024): $13.7 million (updated from $13.6M) Used in cost-benefit analyses for transportation regulations and infrastructure Methodology updated in 2013 guidance, adjusted annually for inflation and real income VSL represents aggregate willingness to pay for safety improvements that reduce fatalities by one Note: DOT has published VSL guidance periodically since 1993. Current $13.7M reflects 2024 inflation/income adjustments Additional sources: https://www.transportation.gov/office-policy/transportation-policy/revised-departmental-guidance-on-valuation-of-a-statistical-life-in-economic-analysis | https://www.transportation.gov/regulations/economic-values-used-in-analysis
.153.
PLOS ONE. Cost per DALY for vitamin a supplementation. PLOS ONE: Cost-effectiveness of "Golden Mustard" for Treating Vitamin A Deficiency in India (2010) https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0012046 (2010)
India: $23-$50 per DALY averted (least costly intervention, $1,000-$6,100 per death averted) Sub-Saharan Africa (2022): $220-$860 per DALY (Burkina Faso: $220, Kenya: $550, Nigeria: $860) WHO estimates for Africa: $40 per DALY for fortification, $255 for supplementation Uganda fortification: $18-$82 per DALY (oil: $18, sugar: $82) Note: Wide variation reflects differences in baseline VAD prevalence, coverage levels, and whether intervention is supplementation or fortification Additional sources: https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0012046 | https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0266495
.154.
Correlates of War Project. National material capabilities (NMC) dataset. (2017).
155.
UN News. Clean water & sanitation (LMICs) ROI. UN News https://news.un.org/en/story/2014/11/484032 (2014).
156.
PMC. Cost-effectiveness threshold ($50,000/QALY). PMC https://pmc.ncbi.nlm.nih.gov/articles/PMC5193154/
The $50,000/QALY threshold is widely used in US health economics literature, originating from dialysis cost benchmarks in the 1980s. In US cost-utility analyses, 77.5% of authors use either $50,000 or $100,000 per QALY as reference points. Most successful health programs cost $3,000-10,000 per QALY. WHO-CHOICE uses GDP per capita multiples (1× GDP/capita = "very cost-effective", 3× GDP/capita = "cost-effective"), which for the US ( $70,000 GDP/capita) translates to $70,000-$210,000/QALY thresholds. Additional sources: https://pmc.ncbi.nlm.nih.gov/articles/PMC5193154/ | https://pmc.ncbi.nlm.nih.gov/articles/PMC9278384/
.157.
Integrated Benefits Institute. Chronic illness workforce productivity loss. Integrated Benefits Institute 2024 https://www.ibiweb.org/resources/chronic-conditions-in-the-us-workforce-prevalence-trends-and-productivity-impacts (2024)
78.4% of U.S. employees have at least one chronic condition (7% increase since 2021) 58% of employees report physical chronic health conditions 28% of all employees experience productivity loss due to chronic conditions Average productivity loss: $4,798 per employee per year Employees with 3+ chronic conditions miss 7.8 days annually vs 2.2 days for those without Note: 28% productivity loss translates to roughly 11 hours per week (28% of 40-hour workweek) Additional sources: https://www.ibiweb.org/resources/chronic-conditions-in-the-us-workforce-prevalence-trends-and-productivity-impacts | https://www.onemedical.com/mediacenter/study-finds-more-than-half-of-employees-are-living-with-chronic-conditions-including-1-in-3-gen-z-and-millennial-employees/ | https://debeaumont.org/news/2025/poll-the-toll-of-chronic-health-conditions-on-employees-and-workplaces/
.158.
Sinn, M. P. The 1% Treaty. https://manual.warondisease.org/knowledge/solution/1-percent-treaty.html (2025) doi:10.5281/zenodo.20076511
Your governments possess nuclear weapons sufficient to end civilization 122 times but have not cured Alzheimer’s once. This treaty asks them to be 1% more rational.
159.
Sinn, M. P. The 1% Treaty: Harnessing Greed to Eradicate Disease. https://manual.warondisease.org/knowledge/economics/1-pct-treaty-impact.html (2025) doi:10.5281/zenodo.18161560
6.65 thousand diseases have zero FDA-approved treatments; at current trial capacity, exploring them takes 443 years. Redirecting 1% of military spending scales capacity 12.3x, cutting the timeline to 36 years and preventing 10.7 billion deaths. At $0.00177/DALY, 50.3kx more cost-effective than the best existing interventions. Incentive Alignment Bonds make adoption politically viable.
160.
Sinn, M. P. Wishocracy: Solving the Democratic Principal-Agent Problem Through Pairwise Preference Aggregation. https://manual.warondisease.org/knowledge/appendix/wishocracy-paper.html (2025) doi:10.5281/zenodo.18205881
Representative democracy suffers from an inescapable principal-agent problem where elected officials’ incentives diverge from citizen welfare. Wishocracy introduces RAPPA (Randomized Aggregated Pairwise Preference Allocation), which aggregates citizen preferences through cognitively tractable pairwise comparisons and creates accountability via Citizen Alignment Scores that channel electoral resources toward politicians who actually represent what citizens want.
161.
Sinn, M. P. Incentive Alignment Bonds: Making Public Goods Financially and Politically Profitable. https://manual.warondisease.org/knowledge/appendix/incentive-alignment-bonds-paper.html (2025) doi:10.5281/zenodo.18203221
Government spending is optimized for lobbying intensity, not net societal value. Programs with 100:1 benefit-cost ratios get billions while programs with negative returns get hundreds of billions. Incentive Alignment Bonds flip this by creating a capital pool that rewards politicians (via campaign support and post-office opportunities) for funding high-NSV programs over low-NSV alternatives. The result: public good becomes private profit for both investors and elected officials.