Leading strategy consultancies use games to filter candidates. This tool simulates the “Ecosystem Building” assessment - a digital challenge designed to test the ability to synthesize complex systems under pressure.
🎯 The Challenge
For full score one must build a sustainable food chain of exactly 8 species that thrive in the same ecological niche. Naively Selecting 8 from 39 species (without replacement) - aka boiling the ocean, calculated as - yields possibilities. The whole test has previously been fully disclosed online: Full Test (Youtube).
DEV LOG The Math of Survival
The Problem: A bruteforce approach to finding a stable chain of 8 species from a large dataset leads to combinatorial explosion (approaching ). It is mathematically “hard”.
The Solution: We reduce the complexity by applying three strategic heuristics:
- Zero-Risk Anchors: Producers have no “Need”, so we can always include them safely.
- Clustering (Filter): Filtering by ecological niche yields candidates for the remaining slots.
- Quick Validation: If a food source gets exhausted, the chain fails. No further computation necessary.
The Result: The problem collapses from to scenarios - saving 8 orders of magnitude. This serves as a case study: structuring unstructured data turns the impossible into the solvable.
🛠️ The Solver Tool
The interface (Navigate via Tab / Enter) is designed for rapid iteration, combining three synchronized views:
About the Author
Julian Yves Richard Corbet is an emerging Business Strategist with a strong interest in Investing (Alternatives | Infra | Wealth) and Emerging Tech (AI | Biotech | Quantum)
♟️ Ruleset
Consumption depletes Source’s Calories by Predator’s Need. Recursion continues until satiety.
Highest Calories Provided eats first, selecting the richest Food Source. Ties are split 50/50.
Survival requires species to be fully fed (zero want) and maintain a positive energy balance (spare calories).
Key Insights
- 1Dynamic Order: Re-evaluate every turn.
- 2Limited Variance: Identify clusters early.
- 3Producers: Include all producers (no risk).