Lecture 10
September 15, 2023
Uncertainties arise due to the separation between the “internals” of the system and the “external” environment.
Text: VSRIKRISH to 22333
We often don’t want to just know if a particular event \(A\) has a certain probability, but also how other events (call them \(B\)) might depend on that outcome.
In other words:
We want the conditional probability of \(B\) given \(A\), denoted \(\mathbb{P}(B|A)\).
We can write conditional probabilities in terms of unconditional probabilities:
\[\mathbb{P}(B|A) = \frac{\mathbb{P}(BA)}{\mathbb{P}(A)}.\]
Conditional probabilities can be inverted according to Bayes’ Theorem:
\[\mathbb{P}(A|B) = \frac{\mathbb{P}(B|A) \times \mathbb{P}(A)}{\mathbb{B}}.\]
Environmental outcomes are often dependent on other uncertain processes.
The probability of possible values of an unknown quantity are often represented as a probability distribution.
Probability distributions associate a probability to every event under consideration (the event space) and have to follow certain rules (for example, total probability = 1).
The specification of distributions can strongly influence the analysis.
A distribution implicitly answers questions like:
The tails of distributions represent the probability of high-impact outcomes.
Key consideration: Small changes to these (low) probabilities can greatly influence risk.
Monte Carlo simulation: Propagating random samples through a model to estimate a value (usually an expectation or a quantile).
Monte Carlo is a broad method, which can be used to:
Monte Carlo estimation involves framing the quantity of interest as a summary statistic (such as an expected value).
Finding \(\pi\) by sampling random values from the unit square and computing the fraction in the unit circle. This is an example of Monte Carlo integration.
\[\frac{\text{Area of Circle}}{\text{Area of Square}} = \frac{\pi}{4}\]
[ Info: Saved animation to /Users/vs498/Teaching/BEE4750/fall2023/slides/images/mc_pi.gif
What is the probability of rolling 4 dice for a total of 19?
Can simulate dice rolls and find the frequency of 19s among the samples.
[ Info: Saved animation to /Users/vs498/Teaching/BEE4750/fall2023/slides/images/mc_dice.gif
This type of estimation can be repeated with any simulation model that has a stochastic component.
For example, consider our dissolved oxygen model. Suppose that we have a probability distribution for the inflow DO.
How could we compute the probability of DO falling below the regulatory standard somewhere downstream?
This is an example of uncertainty propagation: draw samples from some distribution, and run them through one or more models to find the (conditional) probability of outcomes of interest (for good or bad).
For example (HW3): What is the probability that a levee will be overtopped given climate and extreme sea-level uncertainty?
Monday: Lab on Monte Carlo.
Wednesday: Monte Carlo wrapup