Editing
Epidemiology, Disease Dynamics, and Population Health
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
<div style="background-color: #4B0082; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> {{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. </div> __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. * '''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. </div> <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'''. '''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. </div> <div style="background-color: #8B0000; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Applying</span> == <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> </div> <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. * '''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> <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? # 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? </div> <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 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. [[Category:Science]][[Category:Health]][[Category:Mathematics]][[Category:Policy]][[Category:History]] </div>
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Template used on this page:
Template:BloomIntro
(
edit
)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information