From Deep Thinking to Parallel Thinking
Current mainstream AI reasoning relies on extended chain-of-thought (the "deep thinking" mode pioneered by OpenAI o1 and DeepSeek-R1)—like locking a genius in a room until they grind through ten thousand reasoning steps. But is that the only or best way?
In this post, the author discusses OpenDeepThink: Parallel Reasoning via Bradley–Terry Aggregation, a paper by researchers from UCSD and collaborators. The core idea: if one thinker's depth is limited, hold a meeting. Rather than pursuing an infinitely long chain of thought (CoT), pursue breadth—the AI instantly creates multiple versions of itself, producing dozens of distinct solution approaches (a population) at once.
The Bradley-Terry "Battle Arena"
Once dozens of candidate answers exist, whose should you trust? Traditional methods ask a judge AI to score each one, but judges can be inaccurate. OpenDeepThink instead uses a tournament-style rule set:
1. Pairwise matchups: No absolute scores. The judge only answers relative questions: "Solution A is more convincing than Solution B, because C." 2. Mathematical ranking: The Bradley-Terry model—the same math behind chess Elo ratings and game ladders—aggregates all pairwise wins/losses into a strength score for each candidate. 3. Survival of the fittest: Top-ranked candidates are kept; mid-ranked ones undergo "mutation" (revision based on judge feedback); bottom-ranked ones are eliminated.
Why This Is Feynman-like
The post invokes Feynman's observation that looking at a problem from multiple angles often reveals the truth. The paper essentially automates multi-perspective thinking:
- No retraining needed: No multi-million-dollar reasoning-model training—just run existing GPT or Gemini models in parallel and let them "meet."
- Real gains: Experiments reportedly show ordinary Gemini 3.1 Pro gaining 405 points on Codeforces competitive programming through this method.
Why It Matters
The narrative of AI progress has shifted: first intelligence came from brute force (more parameters), then patience (longer thinking time), and now from democracy and debate. The post proposes a new principle: truth often lies not in the depth of a single chain of thought, but in the fixed point reached after deliberating across competing possibilities.
Summary: We are moving from the era of the "super brain" to the era of the "super committee." When a top AI gets a hard problem wrong, don't give it one chance—ask for multiple answers and let them argue. The conclusion that emerges from messy debate is often the truth you were looking for.
> Wisdom belongs not to the lonely thinker, but to those who know how to find the optimal solution amid disagreement. That is the lesson of collective intelligence this paper delivers.