Options

Math Horizons article on "Monte Carlo methods in climate science"

David Tweed and I are almost done writing an article for the US undergraduate math magazine Math Horizons. What do you think about it?

The most frustrating part of writing this paper was trying to explain the Markov Chain Monte Carlo method without becoming overly technical. If you look at most of the articles in this magazine, you'll see they have a light and breezy tone. Ours is verging on too heavy. The version on the blog ran into this problem:

  1. We start by saying we want to compute P(S|M) - he probability that our model should have certain Settings, giving certain Measurements.

  2. Then we say we can't easily do that: we can only compute P(M|S).

  3. Then Bayes' rule comes to our rescue by relating these two.

  4. But then we say "Having glibly said that we can compute P(M|S), how do we actually do this?"

  5. We describe an obvious way to do it.

  6. But then we say this is inefficient.

  7. Then we say Markov Chain Monte Carlo is better. We describe how that works, and we start by saying "compute the ratio P(S'|M)/P(S|M)"

At this point we've made a complete loop: we're back to acting like we can compute P(S|M)!

In a later draft we tried to quickly explain why we're not, in fact, being circular:

Note that this rule uses P(S|M) at each step, which we have to get from the P(M|S) value returned from our simulation by using Bayes' rule again. With some additional tricks, such as discarding the very beginning of the walk, this gives a set of samples which can be used to build an estimate of P(S|M).

Unfortunately, I think most readers will find this bewildering and disheartening.

So, in the new draft I've decided to gloss over all this stuff and give references for details.

