← Latest papers
🤖 machine learning

Learning to Reason Efficiently with Discounted Reinforcement Learning

This paper proposes a discounted reinforcement learning approach that penalizes reasoning tokens to encourage large reasoning models to generate concise chains of thought without sacrificing accuracy, effectively treating reasoning as a stochastic shortest path problem.

Original authors: Alex Ayoub, Kavosh Asadi, Dale Schuurmans, Csaba Szepesvári, Karim Bouyarmane

Published 2026-05-27
📖 5 min read🧠 Deep dive

Original authors: Alex Ayoub, Kavosh Asadi, Dale Schuurmans, Csaba Szepesvári, Karim Bouyarmane

Original paper licensed under CC BY 4.0 (http://creativecommons.org/licenses/by/4.0/). This is an AI-generated explanation of the paper below. It is not written or endorsed by the authors. For technical accuracy, refer to the original paper. Read full disclaimer

The Big Problem: The "Over-Thinker" AI

Imagine you have a very smart student (a Large Reasoning Model, or LRM) who is great at solving math problems. However, this student has a bad habit: before giving the final answer, they write out a massive, rambling essay of their thought process. They might say, "Okay, let me think about this... maybe I should try this... wait, no, that's wrong... let me try that again..."

While this "Chain of Thought" helps them get the right answer, it takes a long time and uses up a lot of energy (computational cost). The paper asks a simple question: Does the student need to write a 10-page essay to get an A, or could they get the same A with a 2-page summary?

Many people assume that "more thinking = better accuracy." This paper challenges that idea. It argues that you can often get the same high accuracy with much shorter reasoning, provided you teach the AI to value efficiency.

The Solution: The "Discounted Reward" Trick

The authors propose a clever way to train these AI students using a concept called Discounted Reinforcement Learning.

The Analogy: The Pizza Delivery Driver

Imagine you are training a pizza delivery driver.

  • The Goal: Deliver the pizza to the customer and get a tip (the reward).
  • The Old Way: You tell the driver, "Just get the pizza there. Take as many detours as you want, as long as you eventually get there." The driver might drive around the block five times to be "sure" they are on the right path, wasting gas and time.
  • The New Way (Discounting): You tell the driver, "You get a tip, but the tip shrinks the longer you take to deliver it."
    • If you deliver in 10 minutes, you get 100% of the tip.
    • If you deliver in 20 minutes, the tip is slightly smaller.
    • If you deliver in 30 minutes, the tip is even smaller.

This creates a natural incentive for the driver to find the shortest successful route. They still want to get the tip (accuracy), but they now have a strong reason to avoid unnecessary detours (shorter reasoning).

How It Works in the Paper

The researchers applied this "shrinking tip" idea to AI reasoning:

  1. The Setup: They treated the AI's reasoning process like a game. Every time the AI generates a "thinking" token (a word in its internal monologue), it's like taking a step.
  2. The Discount: They applied a mathematical "discount factor" (a number slightly less than 1) to the reward.
    • If the AI solves the problem correctly, it gets a reward.
    • However, that reward is multiplied by the discount factor for every single thinking token it used.
    • Crucial Detail: They only discounted the reasoning tokens. They did not discount the tokens needed for formatting (like writing "Answer:" or closing tags). This ensures the AI learns to be concise in its thinking but still follows the rules for how to present the answer.
  3. The Result: The AI learns that the fastest way to get the full reward is to find the shortest path to the correct answer.

The Theoretical "Magic" (Blackwell Optimality)

The paper uses some heavy math to prove why this works. They rely on a concept called Blackwell Optimality.

Think of it like this: Imagine you have a list of different routes to get to a destination.

  • Some routes are fast but risky (might get you lost).
  • Some routes are safe but incredibly long.
  • Some routes are both safe and short.

The math proves that if you set your "impatience" (the discount) just right (very close to 1, but not exactly 1), the AI will naturally pick the shortest route among the ones that are guaranteed to succeed.

The paper claims that for a certain range of settings, there is no trade-off. You don't have to choose between "short and dumb" or "long and smart." You can have "short and smart." The AI finds the shortest path that still guarantees a correct answer.

What the Experiments Showed

The team tested this on several math benchmarks (like GSM8K and MATH) using different AI models (like Qwen and Llama).

  • Accuracy: The "discounted" models got the same number of correct answers as the "undiscounted" models.
  • Length: The "discounted" models wrote significantly shorter reasoning chains.
    • On one test, the average response length dropped by 22% without losing any accuracy.
    • On another, it dropped by 13%.

In some cases, the shorter models even performed slightly better, suggesting that cutting out the "fluff" might actually help the AI focus better.

Summary

The paper introduces a simple but powerful training trick: Make the AI pay a tiny "tax" for every extra word it thinks.

By doing this, the AI learns to be a "efficient thinker." It stops rambling and starts finding the most direct path to the correct answer, saving time and computing power without sacrificing its intelligence. The authors prove mathematically that this works and show through experiments that it does exactly what they predicted.

Drowning in papers in your field?

Get daily digests of the most novel papers matching your research keywords — with technical summaries, in your language.

Try Digest →