DELIBERATE AMBIGUITIES¶
The abstract structure leaves some details unspecified, to be filled in later:
- The exact number of periods, stages, and moves
- The specific state spaces and transition functions
- The exact form of the reward functions and discount factors
- The distributions of stochastic shocks
- The initial population measure
- The specific behavior of a stage when an optional state component is absent (⊥) — for example, whether the stage optimizes over it, substitutes a default, or treats it as zero
These "deliberate ambiguities" allow the structure to be adapted to a wide range of problems. The specifics will be determined when configuring the structure for a particular application.
Implementation-Specific Considerations¶
The framework deliberately leaves implementation details unspecified:
- The specific numerical solution algorithm
- How state spaces are discretized or approximated
- Which specific transitions are pre-computed or optimized
- How expectations are calculated numerically
- Whether policy functions are computed directly or derived from value functions
These implementation choices depend on: - The specific problem structure - Computational efficiency requirements - Accuracy considerations - Available computational resources