Epidemiology: Difference between revisions

From BloomWiki
Jump to navigation Jump to search
BloomWiki: Epidemiology
 
BloomWiki: Epidemiology
Line 8: Line 8:
* '''Pandemic''' — An epidemic that has spread over several countries or continents, usually affecting a large number of people.
* '''Pandemic''' — An epidemic that has spread over several countries or continents, usually affecting a large number of people.
* '''Endemic''' — A disease that is constantly present in a specific population or region (e.g., Malaria in some tropical areas).
* '''Endemic''' — A disease that is constantly present in a specific population or region (e.g., Malaria in some tropical areas).
* '''Incidence''' — The number of *new* cases of a disease that develop in a population during a specific time period.
* '''Incidence''' — The number of ''new'' cases of a disease that develop in a population during a specific time period.
* '''Prevalence''' — The total number of *existing* cases (new and old) in a population at a specific time.
* '''Prevalence''' — The total number of ''existing'' cases (new and old) in a population at a specific time.
* '''Mortality Rate''' — The number of deaths in a given area or period from a particular cause.
* '''Mortality Rate''' — The number of deaths in a given area or period from a particular cause.
* '''Morbidity''' — The condition of being diseased; the rate of disease in a population.
* '''Morbidity''' — The condition of being diseased; the rate of disease in a population.
Line 34: Line 34:


'''3. Association vs. Causation''':
'''3. Association vs. Causation''':
Just because people who drink coffee have fewer heart attacks doesn't mean coffee *causes* heart health. It might be that coffee drinkers also exercise more. Epidemiologists use "Hill's Criteria" to determine if a link is actually a cause (e.g., Is the link strong? Does it happen in every study? Does it make biological sense?).
Just because people who drink coffee have fewer heart attacks doesn't mean coffee ''causes'' heart health. It might be that coffee drinkers also exercise more. Epidemiologists use "Hill's Criteria" to determine if a link is actually a cause (e.g., Is the link strong? Does it happen in every study? Does it make biological sense?).


'''Herd Immunity''': When a large enough portion of a population is immune (through vaccination or past infection), the disease can't find new hosts to jump to, protecting even those who aren't immune.
'''Herd Immunity''': When a large enough portion of a population is immune (through vaccination or past infection), the disease can't find new hosts to jump to, protecting even those who aren't immune.
Line 90: Line 90:


== Creating ==
== Creating ==
Future Frontiers: (1) '''Digital Epidemiology''': Using Google searches, social media trends, and wastewater data to find an outbreak *before* people even go to the doctor. (2) '''Precision Public Health''': Using genetics to identify exactly which people are most at risk during a pandemic. (3) '''One Health''': A movement to study human, animal, and environmental health together (since most new diseases come from animals). (4) '''AI Outbreak Prediction''': Training AI to simulate billions of "What If" scenarios for the next global pandemic.
Future Frontiers: (1) '''Digital Epidemiology''': Using Google searches, social media trends, and wastewater data to find an outbreak ''before'' people even go to the doctor. (2) '''Precision Public Health''': Using genetics to identify exactly which people are most at risk during a pandemic. (3) '''One Health''': A movement to study human, animal, and environmental health together (since most new diseases come from animals). (4) '''AI Outbreak Prediction''': Training AI to simulate billions of "What If" scenarios for the next global pandemic.


[[Category:Health Science]]
[[Category:Health Science]]
[[Category:Biology]]
[[Category:Biology]]
[[Category:Statistics]]
[[Category:Statistics]]

Revision as of 14:29, 23 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 is the study of how often diseases occur in different groups of people and why. It is the "Detective Work" of public health. While a doctor focuses on a single patient, an epidemiologist focuses on a whole Population. By tracking the "Who, What, Where, and When" of a health event—whether it's an outbreak of food poisoning, a global pandemic, or the link between smoking and cancer—epidemiologists identify risks and design interventions to prevent disease and save lives on a massive scale.

Remembering

  • Epidemiology — The study of the distribution and determinants of health-related states in specified populations.
  • Outbreak — A sudden increase in occurrences of a disease in a particular time and place.
  • Epidemic — A widespread occurrence of an infectious disease in a community at a particular time.
  • Pandemic — An epidemic that has spread over several countries or continents, usually affecting a large number of people.
  • Endemic — A disease that is constantly present in a specific population or region (e.g., Malaria in some tropical areas).
  • Incidence — The number of new cases of a disease that develop in a population during a specific time period.
  • Prevalence — The total number of existing cases (new and old) in a population at a specific time.
  • Mortality Rate — The number of deaths in a given area or period from a particular cause.
  • Morbidity — The condition of being diseased; the rate of disease in a population.
  • Risk Factor — Any attribute, characteristic, or exposure of an individual that increases the likelihood of developing a disease.
  • R0 (Basic Reproduction Number) — The average number of people that one infected person will pass the virus to in a susceptible population.
  • Vector — A living organism that transmits an infectious agent from an infected animal to a human (e.g., mosquitoes, ticks).
  • Zoonosis — An infectious disease that is transmitted from animals to humans (e.g., Rabies, COVID-19).
  • Case-Control Study — A study that compares people with a disease to people without it to find common risk factors.

