social propagation

comparing free-for-all versus policy-based social networks to measure political manipulation reduction
based on contagion, reproduction numbers, and the epidemic threshold applied to viral political manipulation

Mean-field propagation model

This simulator uses a mean-field (aggregated) branching process to model viral content propagation across a large social network. Rather than tracking individual accounts, it carries aggregate state for active shares, cumulative reach, and manipulation exposure, evolving them in discrete one-minute steps. Growth follows active shares times the effective reproduction number times the susceptible fraction, plus seed ingress. The baseline scenario is unrestricted propagation; the policy scenario applies friction mechanisms designed to suppress coordination attacks and shrink the political manipulation surface.

Reproduction number and threshold

The basic reproduction number is the product of fan-out, reshare probability, and amplification, R0 = avgDegree times shareProb times amplification. Policy levers act as multipliers that pull it down to an effective R_eff. The epidemic threshold theorem decides the outcome: a cascade is supercritical (self-sustaining, growing) when R_eff is above 1 and subcritical (fading) when it is at or below 1. Above threshold a finite fraction of the audience is eventually reached, the final-size fraction one minus one over R_eff.

Policy mechanics

Seven levers modulate the dynamics. A 10-hour cooldown restricts accounts to about 2.4 posts per day; a 10-hour coolup delays visibility and damps ignition; a 1-hour daily window further constrains election-period posting; forward caps halve effective fan-out; question-gating and prebunking lower both reshare probability and conversion; identity tiers impose stricter friction on new or low-trust accounts; per-thread slow mode applies temporal smoothing. Each is encoded as an independent multiplier on rate, visibility, fan-out, or conversion, and they compose to reduce R_eff, delay cascades, and diminish manipulation impact.

Political manipulation impact

The PMI index accumulates, at each step, new exposures times the effective per-exposure conversion probability. Conversion decays with content age through an attention half-life, so delayed content lands with diminished potency, and question-gating applies an extra skepticism reduction. The model reports absolute PMI for both scenarios and the percentage reduction under policy, capturing not just lower reach but the qualitative degradation of manipulation potency due to delay and friction.

What it is not

The mean-field approximation trades agent-level fidelity for tractability. It assumes well-mixed contact, simple contagion, static multiplier policies, and a proxy conversion count, none of which hold exactly in real graphs with hubs, complex contagion, adaptive adversaries, and heterogeneous persuasion. Parameters are tuned for pedagogical visibility of policy effects, not quantitative forecasting. Results illustrate comparative trends and mechanism interactions rather than precise predictions.

Implementation

claude opus 4.8October 2025·mean-field social-propagation sandbox comparing a free-for-all network against a policy-friction network. encodes the branching reproduction number R0 = fan-out × reshare × amplification, the epidemic threshold R_eff = 1, attention-decayed conversion, and a political-manipulation-impact accumulator, with calibration against closed-form epidemic and cascade results.

Calibration

Assumptions

Model changelog

v1.0October 2025
  • mean-field propagation model: active shares grow by active × R_eff × (susceptible fraction) plus seed ingress, with logistic saturation against a finite audience.
  • reproduction numbers: basic R0 = avgDegree × shareProb × amplification, effective R_eff after forward caps, question gating, and coolup ignition damping.
  • epidemic threshold: cascades are supercritical iff R_eff > 1; the final-size fraction 1 − 1/R_eff bounds eventual reach.
  • manipulation model: per-exposure conversion decayed by an attention half-life and reduced by gating skepticism, accumulated into a political manipulation impact (PMI) index with a policy-versus-baseline reduction figure.
  • seven policy levers (cooldown, coolup, election window, forward caps, question gating, identity tiers, slow mode) encoded as multipliers on rate, visibility, fan-out, and conversion.
  • calibration extracts the deterministic core (R0, threshold, final size, freshness decay, linear-threshold activation, cooldown clamp) and checks it against closed-form epidemic and cascade targets.