Quick tour

Watch the video

Each lesson starts with a short video. It covers the same material as the text — just pick the format you prefer. You can skip it and read instead.

The psychology of the machine: cognitive alignment and information extraction

The hardest part of prompting is not communicating with the AI — it is communicating with your own subconscious. You know what you want, but you cannot see the gaps in your own description because your brain fills them in automatically. This lesson explains how to close that gap.

Lesson 3/5AI~45 min read

Watch

Video version of this lesson


Read

Full lesson text

Why this matters?

In Lesson 1, we learned the rules — task, context, references, evaluate, and iterate. In Lesson 2, we learned the logic — cognitive architectures that structure how the model thinks.

Now we enter the realm of "calibration."

The fundamental problem in high-level prompting is the "legibility gap." You often know what you want. But you cannot see the holes in your own description because your brain fills them in automatically.

The hardest part of prompting is not communicating with the AI — it is communicating with your own subconscious.

This lesson covers how to become an "information architect" — someone who bridges the gap between human intuition and machine execution.


The curse of knowledge: why experts write worse prompts

Why do experts often write worse prompts than beginners?

Because of the "curse of knowledge."

The cognitive blind spot:

When you are an expert in a field — marketing, coding, law — your brain uses "chunks." Complex sets of information compressed into single words. When you tell an AI to "be professional," your brain sees 15 years of experience. The AI sees a statistical average of the word "professional" from the internet.

The word means everything to you. It means almost nothing to the machine.

The alignment diagnostic:

To fix this, treat your prompt as a "protocol" — a set of instructions precise enough for someone who has never worked on your project.

The test is simple:

If you gave your prompt to a brilliant colleague who has never worked on this specific project, could they finish it without asking you a single question?

Usually the answer is no. If they would need to ask "What is the tone?" or "Who is the target?" — your program has a bug.


Semantic anchoring: building a shared language

In Lesson 1, we talked about personas. Now we move to "semantic anchoring."

The problem:

Words like "good," "professional," or "creative" mean different things to different people — and the AI has its own statistical interpretation that may not match yours.

Instead of relying on the AI's pre-existing definitions, you build your own dictionary within the session.

Case study — defining "impactful writing":

If you tell an AI to write "impactfully," it might use exclamation points and "innovative" buzzwords. To prevent this, you define the concept explicitly.

TermThe AI's defaultYour defined protocol
SimpleShort sentences, easy wordsMinimalist, no adverbs, focus on data
ProfessionalCorporate fluff, passive voiceDirect, high-stakes, active voice, zero jargon
CreativeFlowery metaphors, adjectivesUnconventional analogies, non-linear structure

The implementation:

Do not just provide examples. Provide definitions.

"In this thread, a 'high-quality draft' is defined by: 1. No use of the word 'leverage.' 2. A Flesch-Kincaid score of grade 8. 3. Every claim must be followed by a 'why' statement."

Anchoring semantics up front eliminates the guesswork. The AI is not interpreting your words — you are telling it exactly what they mean.

The interview protocol: extracting what you do not know you know

When a task is complex, your brain is the bottleneck. The "interview technique" is the most advanced way to extract context from yourself.

Why the interview works:

Human memory is associative. We remember details when prompted by questions — not when asked to list everything at once. By asking the AI to interview you, you use the machine to find the holes in your own thinking.

The elicitation workflow:

  1. The meta-request: "I want to build a system for [X]. I know I am missing context."
  2. The role assignment: "Act as a senior information architect. Your goal is to extract every hidden assumption from my brain."
  3. The constraint: "Ask me one question at a time. Do not move to the next question until I answer. Look for ambiguities in my goals."

Why this is deeper than Lesson 1:

Lesson 1 assumes you already know the context. Lesson 3 recognizes that you do not know what you do not know.

The interview technique turns the AI into a tool for self-discovery — surfacing assumptions, uncovering blind spots, and documenting the tacit knowledge that lives in your head but never made it into the prompt.


Signal vs. noise: honesty as a technical requirement

Once you have extracted the right context, the next question is how you deliver it. Many users try to "trick" or "motivate" the AI with emotional pleas — "I will tip you $200," "My life depends on this."

From a machine perspective, emotional pleas are noise.

The signal-to-noise ratio (SNR):

Every token you use takes up "attention" in the model's neural network. If you spend 50 tokens talking about your dying grandmother, the model allocates processing power to "grandmother" tokens instead of your task tokens.

Comparison of SNR:

