Case Studies in Statistical Thinking
Justin Bois
Lecturer, Caltech
$$m' \equiv m - 5 \sim \text{Exponential}$$
$$m' \equiv m - m_t \sim \text{Exponential}$$
The magnitudes of earthquakes in a given region over a given time period are Exponentially distributed
One parameter, given by $\overline{m} - m_t$, describes earthquake magnitudes for a region
$$b = (\overline{m}-m_t) \cdot \ln 10$$
# Completeness threshold
mt = 5
# b-value
b = (np.mean(magnitudes) - mt) * np.log(10)
print(b)
0.9729214742632566
The magnitude, $m_t$, above which all earthquakes in a region can be detected
Case Studies in Statistical Thinking