- 09 Nov 2024
- 2 Minutes to read
- DarkLight
Challenging the Notion That LLMs Can't Reason: A Case Study with Einstein's Puzzle
- Updated on 09 Nov 2024
- 2 Minutes to read
- DarkLight
Introduction
A recent Apple publication argued that Large Language Models (LLMs) cannot effectively reason. While there is some merit to this claim regarding out-of-the-box performance, this article demonstrates that with proper application, LLMs can indeed solve complex reasoning problems.
The Initial Experiment: Einstein's Puzzle
We set out to test LLM reasoning capabilities using Einstein's puzzle, a complex logic problem involving 5 houses with different characteristics and 15 clues to determine who owns a fish. Our initial tests with leading LLMs showed mixed results:
· OpenAI's model correctly guessed the answer, but without clear reasoning
· Claude provided an incorrect answer
· When we modified the puzzle with new elements (cars, hobbies, drinks, colors, and jobs), both models failed significantly
Tree of Thoughts Approach and Its Challenges
We implemented our Tree of Thoughts approach, where the model would:
1. Make guesses about house arrangements
2. Use critics to evaluate rule violations
3. Feed this information back for the next round
However, this revealed several interesting failures in reasoning:
Logic Interpretation Issues
The critics often struggled with basic logical concepts. For example, when evaluating the rule "The Plumber lives next to the Pink house," we received this confused response:
"The Plumber lives in House 2, which is also the Pink house. Since the Plumber lives in the Pink house, it means that the Plumber lives next to the Pink house, which is House 1 (Orange)."
Bias Interference
The models sometimes inserted unfounded biases into their reasoning. For instance:
"The Orange house cannot be in House 1 because the Plumber lives there and the Plumber does not drive a Porsche."
The models also made assumptions about what music Porsche drivers would listen to, demonstrating how internal biases can interfere with pure logical reasoning.
A Solution Through Code Generation
While direct reasoning showed limitations, we discovered that LLMs could excel when used as code generators. We asked SCOTi to write MiniZinc code to solve the puzzle, resulting in a well-formed constraint programming solution. The key advantages of this approach were:
1. Each rule could be cleanly translated into code statements
2. The resulting code was highly readable
3. MiniZinc could solve the puzzle efficiently
Example of Clear Rule Translation
The MiniZinc code demonstrated elegant translation of puzzle rules into constraints. For instance:
If you would like to get the full MiniZinc code, please DM me.
Implications and Conclusions
This experiment reveals several important insights about LLM capabilities:
1. Direct reasoning with complex logic can be challenging for LLMs
2. Simple rule application works well, but performance degrades when multiple steps of inference are required
3. LLMs excel when used as agents to generate code for solving logical problems
4. The combination of LLM code generation and traditional constraint solving tools creates powerful solutions
The key takeaway is that while LLMs may struggle with certain types of direct reasoning, they can be incredibly effective when properly applied as components in a larger system. This represents a significant advancement in software development capabilities, demonstrating how LLMs can be transformative when used strategically rather than as standalone reasoning engines.
This study reinforces the view that LLMs are best understood as transformational software components rather than complete reasoning systems. Their impact on software development and problem-solving will continue to evolve as we better understand how to leverage their strengths while working around their limitations.
Oliver King-Smith is the CEO of smartR AI. Please feel free to send questions to oliverks@smartr.ai We are happy to talk to you about your business use cases that might benefit from AI.