Inherent vs Emergent Complexity
Summary
Inherent complexity is the complexity of the ruleset itself — the number and intricacy of the rules a player must learn before playing. Emergent complexity is the complexity of situations and decisions that arise during play from the interaction of those rules. Great game design produces high emergent complexity from low inherent complexity: a small, elegant ruleset generates an enormous, inexhaustible possibility space.
This distinction, articulated by Keith Burgun in Game Design Theory (2012), is one of the most practical analytic tools in formalist game design (Burgun, Game Design Theory, Ch. 2, see source-game-design-theory).
Key ideas
The canonical comparison: Chess vs Go
Burgun uses these two abstract strategy games to ground the distinction:
Chess has relatively high inherent complexity. Just for the pawn alone:
- Pawns move one space forward, but two spaces from the starting position.
- Pawns capture on a forward diagonal.
- En passant — a special capture rule applying only to pawns that have just advanced two squares.
- Promotion — pawns reaching the far rank become other pieces.
And that is only one of six piece types. The full chess ruleset is substantially larger.
Go has extremely low inherent complexity:
- Two players place stones on a 19×19 grid.
- A stone (or connected group) surrounded on all sides by the opponent’s stones is captured.
- Ko rule: you cannot restore the board to its previous state.
- Most territory and captures at game end wins.
That is essentially the complete ruleset.
Yet Go is vastly more complex as a game. Mathematician Claude Shannon estimated ~10¹²⁰ possible chess games. The number of possible Go games dwarfs this at ~2×10¹⁷⁰. More significantly, as of Burgun’s writing the strongest computer chess programs had beaten world champions, while the strongest Go AIs consistently lost to talented children.
The lesson: more rules ≠ more depth.
Meaningful vs total possibilities
Burgun adds a further refinement: not all possibilities are equal. What matters is the number of meaningful possibilities — choices that are endogenously significant inside the game system.
In American football, throwing the ball out of bounds in three slightly different directions produces three technically distinct outcomes but only one meaningful outcome in the game system (the clock stops; possession is retained). The entire out-of-bounds area is functionally one discrete space.
Go’s massive emergent complexity comes not just from a large raw number of board states but from the fact that a very high proportion of those states represent genuinely distinct strategic situations requiring different decisions.
This is the quality game designers should be maximising: the density of meaningful decisions per unit of ruleset complexity.
Hiding behind complexity
Burgun identifies a common failure mode: using high inherent complexity to disguise weak core mechanics.
“When there’s 100 items, 40 characters, or 250 unit types in a game, many people just start thinking about inherent synergies and look past the core mechanisms.” (Ch. 2)
Examples:
- Magic: The Gathering would reveal its core boredom quickly without thousands of collectible cards providing inherent complexity.
- RTS games with near-100 unit types and hundreds of stat interactions become effectively unbalanceable because the designer cannot see the core mechanics clearly.
- RPGs with levelling systems, inventory, equipment, and skill trees layer inherent complexity that masks whether the underlying combat or exploration is actually interesting.
The practical test: strip away the content and ask whether the core mechanism is interesting on its own. If not, adding more content will not fix it — it will only delay the diagnosis.
The “more is not better” fallacy
In commercial video game development, there is cultural pressure to ship with more content: more weapons, more characters, more spells, more levels. Burgun argues this is anti-design. More inherent complexity:
- Makes balancing exponentially harder (see game-balance).
- Dilutes the identity and distinctiveness of individual choices.
- Signals to players that quantity substitutes for quality.
- Produces what Burgun calls “watered-down design” — games where most choices are effectively false choices because many options perform the same function at different scales.
In fighting games specifically, the number of matchups requiring individual balance grows as n choose 2 from the number of characters: 30 characters = 465 distinct matchups to balance. “That’s insane — do you think you’ll ever make 465 completed games in your entire lifetime?”
In practice
Design heuristics
- Start with a minimal ruleset. Begin with the fewest rules needed to produce an interesting core interaction. Add rules only when a specific design problem cannot be solved any other way.
- Test the core in isolation. Before adding content, verify that your core mechanism produces interesting decisions on its own. In board game design, this means playtesting with abstract components; in digital game design, it means grey-box prototyping.
- Distinguish rule complexity from content volume. Adding 50 new weapons is adding content, not rules. Neither is inherently good or bad, but neither should be confused with adding emergent complexity.
- Ask about meaningful interaction density. For each new rule or element you add, ask: how many meaningfully distinct new situations does this create? If the answer is few (e.g. a new sword that does the same thing as an existing sword but with different numbers), the addition dilutes rather than deepens.
Unity/C# application
In Unity, the distinction often maps onto:
- Inherent complexity: the number of scripts, parameters, and systems a player must engage with (abilities, stats, equipment slots).
- Emergent complexity: the interactions between a smaller number of well-designed systems producing surprising and meaningful outcomes.
A simple example: a physics-based projectile with gravity, bounce, and friction (three rules) produces far richer emergent decision-making than ten projectile types each with a flat, unique damage value (high inherent, low emergent). Burgun would point to Spelunky’s small toolkit and deep interactions as a successful implementation of this principle.
Evidence
Burgun (Ch. 2): “While chess is certainly more complex inherently, Go is by far the more complex game in terms of emergent complexity.”
On the meaningful possibility space: “The reason people think Go has such a massive level of emergent complexity is not just because of the high number of possibilities. It’s because of the very high number of meaningful possibilities.”
On hiding behind complexity: “High levels of complexity are hard for players to see through, but it also means that they are hard for designers to see through. To make a game that really lasts, limit your inherent complexity levels so that you, the designer, can see any weaknesses in the core mechanism.”
Implications
- This concept is the theoretical grounding for the design principle in systemic-depth-elegance: “depth from few rules” and “elegance.”
- It explains why game-balance becomes exponentially harder as content scales: more asymmetric elements multiply the interaction surface.
- It is a core argument against metagame systems (RPG levelling elements bolted onto other genres): these add enormous inherent complexity without proportional emergent complexity.
- It supports the argument for procedural-generation over hand-crafted content: well-designed generative systems can produce high emergent complexity with low inherent complexity.
Open questions
- The distinction between inherent and emergent complexity is analytically clean but practically blurry: when does content volume become a form of emergent complexity (as in deck-building games or roguelikes with vast item pools)? Burgun is aware of this — he acknowledges roguelikes have “excessive amounts of arbitrary information” while still being good game types.
- Is the emergent complexity of real-time games (continuous space × physics) legitimately high, or does it collapse into execution skill rather than meaningful strategic decisions? Burgun is ambivalent: he praises Spacewar! but is sceptical of modern RTS.
Related
- systemic-depth-elegance — depth from elegance; directly related principle
- game-balance — why inherent complexity makes balancing exponentially harder
- burgun-taxonomy — the broader framework this concept sits within
- meaningful-decisions — what “meaningful” means in this context
- second-order-design — designing systems, not paths; related principle
- procedural-generation — one technique for producing emergent complexity efficiently
- randomness-in-games — randomness as a source of emergent complexity in single-player games
- source-game-design-theory — source summary