Comments

  • 1.

    Very nice article! I only have two very small (and not very important) comments:

    1) Why is there an "E" instead of "m" (or "M" or "m_t") on the vertical axis of Figure 2?

    2) In the Introduction, both "northern Europe" and "Northern Europe" appears. I guess this is a typo, and only the latter version should appear.

    Comment Source:Very nice article! I only have two very small (and not very important) comments: 1) Why is there an "E" instead of "m" (or "M" or "m_t") on the vertical axis of Figure 2? 2) In the Introduction, both "northern Europe" and "Northern Europe" appears. I guess this is a typo, and only the latter version should appear.
  • 2.

    I guess there is some confusion between what is easy to do conceptually and what is easy to computationally.

    Conceptually, it's hard to figure out how to even write down a formula for P(S|M), let alone evaluate it computationally, without first going through P(M|S) via Bayes's theorem. This is because we normally think of modeling problems in a "forward" way, through the data-generating process, which gives you P(M|S). Then the trick is to figure out how to invert what we know, P(M|S), to get what we don't know, P(S|M), which is where Bayes comes in.

    But once you do go the Bayes route and conceptually know how to write down a formula for what you want, P(S|M), computing it isn't really harder than computing P(M|S); it just requires an extra calculation of the prior, P(S).

    Comment Source:I guess there is some confusion between what is easy to do conceptually and what is easy to computationally. Conceptually, it's hard to figure out how to even write down a formula for P(S|M), let alone evaluate it computationally, without first going through P(M|S) via Bayes's theorem. This is because we normally think of modeling problems in a "forward" way, through the data-generating process, which gives you P(M|S). Then the trick is to figure out how to invert what we know, P(M|S), to get what we don't know, P(S|M), which is where Bayes comes in. But once you do go the Bayes route and conceptually know how to write down a formula for what you want, P(S|M), *computing* it isn't really harder than computing P(M|S); it just requires an extra calculation of the prior, P(S).
  • 3.

    To keep things simple, suppose S is an element of some finite set.

    Suggest: To keep things simple, suppose S can only take a finite number of values.

    The simplest way would be to run our model many, many times with the settings set at S = s and determine the fraction of times it predicts measurements consistent with m.

    consistent means equal? close?

    One thing we can more easily do is repeatedly run our model with randomly chosen settings and see what measurements it predicts. By doing this, we can compute the probability that given setting values S = s, the model predicts measurements M = m.

    This confuses me. It sounds like you are running a simulation for each s. Are you really? I would expect you to be running a program which calculates P(M=m|S=s) for fixed m and each s. And I guess P(M=m|S=s) is a product of things like $P(M_2=m_2|S=s,M_2=m_1)$ derived from eq 1.

    Then, since probabilities must sum to 1, we can figure out this constant.

    I would either omit this, or explain why someone might want to know the constant.

    Figure 3: Estimates of the conditional probability P(S = s|M = m), where at each step we run the model at all possible settings, and we keep a running total of the fraction of times each measurement s occurs when the setting is m.

    'setting s occurs when the measurement is m.' ?

    And 'run the model' makes me nervous again.

    Comment Source:> To keep things simple, suppose S is an element of some finite set. Suggest: To keep things simple, suppose S can only take a finite number of values. > The simplest way would be to run our model many, many times with the settings set at S = s and determine the fraction of times it predicts measurements consistent with m. consistent means equal? close? > One thing we can more easily do is repeatedly run our model with randomly chosen settings and see what measurements it predicts. By doing this, we can compute the probability that given setting values S = s, the model predicts measurements M = m. This confuses me. It sounds like you are running a simulation for each s. Are you really? I would expect you to be running a program which calculates P(M=m|S=s) for fixed m and each s. And I guess P(M=m|S=s) is a product of things like $P(M_2=m_2|S=s,M_2=m_1)$ derived from eq 1. > Then, since probabilities must sum to 1, we can figure out this constant. I would either omit this, or explain why someone might want to know the constant. > Figure 3: Estimates of the conditional probability P(S = s|M = m), where at each step we run the model at all possible settings, and we keep a running total of the fraction of times each measurement s occurs when the setting is m. 'setting s occurs when the measurement is m.' ? And 'run the model' makes me nervous again.
  • 4.
    edited September 2013

    It might be better to introduce Markov Chain Monte Carlo for an arbitrary density $f(x)$. First say its a clever algorithm for obtaining a set of samples from $f$. Then say it only requires calculating ratios like $f(x')/f(x)$, so it produces the same samples if $f$ is multiplied by a constant, and you don't even need to know what the constant is. Then say that just what is needed to sample from the posterior with 1/P(M=m) being the unknown constant.

    Comment Source:It might be better to introduce Markov Chain Monte Carlo for an arbitrary density $f(x)$. First say its a clever algorithm for obtaining a set of samples from $f$. Then say it only requires calculating ratios like $f(x')/f(x)$, so it produces the same samples if $f$ is multiplied by a constant, and you don't even need to know what the constant is. Then say that just what is needed to sample from the posterior with 1/P(M=m) being the unknown constant.
  • 5.

    Thanks for all the comments and corrections! Here are just a few comments, mainly in response to Graham:

    Suggest: To keep things simple, suppose S can only take a finite number of values.

    For normal people, definitely. For math majors (e.g., me), finite sets have a certain charm.

    consistent means equal? close?

    I had written "equal" here, which is conceptually nice, but David said that's never how it works in practice, so he opted for "consistent", which is deliberately vague. "Close" might be better, though then people will wonder "how close"?

    It sounds like you are running a simulation for each s. Are you really?

    In our toy example we actually do that to produce Figure 3.

    I would either omit this, or explain why someone might want to know the constant.

    The idea was to quickly sketch how you could work out $P(S|M)$ using Bayes' rule, not just "up to a constant". I think I'll leave this in since a certain class of math majors will become quite upset being told you can compute a number up to a constant factor.

    "setting s occurs when the measurement is m." ?

    Thanks for catching that typo! My fault.

    Thanks also to Zoltan for catching some other typos.

    The editor just said this draft was "outstanding", and I've got lots of other things to do, so I think I'll submit it without making more substantial attempts to improve it.

    Comment Source:Thanks for all the comments and corrections! Here are just a few comments, mainly in response to Graham: > Suggest: To keep things simple, suppose S can only take a finite number of values. For normal people, definitely. For math majors (e.g., me), finite sets have a certain charm. > consistent means equal? close? I had written "equal" here, which is conceptually nice, but David said that's never how it works in practice, so he opted for "consistent", which is deliberately vague. "Close" might be better, though then people will wonder "how close"? > It sounds like you are running a simulation for each s. Are you really? In our toy example we actually do that to produce Figure 3. > I would either omit this, or explain why someone might want to know the constant. The idea was to quickly sketch how you could work out $P(S|M)$ using Bayes' rule, not just "up to a constant". I think I'll leave this in since a certain class of math majors will become quite upset being told you can compute a number up to a constant factor. > "setting s occurs when the measurement is m." ? Thanks for catching that typo! My fault. Thanks also to Zoltan for catching some other typos. The editor just said this draft was "outstanding", and I've got lots of other things to do, so I think I'll submit it without making more substantial attempts to improve it.
  • 6.
    edited September 2013

    Zoltan wrote:

    Why is there an “E” instead of “m” (or “M” or “m_t”) on the vertical axis of Figure 2?

    I figured out the answer! In fact it says "m". However, the "m" is rotated 90 degrees!

    Comment Source:Zoltan wrote: > Why is there an “E” instead of “m” (or “M” or “m_t”) on the vertical axis of Figure 2? I figured out the answer! In fact it says "m". However, the "m" is rotated 90 degrees!
  • 7.
    edited September 2013

    John wrote:

    I figured out the answer! In fact it says "m". However, the "m" is rotated 90 degrees!

    Ahh, yes :)! You are right. Sorry.

    Comment Source:John wrote: > I figured out the answer! In fact it says "m". However, the "m" is rotated 90 degrees! Ahh, yes :)! You are right. Sorry.
  • 8.

    Don't be sorry - we need to fix that, because it really does look like an E.

    Comment Source:Don't be sorry - we need to fix that, because it really does look like an E.
  • 9.

    This paper is officially done, except I'm still hoping David Tweed can rotate that "m".

    Thanks to everyone for their help! I guess this is the first Azimuth-authored paper!

    Let me remind all of you that I'm eager for more collaborations like this, or other ways to get you all more involved in doing work related to environmental issues. The easiest thing to do is write blog articles or help improve the wiki, but there are also more substantial projects waiting for people to do them.

    Comment Source:This paper is officially **done**, except I'm still hoping David Tweed can rotate that "m". Thanks to everyone for their help! I guess this is the first Azimuth-authored paper! Let me remind all of you that I'm eager for more collaborations like this, or other ways to get you all more involved in doing work related to environmental issues. The easiest thing to do is write blog articles or help improve the wiki, but there are also more substantial projects waiting for people to do them.
Sign In or Register to comment.