Bible Network Crypto DeFi Onchain RWA AI Agent Stablecoin Chain SAFU CryptoTax DeFAI AGI Claude Me Claude Skill Claude Design Claude Cowork
Independent Media
Not affiliated with any project
Exploring the Frontier of AI Intelligence
claude-me.com
LATEST
Claude Code Can Now 'Loop' Through Work on Its Own: Anthropic Releases Four Loop Mode Guide That Lets AI Run Entire Processes  ·  Claude Cowork Honest Review: Three Months Later — What Actually Saved Time, What Made Me Regret Automating It  ·  Two Major Stories to Open July: Claude Sonnet 5 Launches, Fable 5 Export Controls Lifted and Globally Restored  ·  What Is RAG: Why Claude Can't Read Your Company Intranet — And How to Fix That  ·  Claude Cowork Advanced Workflows: From 'Hand Off One Task' to 'Run an Entire Process' — Three Real-World Templates  ·  Using Claude for Competitive Analysis: A Complete Workflow from Information Gathering to Actionable Insights
fundamentals

What Is Claude's Extended Thinking: Why Letting AI Think First Changes the Answer

30-Second Version · For the impatient
Language models can't "think before speaking" because they generate while speaking. Extended Thinking solves exactly this: it gives the model draft space to genuinely work through the problem before formally responding.

Full Explanation +
01 · Why did this happen?

Is Extended Thinking the same as Chain-of-Thought?

Related, but not identical. Understanding the difference helps clarify what Claude's Extended Thinking actually does.

Chain-of-Thought (CoT) is a prompting technique concept: tell the model to "think step by step" and it will show reasoning in its response. This makes models more accurate because writing out intermediate steps makes it harder to skip important logical links.

Extended Thinking is a capability Anthropic implemented at the training and architecture level. It's not triggered by a prompt — the model is trained to perform this two-phase "think first, then answer" processing. More importantly, the Extended Thinking "draft" is a genuinely free reasoning space for the model. What it says in the draft doesn't appear directly in the formal response and doesn't need to be "accountable" to you — so it can do more trial-and-error and self-correction in the draft.

An analogy: CoT is asking someone to "think out loud"; Extended Thinking gives them a private notebook to write in first, then deliver a formal verbal report based on the notes. The notebook can be messier, more non-linear, more willing to try things that fail — because it's not being shown to you directly.

02 · What is the mechanism?

When is Extended Thinking not worth enabling?

Extended Thinking isn't appropriate for all situations — knowing when not to use it is as important as knowing when to use it.

Situations where it's not worth enabling:

Simple factual lookups: "How does Python's sort() work?" "What's the English word for X?" These don't require complex reasoning; Extended Thinking just makes you wait longer with no meaningful quality improvement.

Creative writing tasks: Writing a creative passage, brainstorming a catchy headline — these rely on divergent association, not rigorous step-by-step reasoning. Extended Thinking offers limited benefit here.

Rapid iteration contexts: If you're doing high-volume testing (tweaking prompts, trying different angles), waiting for Extended Thinking slows your iteration speed. Use fast mode to find the right direction first, then switch to Extended Thinking once you're ready to go deep.

Formatting and organization tasks: Restructuring data into a table, reordering paragraphs, rephrasing a sentence — none of these require complex reasoning, so Extended Thinking adds nothing.

A simple decision criterion: if your question can be answered clearly in one or two sentences, Extended Thinking is typically unnecessary. If the answer requires multiple steps, multiple preconditions, or trade-offs between options, Extended Thinking is usually worth it.

03 · How does it affect me?

How much does Extended Thinking actually improve Claude's accuracy?

This is hard to answer with a single number because the improvement depends heavily on task type. But based on Anthropic's published data and external testing, here's a rough sense.

On mathematical reasoning benchmarks, Extended Thinking shows the most significant improvement — some tests show accuracy rising from the 60-70% range to above 80-90%. These tasks have the property that "one wrong step breaks everything," and Extended Thinking lets the model catch errors mid-process and correct them, rather than carrying errors all the way through.

On complex multi-constraint problems (planning problems with conflicting conditions), improvements are also notable but harder to quantify since the "correct answer" itself is debatable.

On factual knowledge questions ("what happened on a specific date"), Extended Thinking adds very little — the model either knows the fact or doesn't, and thinking harder doesn't create knowledge that isn't there.

On creative tasks, Extended Thinking can sometimes make outputs more conservative and "analytical" — it makes the model inclined to evaluate options rather than improvise freely.

The most useful advice for your practical use: if you find Claude's answer without Extended Thinking "technically correct but feels like something wasn't fully worked through," try enabling it and compare for yourself. That's more relevant than any benchmark number.

04 · What should I do?

Is the Extended Thinking draft content private? Can Anthropic see it?

A reasonable privacy question. According to Anthropic, Extended Thinking content is subject to the same privacy policy as your other conversation content.

A few specific technical facts worth knowing:

First, the thinking process content is visible to you (you can expand it in the interface), but the formal response doesn't include it — it only contains Claude's organized final answer.

Second, Anthropic has a design principle that the model cannot "deceive" in its thinking space — meaning its thinking process and its final behavior should be consistent. This isn't just about privacy; it's about ensuring model interpretability and safety.

Third, if you're using the API to build applications, some API configurations let you control whether thinking process tokens are returned to the application layer. This has implications for cost and privacy control.