Understanding

Epidemiology is understood through the Epidemiologic Triangle.

1. The Triangle: To have a disease outbreak, you need three things:

  • The Agent: The cause (e.g., a virus, bacteria, or chemical).
  • The Host: The person or animal that can get the disease.
  • The Environment: The surroundings that allow the agent and host to meet (e.g., crowded housing, dirty water, or climate).

If you break any one "leg" of the triangle, the disease stops spreading.

2. The R0 (R-Nought):

  • If $R0 < 1$: The disease will eventually die out.
  • If $R0 = 1$: The disease will stay stable (Endemic).
  • If $R0 > 1$: The disease will grow exponentially (Epidemic).

3. Association vs. Causation: Just because people who drink coffee have fewer heart attacks doesn't mean coffee causes heart health. It might be that coffee drinkers also exercise more. Epidemiologists use "Hill's Criteria" to determine if a link is actually a cause (e.g., Is the link strong? Does it happen in every study? Does it make biological sense?).

Herd Immunity: When a large enough portion of a population is immune (through vaccination or past infection), the disease can't find new hosts to jump to, protecting even those who aren't immune.

Applying

Modeling 'Infection Spread' (The SIR Model): <syntaxhighlight lang="python"> def estimate_new_cases(susceptible, infected, r0_value, recovery_rate):

   """
   Simplified SIR (Susceptible, Infected, Recovered) logic.
   """
   # New infections depend on how many people are 'left' to catch it
   prob_infection = (r0_value * recovery_rate) / susceptible if susceptible > 0 else 0
   new_infections = int(infected * susceptible * prob_infection)
   
   # People recovering
   new_recoveries = int(infected * recovery_rate)
   
   return {
       "New Infections": new_infections,
       "New Recoveries": new_recoveries,
       "Remaining Susceptible": susceptible - new_infections
   }
  1. Small town of 1000, 10 infected, R0 of 2.5

print(estimate_new_cases(1000, 10, 2.5, 0.1))

  1. This is how we 'Flatten the Curve'—by reducing R0 (masks,
  2. distance) to prevent hospitals from being overwhelmed.

</syntaxhighlight>

Iconic Investigations
John Snow (1854) → The "Father of Epidemiology"; he traced a cholera outbreak in London to a single water pump, proving it was waterborne, not "bad air."
The Framingham Heart Study → A decades-long study that first identified high blood pressure and cholesterol as risks for heart disease.
The Smallpox Eradication → A global effort that used "Ring Vaccination" (vaccinating everyone around a single case) to wipe a disease off the planet.
Ebola 2014 → Anthropologists and epidemiologists working together to adapt burial rituals to stop the spread of a deadly virus.

Analyzing

Incidence vs. Prevalence
Feature Incidence (The 'Flow') Prevalence (The 'Pool')
Measure New cases only All active cases
Use Case To find the 'Cause' (Why are people getting sick?) To plan 'Resources' (How many beds do we need?)
Formula New cases / Population at risk Total cases / Total population
Analogy Water flowing into a bathtub The total water in the bathtub

The Concept of "Confounding": This is the "Ghost in the Machine." A confounder is a hidden variable that is linked to both the risk and the disease. If you study "Lighter use" and "Lung cancer," you'll find a link—but the confounder is "Smoking." Analyzing and "Controlling" for these ghosts is the hardest part of epidemiology.

Evaluating

Evaluating an epidemiologic study: (1) Sample Size: Is the study large enough to find a rare link? (2) Selection Bias: Did the study only look at healthy people who could afford to join? (3) Recall Bias: If you ask a sick person what they ate 10 years ago, will they remember accurately? (4) Generalization: Does a study of middle-aged men in Norway apply to teenagers in Brazil?

Creating

Future Frontiers: (1) Digital Epidemiology: Using Google searches, social media trends, and wastewater data to find an outbreak before people even go to the doctor. (2) Precision Public Health: Using genetics to identify exactly which people are most at risk during a pandemic. (3) One Health: A movement to study human, animal, and environmental health together (since most new diseases come from animals). (4) AI Outbreak Prediction: Training AI to simulate billions of "What If" scenarios for the next global pandemic.