标准式博弈
对于元组,被称为标准式博弈(normal form game),如果满足以下条件:
- 规定表示(在中)玩家集合,是可列的
- 记,规定表示玩家(在中)的策略集合,表示(在中)策略空间
- 记,规定表示玩家(在中)的收益函数,表示(在中)收益函数组合,即有
Update your browser to view this website correctly. Update my browser now
标准式博弈 对于333元组Γ=(I,S,π)\Gamma=(I,S,\pi)Γ=(I,S,π),Γ\GammaΓ被称为标准式博弈(normal form game),如果满足以下条件: 规定III表示(在Γ\GammaΓ中)玩家集合,III是可列的 记S={S[i]∣i∈I}S=\bigg\{S[i
背景 pandas is an open source, BSD-licensed library providing high-performance, easy-to-use data structures and data analysis tools for the Python progr
背景 在调用 Python 函数 (See also realpython - Defining Your Own Python Function) 的时候,往往需要传入一些参数。函数所需的参数被称为形式参数 parameter,传入的参数被称为实际参数 argument (See also 5 T
函数对象的特殊属性 NOTE 当前测试的CPython解释器版本为 123>>> print(__import__('sys').version)3.7.3 (default, Mar 27 2019, 16:54:48)[Clang 4.0.1 (tags/RELEASE_401
背景 在使用 Python 开发时,如果要把对象 obj 当作字典使用,可以直接操作 obj.__dict__(如果有的话),具体而言: 对象操作 字典操作 查 obj.foo obj.__dict__["foo"] 改 obj.foo = "bar" obj