AIght_
ToolsCompareLearnUniverseWorkflowsSignalHuman
Take the quiz
← All concepts

Concept

Reasoning Models

What changed when models started thinking before they answered.

Moon·Updated May 17, 2026
◈ Learn it interactively8 steps · ~6 min →

Where this idea lives

PREREQUISITESTOOLS THAT SHOW ITReasoning ModelsChain-of-ThoughtChain-of-Thought — When 'think step by step' actually earns its keep — and when it's just expensive theater.RLHFRLHF — Humans rate, model learns, weird things happen — the post-training that made models pleasant to talk to.Scaling LawsScaling Laws — Why bigger keeps working — and the question of where it stops.ChatGPTChatGPTClaudeClaudeDeepSeekDeepSeekCommon misconception: Reasoning models are 'actually intelligent' now.Common misconception: More thinking time = better answer.Common misconception: Reasoning models are good at every task.
prereqsrelatedtoolsmisconceptions
shows up in:Physics & EngineeringFinance & EconomicsMedicine & HealthcareSoftware Engineering
You might think:Reasoning models are 'actually intelligent' now.More thinking time = better answer.Reasoning models are good at every task.

Common misconception

“Reasoning models are actually thinking the way you do.”

What they're doing is generating a long internal monologue before the final answer, trained with RL to produce monologues that lead to correct answers on verifiable tasks (math, code, logic). The monologue is real token-by-token generation — it's just that you don't see most of it. The "thinking" is more compute, not a different mechanism.

In late 2024, OpenAI released o1 — a model trained to generate long chains of internal reasoning before its visible answer. DeepSeek followed with R1, Anthropic with extended thinking modes. The category is "reasoning models" — and on math, code, and multi-step logic benchmarks, they leapfrog the older generation.

◉ INTERACTIVE

Graduate-level puzzle

A train leaves city A at 60 km/h. Another leaves city B (300 km away) at 90 km/h heading toward A. Where do they meet? Also: a third train leaves A 30 min later at 90 km/h — which train from A arrives first?

Fast model (GPT-4)~1 s · $0.001

180 km from city A. The second train arrives first.

✗ wrong answer

Reasoning model (o3)~30 s · $0.15

Press run to see the reasoning model work.

Same family of models. Different inference-time computation. Different cost. Different correctness.

What's different

Standard models generate the answer directly. Reasoning models generate a private chain-of-thought first (often thousands of tokens), then a short user-facing answer. The chain is invisible to the user but visible to the training reward — the model is RL'd against verifiable problems (the answer is right or wrong, no preference judging needed).

What it costs

  • Latency. A reasoning model can take 10–60s per query vs. under 2s for a standard chat. Not a fit for interactive UIs.
  • Tokens. You pay for the hidden reasoning tokens. A "simple" query can cost 10× more.
  • Diminishing returns. Beyond ~10k thinking tokens, accuracy plateaus. Capping helps.

Where it shines

Hard math, competitive programming, complex contract analysis, multi-step diagnosis, anything with a verifiable answer. Less useful for open-ended creative work or simple lookups.

What to read next

Chain-of-thought is the prompt-time precursor. RLHF is the post-training that taught models to follow instructions; reasoning models extend that with RL on verifiable tasks.

◈ Check yourself

You just read it — now see if it stuck. No score, no penalty for a wrong pick.

Question 1 of 3

What distinguishes a "reasoning" model?

Question 2 of 3

Reasoning models spend more tokens "thinking" before answering. What's the trade?

Question 3 of 3

How do labs train models to reason, beyond ordinary next-token prediction?

← Prerequisite

Chain-of-Thought

Next →

AI Agents

by Moon · poet · engineer · third-year CS, Chandigarh University · Updated May 17, 2026

← Back to all conceptsBrowse tools →
intermediate
Read time6 min read
UpdatedMay 2026
Sources6

Read next

  1. Chain-of-Thought →
  2. RLHF →
  3. Scaling Laws →