An ambulance service needs to determine which hospital each neighborhood should be assigned to for the fastest emergency response. Why would network-based analysis give a fundamentally different answer than simple straight-line distance?
ANetwork analysis accounts for road connectivity, one-way streets, speed limits, and turn restrictions, while straight-line distance ignores barriers like rivers, highways, and terrain
BNetwork analysis is always faster to compute
CStraight-line distance overestimates travel time in all cases
DNetwork analysis only works for rural areas
A neighborhood may be physically close to Hospital A (straight-line) but separated by a river with no nearby bridge, making Hospital B -- farther by straight-line but connected by direct highway -- actually faster to reach. Network analysis models the actual travel paths, including road speeds, connectivity, one-way streets, and barriers, producing service areas that reflect real-world accessibility rather than geometric proximity.
Question 2 True / False
Network analysis is only useful for transportation applications like routing vehicles.
TTrue
FFalse
Answer: False
Network analysis applies to any system that can be modeled as a connected graph. Hydrologists use it to trace stream networks and model upstream/downstream connectivity. Utilities use it to model water, gas, and electrical networks for flow analysis and outage tracing. Ecologists model wildlife corridors as habitat connectivity networks. Epidemiologists trace disease transmission networks. Any system where flow, connectivity, or path-dependent processes matter can benefit from network analysis.
Question 3 Short Answer
Explain the difference between a shortest-path analysis and a service area analysis in the context of emergency management.
Think about your answer, then reveal below.
Model answer: Shortest-path finds the optimal route between a specific origin and destination (e.g., routing an ambulance from its station to a reported emergency). Service area analysis finds all locations reachable from a facility within a specified cost (e.g., all areas a fire station can reach within 5 minutes). Shortest-path solves a one-to-one routing problem; service area solves a one-to-many accessibility problem. Both use the same network and cost model, but they answer different questions: 'how do I get there?' versus 'where can I reach?'
Service areas are the network-based equivalent of buffers -- they define zones of accessibility, but following the network rather than straight-line distance.