(ex_fn_curve)=
# FN Curve

A small town is located in a seismic region threatened by two faults. Fault A has a 10% probability of occurring each year, which would cause 10 fatalities, and Fault B has a 1% chance of occurring, which would cause 100 fatalities. Construct an FN curve for the town. Assume that the town is risk averse and that the tolerable risk limit is governed using a constant of C=1.

**Question 1:**	Compute the expected annual fatalities for the town.

```{admonition} Answer
:class: tip, dropdown

$$
E(N) = P_1 \cdot N_1 + P_2 \cdot N_2 = 0.1 \cdot 10 + 0.01 \cdot 100 = 2
$$
```

**Question 2:**	If the town improved the safety of its buildings, what would be the maximum allowable number of fatalities that would be considered acceptable due to an earthquake on fault A?

```{admonition} Answer
:class: tip, dropdown

Using the limit curve

$$
1 - F_n(n) = C / n^\alpha
$$

$$
0.11 = 1 / n^2
$$

$$
n = \sqrt{10} = 3.1 \approx 3
$$
```

**Question 3:**	What is the maximum value for the probability of an earthquake on Fault B that would be considered acceptable by the town?

```{admonition} Answer
:class: tip, dropdown

Using the limit curve

$$
1 - F_n(n) = C / n^\alpha
$$

$$
1 - F_n(100) = C / 100^2 = 0.0001 = 10^{-4}
$$
```

**Question 4:**	Create an FN curve for this situation, including the limit line. Be sure to clearly label the axes and the values of key points on your diagram.

```{note}
If you are not sure what the limit line is, wait for this question until you read the Safety Standards Section (Risk Evaluation chapter).
```

````{admonition} Answer
:class: tip, dropdown

```{figure} https://files.mude.citg.tudelft.nl/exercise-FN-curve.png
---
width: 600px
name: FN-curve
---
FN-curve for exercise 4
```
````

% START-CREDIT
% source: risk
```{attributiongrey} Attribution
:class: attribution
This chapter reuses content written by Bas Jonkman and Robert Lanzafame. {ref}`Find out more here <risk_analysis_credit>`.
```
% END-CREDIT