The Active Ingredient in Muon's Grokking
A new study identifies orthogonalization, specifically the Newton-Schulz iteration, as the key mechanism enabling the Muon optimizer to achieve 'grokking' faster than AdamW in modular arithmetic tasks.
Intelligence analysis by Gemini 2.5 Flash

Research into the Muon optimizer reveals that its superior speed in reaching the 'grokking' threshold—where models generalize long after fitting training data—stems primarily from its orthogonalization component. Ablation studies show this mechanism allows models to settle into lower spectral norm solutions, though tuning its iteration count requires balancing speed with solution stab…
Imagine you're teaching a robot to sort colorful blocks. It first learns to sort the blocks you show it perfectly. But 'grokking' is when it suddenly understands the *rule* for sorting *any* block, even ones it's never seen. This paper found that a special 'straightening-out' step in the robot's learning method, called orthogonalization, is the secret ingredient that helps it figure out that rule much faster. But if you try to make this straightening-out step too quick, the robot might learn the rule fast but then forget it easily, especially if it's trying to learn too many things at once.
Analysis
Unpacking Muon's Grokking Advantage
The Muon optimizer has demonstrated a notable ability to reach the 'grokking' threshold in modular arithmetic tasks significantly faster than conventional optimizers like AdamW. Prior hypotheses attributed this efficiency to a combination of spectral-norm constraints and orthogonalized momentum. However, this new research meticulously dissects these components to pinpoint the true 'active ingredient' responsible for Muon's accelerated generalization.
Through comprehensive multi-seed and multi-learning-rate sweeps, the study conclusively shows that the speedup is almost entirely due to orthogonalization, specifically implemented via the Newton-Schulz iteration. Ablation experiments revealed that an 'orthogonalize-only' version of Muon matched the performance of the full optimizer, while a 'spectral-only' variant offered no speed advantage over AdamW and proved to be unreliable across various learning rates. This finding clarifies a long-standing ambiguity regarding Muon's operational efficacy.
The Role of Orthogonalization and Spectral Norm
The mechanistic analysis delves deeper into how orthogonalization contributes to faster grokking. It found that optimizers employing orthogonalization consistently achieve generalization at approximately three times lower spectral norm compared to their non-orthogonalizing counterparts. This suggests that orthogonalization doesn't merely perturb the embedding less, but actively guides the model towards a fundamentally different, lower-norm solution space.
Controlling for the actual movement of the embedding, the research indicates that this lower spectral norm is a characteristic of the final grokked solution itself, rather than just a side effect of the optimization process. This insight is critical for understanding the qualitative differences in the solutions found by orthogonalizing optimizers, highlighting a pathway to more stable and generalizable model states.
Balancing Speed and Stability in Optimization
While orthogonalization is key to speed, the study also explored the impact of its intensity, specifically by reducing the Newton-Schulz iteration count. Decreasing the iterations from the canonical five to just one significantly accelerated the process of reaching the grokking threshold. However, this speed came at a considerable cost: the resulting grokked solutions became notably fragile and prone to transient collapse, with this fragility escalating at higher learning rates.
This trade-off underscores a critical design consideration for optimizers. A single iteration of orthogonalization proved fast and stable only when paired with very small learning rates. In contrast, the standard five iterations offered a more robust and learning-rate-agnostic choice, ensuring stability even under more aggressive learning conditions. The paper also notes that spectral scaling, another component of Muon, could be entirely omitted without any measurable performance detriment, further streamlining the understanding of Muon's core mechanics.
Key points
- The Muon optimizer's speed in achieving 'grokking' is primarily due to its orthogonalization mechanism, not spectral-norm constraints.
- Orthogonalizing optimizers enable models to generalize at significantly lower spectral norms, settling into lower-norm solutions.
- Reducing the Newton-Schulz iteration count for orthogonalization accelerates grokking but makes the resulting solutions fragile and prone to collapse.
- The canonical five iterations of Newton-Schulz offer a more robust and learning-rate-agnostic approach to stable grokking.
- Spectral scaling, previously thought to be important, can be dropped from Muon without any measured performance cost.
This research provides a clearer roadmap for designing next-generation AI optimizers, potentially leading to models that generalize faster and more reliably. By understanding the precise role of orthogonalization, developers can create more efficient training algorithms, accelerating the development of advanced AI systems.
While orthogonalization offers speed, the study highlights a critical trade-off: reducing its iterations for even faster grokking can lead to fragile models prone to collapse, particularly at higher learning rates. This suggests that blindly optimizing for speed without considering stability could result in less robust and reliable AI deployments.

