Migration Systems and Selective Mobility
How people move through opportunity networks, constraints, and chain migration
Before You Start
You should know
That migration responds to opportunity and distance, and that some places attract more people than others.
You will learn
How migration systems link origins and destinations, why mobility is selective rather than uniform, and how past migration changes future migration.
Why this matters
Population movement reshapes labour markets, housing demand, school systems, politics, and regional inequality.
If this gets hard, focus on…
The simple idea that people move along structured pathways, not across a blank map.
Migration is often described as if people simply choose the “best” place and go there. Real migration is more structured than that. Information about destinations is uneven. Housing costs, legal status, transport, family obligations, and social networks all shape who can move, where they can go, and how risky the move feels. As a result, migration forms systems: recurring origin-destination links that strengthen over time as each wave lowers the cost of movement for the next.
This chapter gives foundations-level shape to that idea. It builds on gravity and accessibility, but adds two crucial complications: not everyone is equally mobile, and movement itself changes the geography of future movement.
1. The Question
Why do some places exchange large numbers of migrants while others do not?
Because migration depends on more than distance and destination size.
It also depends on:
- job and income opportunity
- housing costs
- legal and administrative barriers
- migration networks
- who has the resources to move
That makes migration a selective system rather than a simple flow field.
2. The Conceptual Model
Migration Flows Follow Opportunity, But They Are Stabilized By Networks And Unequal Ability To Move
A destination does not attract migrants only because it is larger or richer. It also attracts more effectively once earlier migrants have already created information channels, family links, and support networks.
Pull Toward Wages, Safety, And Services
Jobs, education, care, and political stability create strong destination pull, but only for people who can realistically respond.
Not Everyone Can Move Equally
Money, legal status, family obligations, health, and information all affect who can take advantage of the same destination opportunity.
Past Migration Lowers Future Migration Cost
Earlier migrants create knowledge, housing, contacts, and social support that make the same route easier for later migrants.
Push, pull, and network effects
A simple migration story includes:
- push from the origin
- pull from the destination
- friction from distance and cost
- network reinforcement from earlier movers
This is why migration systems can become highly uneven. Two destinations with similar wages may attract very different flows if one already has a strong migrant network.
Selective mobility
Migration is selective because populations are not equally able to move.
People with:
- more savings
- better education
- stronger health
- safer legal status
often have wider migration options.
This means migration redistributes populations unevenly by age, skill, and income.
3. Worked Example by Hand
Suppose a town can send migrants to two cities.
| City | Opportunity score | Travel friction | Existing network |
|---|---|---|---|
| A | 9 | 5 | 4 |
| B | 8 | 3 | 1 |
Let a simple migration-attraction score be:
M = \text{opportunity} + \text{network} - \text{friction}
Then:
- City A: 9 + 4 - 5 = 8
- City B: 8 + 1 - 3 = 6
Even though City B is easier to reach, City A attracts more movement because the stronger existing network compensates for higher travel friction.
This is not a full migration model. It is a way to see the structure:
- opportunity matters
- friction matters
- networks can change the ranking
4. Why Migration Reshapes Regions
Selective migration changes both origin and destination.
Origins may lose:
- young adults
- skilled workers
- future births
Destinations may gain:
- labour supply
- cultural diversity
- housing pressure
- service demand
This is why migration is not just a result of regional inequality. It also reproduces or amplifies that inequality through time.
5. Computational Implementation
destinations = [
{"name": "A", "opportunity": 9, "friction": 5, "network": 4},
{"name": "B", "opportunity": 8, "friction": 3, "network": 1},
]
for d in destinations:
d["score"] = d["opportunity"] + d["network"] - d["friction"]
for d in destinations:
print(d["name"], d["score"])Real migration models are more careful, but this already captures the point that migration corridors are shaped by more than straight-line attractiveness.
Summary
- Migration systems are structured origin-destination links, not random movement.
- Opportunity, friction, and social networks all shape migration.
- Mobility is selective, so migration redistributes age, skill, and income unevenly.
- Past migration changes future migration by lowering route-specific friction.
- Migration is a core human-geography process that reshapes both origin and destination regions.