Exploration vs Exploitation
A fundamental tradeoff in decision-making between trying new things to discover opportunities and using what you already know works.
Also known as: explore-exploit tradeoff, exploration-exploitation tradeoff, explore vs exploit
Category: Decision Science
Tags: decision-making, strategy, learning, optimization, productivity, tradeoffs
Explanation
A fundamental tradeoff in decision-making between:
- **Exploration**: Trying new things, gathering information, discovering opportunities
- **Exploitation**: Using what you already know works, optimizing known strategies
Too much exploration leads to never capitalizing on what you learn. Too much exploitation leads to missing better opportunities and getting stuck in local optima.
The optimal balance depends on context:
- **High exploration** when: starting out, environment is changing rapidly, time horizon is long, current results are poor
- **High exploitation** when: time is limited, current approach works well, costs of experimentation are high
This tradeoff appears everywhere:
- **Career choices**: stick with current job vs. explore new opportunities
- **Learning**: deepen existing skills vs. acquire new ones
- **Business**: optimize current products vs. innovate new ones
- **Relationships**: invest in existing connections vs. meet new people
The New Now Next framework relates to this: "new" often represents exploration, while "now" and "next" involve exploitation of known paths.
In computer science, this is formalized in multi-armed bandit problems, where algorithms must balance gathering information about options (exploration) with maximizing rewards from known good options (exploitation).
Related Concepts
← Back to all concepts