Epidemiology, Disease Dynamics, and Population Health: Difference between revisions
BloomWiki: Epidemiology, Disease Dynamics, and Population Health |
BloomWiki: Epidemiology, Disease Dynamics, and Population Health |
||
| Line 1: | Line 1: | ||
<div style="background-color: #4B0082; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> | |||
{{BloomIntro}} | {{BloomIntro}} | ||
Epidemiology, Disease Modeling, and the Mathematics of Contagion is the study of the distribution and determinants of health and disease in populations — and the quantitative models that allow us to forecast, understand, and intervene in epidemics. From John Snow's 1854 cholera map to the SIR model and COVID-19 forecasting, epidemiology is the science that translates individual health events into population-level insight. | Epidemiology, Disease Modeling, and the Mathematics of Contagion is the study of the distribution and determinants of health and disease in populations — and the quantitative models that allow us to forecast, understand, and intervene in epidemics. From John Snow's 1854 cholera map to the SIR model and COVID-19 forecasting, epidemiology is the science that translates individual health events into population-level insight. | ||
</div> | |||
== Remembering == | __TOC__ | ||
<div style="background-color: #000080; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> | |||
== <span style="color: #FFFFFF;">Remembering</span> == | |||
* '''Epidemiology''' — The study of the distribution (who, where, when) and determinants (why, how) of health and disease in populations. | * '''Epidemiology''' — The study of the distribution (who, where, when) and determinants (why, how) of health and disease in populations. | ||
* '''Incidence vs. Prevalence''' — Incidence: new cases per time period. Prevalence: total existing cases at a point in time — conceptually and practically distinct. | * '''Incidence vs. Prevalence''' — Incidence: new cases per time period. Prevalence: total existing cases at a point in time — conceptually and practically distinct. | ||
| Line 13: | Line 18: | ||
* '''The Bradford Hill Criteria''' — Nine criteria for assessing whether an association is likely causal: strength, consistency, specificity, temporality, biological gradient, plausibility, coherence, experiment, analogy. | * '''The Bradford Hill Criteria''' — Nine criteria for assessing whether an association is likely causal: strength, consistency, specificity, temporality, biological gradient, plausibility, coherence, experiment, analogy. | ||
* '''Syndromic Surveillance''' — Using non-traditional data sources (emergency room visits, search queries, pharmacy sales) for early epidemic detection. | * '''Syndromic Surveillance''' — Using non-traditional data sources (emergency room visits, search queries, pharmacy sales) for early epidemic detection. | ||
</div> | |||
== Understanding == | <div style="background-color: #006400; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> | ||
== <span style="color: #FFFFFF;">Understanding</span> == | |||
Epidemiology is understood through '''population''' and '''causation'''. | Epidemiology is understood through '''population''' and '''causation'''. | ||
| Line 20: | Line 27: | ||
'''Confounding and Causality''': Epidemiology's central challenge is distinguishing association from causation in observational data. The classic example: countries with higher chocolate consumption have more Nobel Prize winners per capita. This is confounded by wealth — richer countries eat more chocolate and also invest more in science. Bradford Hill's criteria were developed precisely to discipline this inference. The randomized controlled trial is the gold standard for establishing causality, but most exposure-disease questions cannot be randomized ethically. | '''Confounding and Causality''': Epidemiology's central challenge is distinguishing association from causation in observational data. The classic example: countries with higher chocolate consumption have more Nobel Prize winners per capita. This is confounded by wealth — richer countries eat more chocolate and also invest more in science. Bradford Hill's criteria were developed precisely to discipline this inference. The randomized controlled trial is the gold standard for establishing causality, but most exposure-disease questions cannot be randomized ethically. | ||
</div> | |||
== Applying == | <div style="background-color: #8B0000; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> | ||
== <span style="color: #FFFFFF;">Applying</span> == | |||
<syntaxhighlight lang="python"> | <syntaxhighlight lang="python"> | ||
def sir_epidemic_model(S, I, R, beta, gamma, days): | def sir_epidemic_model(S, I, R, beta, gamma, days): | ||
| Line 40: | Line 49: | ||
print(f"Day {day:3d}: S={s:7,} I={i:7,} R={r:7,}") | print(f"Day {day:3d}: S={s:7,} I={i:7,} R={r:7,}") | ||
</syntaxhighlight> | </syntaxhighlight> | ||
</div> | |||
== Analyzing == | <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> | ||
== <span style="color: #FFFFFF;">Analyzing</span> == | |||
* '''The Incidence-Prevalence Paradox''': A breakthrough medical treatment that keeps a fatal disease manageable (like ART for HIV) will paradoxically cause the *prevalence* of the disease to skyrocket, even as the death rate plummets. | * '''The Incidence-Prevalence Paradox''': A breakthrough medical treatment that keeps a fatal disease manageable (like ART for HIV) will paradoxically cause the *prevalence* of the disease to skyrocket, even as the death rate plummets. | ||
* '''Confounding Variables''': Epidemiology constantly battles the "correlation is not causation" problem. Observing that coffee drinkers have higher lung cancer rates is a classic confounding error, as coffee drinkers are statistically much more likely to smoke cigarettes. | * '''Confounding Variables''': Epidemiology constantly battles the "correlation is not causation" problem. Observing that coffee drinkers have higher lung cancer rates is a classic confounding error, as coffee drinkers are statistically much more likely to smoke cigarettes. | ||
</div> | |||
== Evaluating == | <div style="background-color: #483D8B; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> | ||
== <span style="color: #FFFFFF;">Evaluating</span> == | |||
# How should epidemic models be communicated to the public — given their inherent conditionality and uncertainty? | # How should epidemic models be communicated to the public — given their inherent conditionality and uncertainty? | ||
# Is herd immunity through natural infection ever an ethical policy choice — or does vaccine-mediated herd immunity always dominate? | # Is herd immunity through natural infection ever an ethical policy choice — or does vaccine-mediated herd immunity always dominate? | ||
# How do we address the systematic underrepresentation of Global South populations in epidemiological research? | # How do we address the systematic underrepresentation of Global South populations in epidemiological research? | ||
</div> | |||
== Creating == | <div style="background-color: #2F4F4F; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> | ||
== <span style="color: #FFFFFF;">Creating</span> == | |||
# A public-facing epidemic dashboard with uncertainty ranges and scenario comparisons — replacing single-line projections. | # A public-facing epidemic dashboard with uncertainty ranges and scenario comparisons — replacing single-line projections. | ||
# A global syndromic surveillance network integrating non-traditional data streams for early outbreak detection. | # A global syndromic surveillance network integrating non-traditional data streams for early outbreak detection. | ||
| Line 56: | Line 71: | ||
[[Category:Science]][[Category:Health]][[Category:Mathematics]][[Category:Policy]][[Category:History]] | [[Category:Science]][[Category:Health]][[Category:Mathematics]][[Category:Policy]][[Category:History]] | ||
</div> | |||
Latest revision as of 01:50, 25 April 2026
How to read this page: This article maps the topic from beginner to expert across six levels � Remembering, Understanding, Applying, Analyzing, Evaluating, and Creating. Scan the headings to see the full scope, then read from wherever your knowledge starts to feel uncertain. Learn more about how BloomWiki works ?
Epidemiology, Disease Modeling, and the Mathematics of Contagion is the study of the distribution and determinants of health and disease in populations — and the quantitative models that allow us to forecast, understand, and intervene in epidemics. From John Snow's 1854 cholera map to the SIR model and COVID-19 forecasting, epidemiology is the science that translates individual health events into population-level insight.
Remembering[edit]
- Epidemiology — The study of the distribution (who, where, when) and determinants (why, how) of health and disease in populations.
- Incidence vs. Prevalence — Incidence: new cases per time period. Prevalence: total existing cases at a point in time — conceptually and practically distinct.
- The SIR Model — Susceptible-Infectious-Recovered: the foundational compartmental model of epidemic dynamics — describes how disease spreads through a population.
- R₀ (Basic Reproduction Number) — The average number of people infected by one case in a fully susceptible population — if R₀ > 1, epidemic grows; < 1, dies out.
- Herd Immunity Threshold — The fraction of a population that must be immune (through infection or vaccination) to prevent epidemic growth: 1 - 1/R₀.
- John Snow — Epidemiology's founding figure — mapped the 1854 Broad Street cholera outbreak in London, tracing it to a contaminated water pump before germ theory was established.
- The Case Fatality Rate (CFR) — Deaths / confirmed cases — inflated during epidemics when testing is limited; distinct from the infection fatality rate (IFR).
- Confounding — A variable that correlates with both exposure and outcome — the central challenge of observational epidemiology (e.g., smokers drink more coffee; coffee may appear to cause lung cancer).
- The Bradford Hill Criteria — Nine criteria for assessing whether an association is likely causal: strength, consistency, specificity, temporality, biological gradient, plausibility, coherence, experiment, analogy.
- Syndromic Surveillance — Using non-traditional data sources (emergency room visits, search queries, pharmacy sales) for early epidemic detection.
Understanding[edit]
Epidemiology is understood through population and causation.
Why R₀ Is Not Fixed: R₀ depends not just on pathogen biology but on social behavior, population density, and interventions. COVID-19's original Wuhan R₀ was ~2-3; Delta was ~6-8; Omicron ~15-18 — reflecting both viral evolution and the network structure of contacts. Masking, distancing, and ventilation reduce transmission probability per contact; lockdowns reduce contact frequency. This is why epidemic forecasting is inherently conditional — models project "what will happen IF behavior remains X," not deterministic predictions.
Confounding and Causality: Epidemiology's central challenge is distinguishing association from causation in observational data. The classic example: countries with higher chocolate consumption have more Nobel Prize winners per capita. This is confounded by wealth — richer countries eat more chocolate and also invest more in science. Bradford Hill's criteria were developed precisely to discipline this inference. The randomized controlled trial is the gold standard for establishing causality, but most exposure-disease questions cannot be randomized ethically.
Applying[edit]
<syntaxhighlight lang="python"> def sir_epidemic_model(S, I, R, beta, gamma, days):
N = S + I + R
results = [(0, S, I, R)]
for d in range(1, days + 1):
new_infected = beta * S * I / N
new_recovered = gamma * I
S = S - new_infected
I = I + new_infected - new_recovered
R = R + new_recovered
if d % 10 == 0:
results.append((d, round(S), round(I), round(R)))
return results
- COVID-like: R0=3 (beta=0.3, gamma=0.1), pop 100,000
for day, s, i, r in sir_epidemic_model(99900, 100, 0, 0.3, 0.1, 60):
print(f"Day {day:3d}: S={s:7,} I={i:7,} R={r:7,}")
</syntaxhighlight>
Analyzing[edit]
- The Incidence-Prevalence Paradox: A breakthrough medical treatment that keeps a fatal disease manageable (like ART for HIV) will paradoxically cause the *prevalence* of the disease to skyrocket, even as the death rate plummets.
- Confounding Variables: Epidemiology constantly battles the "correlation is not causation" problem. Observing that coffee drinkers have higher lung cancer rates is a classic confounding error, as coffee drinkers are statistically much more likely to smoke cigarettes.
Evaluating[edit]
- How should epidemic models be communicated to the public — given their inherent conditionality and uncertainty?
- Is herd immunity through natural infection ever an ethical policy choice — or does vaccine-mediated herd immunity always dominate?
- How do we address the systematic underrepresentation of Global South populations in epidemiological research?
Creating[edit]
- A public-facing epidemic dashboard with uncertainty ranges and scenario comparisons — replacing single-line projections.
- A global syndromic surveillance network integrating non-traditional data streams for early outbreak detection.
- An open-source SIR model toolkit for public health departments worldwide — enabling real-time local epidemic tracking.