惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
V2EX
博客园 - 叶小钗
Last Week in AI
Last Week in AI
Google DeepMind News
Google DeepMind News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC
P
Proofpoint News Feed
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
aimingoo的专栏
aimingoo的专栏
月光博客
月光博客
量子位
A
About on SuperTechFans
Engineering at Meta
Engineering at Meta
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
博客园 - Franky
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
人人都是产品经理
人人都是产品经理
D
DataBreaches.Net
博客园_首页
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Chain-of-Thought Prompting, Explained (with the Research ...
Sungwoo Lee · 2026-06-19 · via DEV Community

Sungwoo Lee

If you've ever typed "let's think step by step" into ChatGPT and watched the answer quality jump, you've already used chain-of-thought prompting without knowing it. That phrase isn't magic — it's a deliberate technique backed by peer-reviewed research.


What It Is

Chain-of-thought (CoT) prompting instructs an AI model to reason through a problem step by step before delivering its final answer. Instead of predicting a response in one leap, the model generates a sequence of intermediate reasoning steps — the "chain of thought" — that leads to the solution.

Why it works comes down to how language models operate: they predict the next token. Without CoT, a model answering a complex problem must compress all reasoning into a single prediction — it can't "work in its head" the way a human uses scratch paper. CoT changes that. Each intermediate step becomes a scaffold that grounds the next, reducing the compounding error that makes AI unreliable on multi-step tasks.

When a model writes "Step 1: identify the variables" before doing algebra, the context window now contains useful intermediate state — and the next token is predicted against something far more constrained than the raw question. The model is, in effect, using its own output as working memory.


Zero-Shot vs Few-Shot CoT

  • Zero-shot CoT needs only a trigger phrase — "Let's think step by step" — no examples. The model reasons from scratch.
  • Few-shot CoT provides 2–5 worked examples that demonstrate the reasoning process before the actual question, constraining the pattern more tightly.

Zero-shot is easier to implement; few-shot is more reliable for specialized or high-stakes tasks where the reasoning format matters.

Dimension Zero-Shot CoT Few-Shot CoT
What you provide Trigger phrase only 2–5 worked examples + trigger
Prompt length Short Longer
Reliability Good for general tasks Higher for specialized tasks
Research basis Kojima et al. (2022) Wei et al. (2022)
API cost Low Higher (examples add tokens)

A concrete before/after: ask a multi-step apple word problem directly and a model may answer "22 apples." Append "Let's think step by step" and it lays out each operation (sell 1/3, receive a delivery, sell half) and lands on the correct 17. Same model, same question — the trigger alone shifts it into step-by-step mode.


The Research Behind It

CoT was formalized by Wei et al. (2022), "Chain-of-Thought Prompting Elicits Reasoning in Large Language Models" (NeurIPS 2022, Google Brain). The headline result: on the GSM8K grade-school math benchmark, CoT pushed 540B PaLM from 57% to 74% accuracy — surpassing fine-tuned models.

Two findings matter for practitioners:

  1. Emergent threshold effect. Below roughly 100B parameters, CoT shows little improvement and can actually hurt by generating confident-sounding wrong chains. Above that threshold, gains are dramatic. This is why CoT matters on GPT-4, Claude 3.5/3.7 Sonnet, and Gemini 1.5/2.0 Pro — not on smaller models.
  2. Self-consistency amplifies CoT. A follow-up technique (Wang et al., 2022) samples multiple reasoning chains and takes a majority vote — improving reliability on tasks with a single correct answer.

The second key paper is Kojima et al. (2022), "Large Language Models are Zero-Shot Reasoners," which showed "Let's think step by step" alone triggers reasoning behavior even without examples — making CoT practical without a library of worked examples per task.


When to Use It — and When to Skip

Use CoT for multi-step math/logic, planning, debugging, argument analysis, decision-making with trade-offs, and research synthesis.

Skip it for simple factual lookups, short creative writing where flow matters, conversational replies, emotional contexts, and high-volume API calls where token cost compounds.

A rule of thumb: if the task is one you'd solve on scratch paper, CoT will help. If it's one you'd answer off the top of your head, CoT just makes the response longer without improving accuracy. Match the technique to the cognitive demand.


How Many Steps?

You generally don't need to specify a count. "Reason through this step by step" lets the model self-determine depth. For more structure, "reason in numbered steps." For very complex problems, add "If any step involves significant uncertainty, flag it explicitly" — this surfaces model uncertainty instead of hiding it in a confident chain.


For the full guide — six copy-ready CoT patterns (universal zero-shot, math/logic few-shot, decision-making, debugging, argument analysis, research synthesis), worked decision examples, and the complete FAQ with sources — I wrote it up here:
https://my-blog.org/tangents/post/chain-of-thought-prompting-explained