--- license: cc-by-4.0 pretty_name: Nash Equilibria of 2x2 Normal-Form Games tags: - game-theory - nash-equilibrium - normal-form-games - combinatorics - synthetic size_categories: - 100M **List columns are stored as strings** (Python `repr` of a list), for exact > round-trip fidelity. Parse them with `ast.literal_eval`: > ```python > import ast > positions = ast.literal_eval(row["equilibrium_positions"]) > ``` ## Provenance Games were generated by exhaustive Cartesian enumeration of the payoff space, then enriched with equilibrium detection and classification computed deterministically from the payoff matrix (no sampling, no randomness). Payoffs are compact integer types and repetitive categorical/list columns are dictionary-encoded, so the full 214M-row split is ~172 MB of Parquet. ## License CC-BY-4.0 — free to use with attribution.