For regular Claude.ai users, the practical conclusion: treat Extended Thinking privacy the same as anything else you type in Claude.ai — both are covered by Anthropic's privacy policy, but don't paste genuinely highly sensitive data (passwords, personally identifying information). That principle applies regardless of whether Extended Thinking is active.

Full Content +

Have you noticed that sometimes before Claude answers, it shows a gray "thinking" block containing extensive analysis — and only then gives you the final response? This feature is called Extended Thinking, and its underlying logic is more interesting than it looks.

You might intuitively wonder: "Doesn't AI just generate answers in one pass? Is the thinking step real or decorative?" Great question. The answer: Extended Thinking is a genuine computational process, not a performance, and there are rigorous technical reasons why it changes the output.

The Problem with Language Models That "Speak Without Thinking"

To understand Extended Thinking, you first need to understand how language models work without it. Large language models generate text by predicting "what's the most likely next token" at each step. This means the model is already heading in a particular direction the moment it produces its first word.

For simple questions, this is perfectly fine. "What's the capital of France?" requires no deliberation — just answer.

But for complex problems, this mechanism creates a fundamental difficulty: the model must simultaneously understand the problem, plan the answer structure, verify its assumptions, and assemble all of this while speaking. It's like being asked to improvise a complex financial analysis report out loud, without drafts — you often discover mid-sentence that you've gone in the wrong direction, with no way back.

What Extended Thinking Is: Draft Space Before Formal Response

The concept is straightforward: give the model a "draft space" to reason freely, explore ideas, and even contradict itself — before producing a formal answer for you.

The content of that draft space is exactly what you see in the gray thinking block. In this space, Claude can:

Propose hypotheses and challenge them: "My first instinct is X, but wait — if Y is true, then X doesn't hold…"

Decompose sub-problems: "This question actually contains three independent parts: the first is about… the second is about…"

Try different paths: "Let's try approach A first. Hmm, that doesn't work. Switching to approach B…"

Verify underlying assumptions: "The user is asking about A, but they may be assuming B is true — I should verify that…"

Only after this process does Claude produce the formal response — the equivalent of a polished final document from a completed draft, rather than improvised speech.

Where It Helps Most

Extended Thinking isn't universally superior — it shows the most significant impact on specific task types:

Multi-step math and logical reasoning: Problems that build step by step, where any error propagates to the final answer. Extended Thinking lets Claude verify each step before continuing, rather than jumping straight to a conclusion.

Decision problems with conflicting constraints: "Given limited budget, tight timeline, and no compromise on quality, how should this project be executed?" These problems require laying out all conditions before finding a genuine optimum.

Problems requiring nuanced distinction: Legal, ethical, and medical questions often have answers that "sound reasonable on the surface but have hidden flaws." Extended Thinking gives Claude space to identify those flaws rather than defaulting to the first plausible-sounding answer.

Code planning and architecture design: Thinking through structure before writing code is far more efficient than rewriting while coding. Extended Thinking lets Claude work out the architecture before implementing.

You Can See the Thinking — But It Isn't a Performance

A common misconception: Claude displays its thinking process to make users feel it's working hard. Understandable, but incorrect.

The thinking process consumes real computational resources. Longer thinking = more tokens = higher compute cost. Anthropic wouldn't pay real resource costs just for theater.

Think of it like hiring a consultant to analyze a complex problem. Before giving you a final recommendation, they fill a whiteboard with analysis frameworks, assumptions, and reasoning paths. What you see on the whiteboard is their thinking process; the verbal recommendation at the end is the formal response. The whiteboard content isn't decoration — it's the actual tool they used to think clearly.

What This Means for You

Two practical implications for how you use Claude:

First, for complex problems, letting Claude think longer is worth it. If your question involves multiple conditions, requires step-by-step reasoning, or you find Claude's direct answers consistently fuzzy at a key point — try enabling Extended Thinking in Claude.ai (find it in conversation settings). It's slower, but output quality on complex tasks is typically noticeably better.

Second, the thinking process itself is useful reference material. Even if you only use the final response, reading Claude's thinking sometimes reveals where it made an assumption you disagree with. You can then probe that specific point, making the whole conversation more productive.

Diagram
Extended Thinking vs Standard Response: What Happens Inside兩種回應模式的內部流程對比:標準模式的單一生成路徑 vs 延伸思考的草稿→正式回應兩階段架構。 Extended Thinking vs Standard: What Happens Inside Standard Mode Your Question Generate token by token → Response (one pass) ⚠ Complex tasks: direction locked from token 1 — no going back Extended Thinking Mode Your Question Draft Space (Thinking) • Propose → challenge hypothesis • Try path A → fail → try path B • Verify assumptions mid-process based on thinking Formal Response Organized, verified, based on completed draft 👁 Visible (expandable) ✓ This is what you act on Extended Thinking best for: multi-step math · conflicting constraints · nuanced decisions · code architecture Not needed for: simple facts · formatting tasks · creative brainstorming · rapid iteration Claude Me · claude-me.com
Feel free to share. Please credit the source.
Ask a Question
Please enter at least 10 characters
Related Articles
What Is RAG: Why Claude Can't Read Your Company Intranet — And How to Fix That
fundamentals · Jul 02
Why Does Claude Give Different Answers to the Same Question Every Time? The Real Explanation Behind Temperature and Randomness
fundamentals · Jun 27
The Attention Mechanism: Why Transformers Actually Understand What You Say
fundamentals · Jun 20
How an LLM Actually Generates Text: A Real Explanation for Non-Engineers
fundamentals · Jun 17