Social Vulnerability and Exposure
How risk depends on who is in harm’s way, how sensitive they are, and what capacity they have to respond
Before You Start
You should know
That hazards do not affect all people equally, even when they occur in the same place.
You will learn
How exposure, sensitivity, and adaptive capacity combine into social vulnerability, and why risk is a joint product of physical hazard and human geography.
Why this matters
Floods, smoke, heat, and storms become disasters unevenly. Geography helps explain why.
If this gets hard, focus on…
The three-part distinction: who is exposed, how badly they are affected if exposed, and what capacity they have to cope or recover.
Two neighborhoods can experience the same heatwave and still face very different outcomes. One may have tree cover, air conditioning, cars, flexible work, and nearby care. The other may have dense pavement, overcrowded housing, low savings, limited transit, and a higher share of elderly residents living alone. The atmospheric hazard is shared. The social vulnerability is not. This difference is one of the central insights of modern human geography: disasters are not just physical events. They are physical events filtered through unequal social space.
This chapter introduces that filter in a compact way. The goal is to give the book a clear vocabulary for moving from hazard maps to risk maps: exposure, sensitivity, and adaptive capacity. Once those ideas are in place, later hazard, health, and planning chapters can use them without having to reintroduce the framework from scratch.
1. The Question
Why do similar hazards produce very different human consequences?
Because risk is not just hazard.
At minimum, we need to distinguish:
- hazard: the potentially damaging event or condition
- exposure: who or what is located where the hazard occurs
- sensitivity: how strongly those exposed people or systems are affected
- adaptive capacity: what resources exist to avoid, withstand, or recover
That turns the question from “where is the floodplain?” into “who is on the floodplain, how fragile are they, and what options do they have?”
2. The Conceptual Model
Social Vulnerability Adds Human Geography To Physical Hazard
A hazard map is not yet a risk model. Risk emerges when physical exposure overlaps with social conditions that raise sensitivity or reduce the ability to respond.
Who And What Are In Harm’s Way?
Population, homes, roads, clinics, crops, and infrastructure may all lie inside the same hazard footprint, but not in equal density or value.
How Hard Does The Hazard Hit?
Age, health, housing quality, income instability, and baseline environmental stress all affect how damaging the same event becomes.
What Options Exist To Cope Or Recover?
Insurance, savings, social support, transport, cooling, emergency care, and public institutions can all lower realized harm even under the same exposure.
A compact risk expression
In words, a simple risk model is:
\text{Risk} \propto \text{Hazard} \times \text{Exposure} \times \text{Vulnerability}
where vulnerability is partly a function of sensitivity and partly the inverse of adaptive capacity.
This is not a complete physical law. It is a useful conceptual structure.
Exposure is not enough
Suppose two census tracts lie in the same smoke plume.
- Tract A has many elderly residents, lower incomes, and higher asthma prevalence.
- Tract B has younger residents, better housing filtration, and easier access to care.
Exposure may be similar. Risk is not.
Vulnerability is not the same as poverty
Income matters, but vulnerability is broader:
- age structure
- disability
- housing quality
- transit dependence
- language barriers
- care access
- social isolation
This is why vulnerability is usually multi-dimensional.
3. Worked Example by Hand
Suppose two neighborhoods face the same flood depth hazard score of 8 on a 0-10 scale.
We define:
- exposure score E
- sensitivity score S
- adaptive-capacity score C
And use a simple illustrative vulnerability expression:
V = \frac{S}{C}
Then define a relative risk index:
R = H \times E \times V
Neighborhood A
- Hazard H = 8
- Exposure E = 0.9
- Sensitivity S = 0.8
- Capacity C = 0.8
So:
V_A = \frac{0.8}{0.8} = 1.0
R_A = 8 \times 0.9 \times 1.0 = 7.2
Neighborhood B
- Hazard H = 8
- Exposure E = 0.9
- Sensitivity S = 0.9
- Capacity C = 0.4
So:
V_B = \frac{0.9}{0.4} = 2.25
R_B = 8 \times 0.9 \times 2.25 = 16.2
Interpretation
The hazard and exposure are the same, but lower adaptive capacity makes Neighborhood B much more at risk.
That is the point of the framework:
- hazard maps alone miss unequal consequence
- vulnerability metrics explain why response priorities should differ
4. Where The Framework Helps
This structure is especially useful for:
- heat vulnerability mapping
- smoke exposure planning
- flood evacuation and sheltering
- drought and water-security assessment
- infrastructure risk and service outages
It is also useful because it links naturally to the chapters just added:
- accessibility changes adaptive capacity
- care access changes health vulnerability
- diffusion changes how exposure spreads through populations
5. Computational Implementation
def vulnerability(sensitivity, capacity):
return sensitivity / capacity
def relative_risk(hazard, exposure, sensitivity, capacity):
return hazard * exposure * vulnerability(sensitivity, capacity)
A = relative_risk(hazard=8, exposure=0.9, sensitivity=0.8, capacity=0.8)
B = relative_risk(hazard=8, exposure=0.9, sensitivity=0.9, capacity=0.4)
print("Neighborhood A risk:", round(A, 2))
print("Neighborhood B risk:", round(B, 2))
print("Relative difference:", round(B / A, 2), "times")Real practice is more careful than this toy index, but the structure scales:
- overlay hazard fields with population and infrastructure exposure
- build sensitivity indicators from demographic or health variables
- build adaptive-capacity indicators from mobility, income, institutions, and care
6. What Could Go Wrong?
Treating composite indices as objective truth
Weights and variable choices always involve judgment. Composite maps are useful, but they are designed summaries, not pure facts.
Mixing unlike quantities carelessly
Population density, age share, and income can all matter, but they should be normalized and interpreted carefully before combining.
Forgetting that vulnerability changes over time
Transit service, housing, cooling access, and health capacity can all shift, so vulnerability is dynamic, not fixed.
Summary
- Risk is not just hazard; it also depends on exposure and vulnerability.
- Vulnerability is shaped by sensitivity and adaptive capacity.
- Similar physical events can produce very different outcomes across social space.
- Accessibility and care are part of vulnerability, not separate from it.
- Social vulnerability gives the book a framework for connecting hazards to inequality.