stormvogel.examples.condensed_monty_hall

Condensed Monty Hall POMDP.

States: start, d1/d2/d3 (prize location), g/b (correct/incorrect pick), g’/b’ (after host reveals), win/lose.

Observations collapse the hidden state: all door states share “blue”, g and b share “green”, g’ and b’ share “teal”.

Functions

create_condensed_monty_hall(→ stormvogel.model.Model)

Return the condensed Monty Hall POMDP.

Module Contents

stormvogel.examples.condensed_monty_hall.create_condensed_monty_hall() stormvogel.model.Model

Return the condensed Monty Hall POMDP.

The model has 10 states. Observations do not distinguish prize location (d1/d2/d3), nor whether the initial pick was correct (g vs b), nor the post-reveal state (g’ vs b’). Switching is the optimal final action.

Returns:

A stormvogel POMDP model.