laurenswhipple / ml / agi-to-asi

Universal AI (AIXI), Informally

Why this section exists in the paper

To set a theoretical ceiling on the AGI→ASI discussion. You can either project from below (extrapolate trends) or bound from above (formal limits). AIXI is the upper bound; ASI lives somewhere between today and AIXI on the continuum (02 - The Intelligence Continuum).

What AIXI is, in one paragraph

AIXI is Hutter's mathematical formulation of an optimal agent. It treats the environment as any computable function and uses Solomonoff's universal prior (simpler programs are exponentially more probable) to maintain a Bayesian belief over which environment it's in. It plans to maximize expected cumulative reward. It is provably optimal in the sense that no other agent achieves higher expected reward averaged over all computable environments weighted by the universal prior.

The three sub-problems AIXI solves simultaneously

Problem AIXI's solution
Acting under uncertainty Bayesian mixture over all computable environment hypotheses (Solomonoff Induction).
Long-horizon credit assignment General reinforcement learning over any computable reward function. Requires a choice of discount scheme.
Exploration-exploitation Solved implicitly: actions that reduce uncertainty are naturally favored when they lead to higher long-run reward. Once certainty is high, exploration naturally stops.

The big crux

"Neither AIXI, nor the associated intelligence measure, are computable."

AIXI is a target, not a recipe. The Legg-Hutter score is defined as the expected cumulative reward over all computable environments. AIXI maximizes it; therefore AIXI is by definition the most intelligent computable-environment agent.

But you can't run AIXI. You can only approximate it from below with successively better resource-bounded algorithms (e.g., MC-AIXI; Veness et al.).

The bridge the paper wants you to see

"Modern pretraining can be viewed as resource-bounded approximation of universal compression that improves with scale."

This is the deepest claim in Section 4: today's giant pretrained models, viewed through the AIXI lens, are doing amortized Bayesian inference over an approximation to the universal prior. Therefore:

This gives some theoretical justification for the conjecture that the current paradigm can be pushed quite far without fundamental theoretical blockers, even toward Universal AI territory.

But: this argument is "not complete or conclusive." Today's models still fail at: - Continual learning - Very long-context tasks - Robust planning

The fundamental limits AIXI bounds (Table 2)

Even AIXI is bound by:

This list is critical for 17 - What ASI Cannot Do: superintelligence is bounded, but the bounds do not directly tell us whether specific capabilities (cure aging, simulate brains, restore biodiversity) are possible. The bounds give negative results that are often vacuous in practice because excellent approximations exist.

Shortcomings of the AIXI framework itself

The paper is candid: - AIXI is not embedded — it sits outside the environment class, can't reason about itself or other AIXIs (a recent embedded multi-agent extension by Meulemans et al. 2025 partly fixes this) - Averaging over "all computable worlds" may not be what we want in the world we actually inhabit - Practical algorithms inspired by AIXI remain mostly impractical