Chapters — How AI Actually Thinks
LLM Fundamentals·Advanced·7 min read·Sep 5, 2026

Where It Helps, and Where It Doesn't

Putting the whole picture together: what a next-token guessing machine is genuinely good at, where it struggles, and how the other two guides fit in.

Everything so far, in one place

You now have the whole shape of it: it guesses the next token, one at a time, based on patterns learned from an enormous amount of text (chapters 1 and 2). Words become numbers on a map of meaning so those patterns can be worked with mathematically (chapter 3). Attention lets it weigh which earlier words actually matter for the current guess (chapter 4), within the limited window of text it can see at once (chapter 5), choosing between safe and adventurous guesses depending on a setting called temperature (chapter 6). It has no built-in fact-checker, so a confident-sounding wrong answer is always possible (chapter 7), and making it bigger sharpens its guessing without changing any of that underlying shape (chapter 8).

Put together, that explains both what it's genuinely good at and where it genuinely struggles, without needing to treat either one as mysterious.

What it's actually good at

Anything that's fundamentally about language and pattern-completion tends to be a strong fit: writing and rewriting text, summarizing something long into something short, explaining a concept in a different way than it was first explained, translating between styles or languages, and generating a first draft of almost anything. These all reduce, at some level, to "produce plausible, well-formed text given a pattern to continue," which is exactly the thing a guessing machine trained on an enormous amount of writing gets very good at.

Where it genuinely struggles

Precise, multi-step arithmetic
It's guessing plausible-looking numbers, not running a calculator. Small arithmetic mistakes can slip through even when everything else about the answer is fluent and confident.
Facts beyond its training, or that changed since
It has no live connection to the world by default. Anything it wasn't shown text about, it can only guess at, fluently.
Guaranteed logical correctness on hard multi-step problems
It's very good at patterns that look like sound reasoning, which isn't quite the same guarantee as reasoning that has been checked step by step.

How the other two guides close these gaps

None of these limitations mean the underlying idea is weak; they mean a plain guessing machine, used alone, has a ceiling. The other two guides in this series are both, in different ways, about raising that ceiling without changing what's happening inside the model itself.

Prompt Craft, the free guide to prompt engineering, is about steering the guessing well: giving it enough context, structure, and clarity that its very good instincts land on the answer you actually wanted, rather than a plausible-sounding one that missed your intent.

The Connection Layer, the free guide to MCP, is about giving it something better than a guess to work from: real tools it can call and real data it can read, so that instead of guessing what today's number is or what a document says, it can look. A guessing machine handed the actual answer doesn't need to guess.

The whole picture

A language model is a remarkably capable guessing machine, not a database, not a calculator, and not a mind that reasons the way you do. Understood that way, its strengths stop looking magical and its limitations stop looking like bugs. Both are just consequences of what it fundamentally is.

Part of a free guide

How AI Actually Thinks

A first-principles guide to what's really happening inside a large language model, built from simple analogies up to the real mechanics.

Browse All Guides →