원클릭으로
ix-game
Game theory — Nash equilibria, Shapley value, auctions, evolutionary dynamics
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Game theory — Nash equilibria, Shapley value, auctions, evolutionary dynamics
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Test model robustness with adversarial attacks and defenses
Multi-armed bandit simulation — epsilon-greedy, UCB1, Thompson sampling
Benchmark and compare ix algorithm performance
Embedded Redis-like cache with TTL, LRU, pub/sub, and RESP protocol
Category theory primitives — monad laws verification, free-forgetful adjunction
Chaos theory analysis — Lyapunov exponents, bifurcation, attractors, fractals
| name | ix-game |
| description | Game theory — Nash equilibria, Shapley value, auctions, evolutionary dynamics |
| disable-model-invocation | true |
Model strategic interactions between rational agents.
When the user needs to analyze competitive/cooperative scenarios, design auctions, compute fair allocations, or model population dynamics.
use ix_game::nash::{BimatrixGame, support_enumeration};
use ix_game::cooperative::{CooperativeGame, shapley_value};
use ix_game::auction::{second_price_auction, english_auction};
use ix_game::evolutionary::{replicator_dynamics, is_ess};
use ix_game::mean_field::{MeanFieldGame, find_equilibrium};
[[3,0],[5,1]] vs [[3,5],[0,1]][[1,-1],[-1,1]] vs [[-1,1],[1,-1]]hawk_dove_matrix(v, c) helper