Prompt styleWhat you writeWhere attention goes
Low SNR (emotional)"Please help me, I am so stressed and I need this code to work or I will be fired. I will tip you if it is good!"Stress, firing, tipping, code
High SNR (honest)"I am a developer working on a legacy Python 2.7 system. I need to migrate this function to 3.10 without breaking the API. High-stakes: no unit tests."Python versions, migration, API stability

The technical solution — radical transparency:

Instead of manipulating, state the facts. What is the context? What are the constraints? What makes this high-stakes?

Every token of emotional fluff is a token not spent on the actual task. The cleaner the prompt, the more processing power goes to the problem itself.

The educated layperson: calibrating the persona

Anthropic's research suggests that treating the AI as an "educated layperson" is often superior to assigning an "expert persona."

The overfitting risk:

If you say "Act as a grumpy 18th-century poet," the model might prioritize the "grumpy" and "18th-century" patterns over the actual "poetry" quality. It "overfits" to the stereotype.

The same applies to business personas. "Act as a ruthless Wall Street trader" may produce aggressive language at the expense of analytical depth.

The calibration strategy:

Treat the AI as a highly intelligent person who is context-blind.

Example: "I will provide a document. You possess the intelligence to understand it, but you lack my company's specific values. Here are those values: [list]."

This forces the model to use its general reasoning — its strongest capability — while applying your specific rules as constraints. The result is a system that thinks broadly but acts within your boundaries.


Silent failures: detecting right answers from wrong logic

A "silent failure" occurs when the AI gives you the correct answer but used flawed logic to get there. In an enterprise setting, this is dangerous because it passes surface inspection.

The reasoning diagnostic:

When using models with "thinking" blocks, read the history of the thought — not just the final answer.

Two things to check:

  • Hallucinated logic: Did the model assume a variable existed that was not in the prompt? Did it invent a constraint you never mentioned?
  • Shortcut bias: Did the model give a generic answer because it avoided processing the complex context?

The logic audit prompt:

Add this to any high-stakes request:

"After providing the final answer, perform a logic audit. Identify any assumptions you made during the process that were not explicitly stated in my prompt. List them in a separate block."

A correct answer built on wrong logic is a time bomb. It works until conditions change — and then it fails without warning, because the foundation was never sound.

The meta-skill: turning intuition into specification

The final goal of this lesson: a prompt is not a "wish" — it is a specification.

In the future, prompt engineering will be replaced by system design. The skill is not typing better sentences — it is turning vague human intuition into precise machine instructions.

Human intuitionMachine specification
"Make it look good.""Use a 12pt sans-serif font, 1.5 line spacing, and a minimalist color palette."
"Write a persuasive pitch.""Use the problem-agitation-solution framework. Focus on the cost of inaction."
"Analyze this data.""Identify correlations with a p-value < 0.05 and ignore outliers in the top 1%."

Every gap between what you mean and what you write is a decision the AI makes on its own.

The full stack of cognitive alignment: recognizing the curse of knowledge, anchoring semantics, using the interview protocol to extract context, keeping prompts high-signal, and auditing the model's reasoning for silent failures.

Listen

Audio version of this lesson

PODCASTAUDIO

READY

The psychology of the machine: cognitive alignment and information extraction

00:00 / 22:31

Think

What would you do in these scenarios?

Simulator

1 / 5
Sim_v4.0.exe

The invisible brand voice

A founder asks AI to write 'professional' website copy. The result reads like a corporate annual report — passive voice, jargon, zero personality. The founder says 'that is not what I meant.' What went wrong?


Practice

Test yourself and review key terms

Knowledge check

Q1/8

Why do experts often write worse AI prompts than beginners?

Concepts

Question

Why does the educated layperson approach often outperform expert personas?

Show answer

Answer

It uses the model's strongest capability — general reasoning — while your specific rules provide the guardrails. No character performance to distort the analysis.

1 / 25

Apply

Your action steps for today

  1. 01

    The curse test

    Take your last AI prompt and give it to a colleague without context. Count how many questions they ask before they can complete the task. Each question is a bug in your prompt.

  2. 02

    The anchor experiment

    Pick one vague word you use regularly — "professional," "creative," "engaging." Write a three-line definition of what it means in your context. Use it in a prompt and compare the output.

  3. 03

    The interview flip

    Instead of writing a prompt, ask AI: "I want to build [X]. Interview me to find every hidden assumption. Ask one question at a time." Notice what it surfaces that you forgot.

Finish

You made it through this lesson

How was this lesson?

Thank you!

Your feedback helps us improve. We appreciate the time you took to share your thoughts!

Note

Some examples and details may be simplified to better convey the core idea. Every business is different — adapt these ideas to your specific context and situation.