AIQ AIQ
Generative AI · Lesson 3.2.3

Teaching "Generative AI" to Hacker mode (ages 11–14)

Part of the Generative AI lesson guide. Teaching a different grade? 🌈 Explorer (5–7) · 🔧 Builder (8–10) · ⚡ Architect (15–18)

Hook & Warm-Up

Hacker mode drops the mascot and the softer framing — open like you're setting up a real technical investigation, not a story time. Read the app's hook line directly:

"Generative AI doesn't copy — it learns patterns from millions of examples and creates something new. Let's see how AI writes text, makes images, and more."

Push past the hook before opening the app: "If it's not copying, and it's not truly imagining like a person, what IS it doing mathematically? I want a guess at an actual mechanism, not just 'it's smart.'" Take two or three guesses and don't correct them yet — most classes land somewhere near "it's predicting" without being able to say what's being predicted or how. Tell them the lesson is going to name three genuinely different mechanisms — one for text, and two competing ones for images — and that by the end they should be able to tell all three apart, not just describe "AI" as one blob of technology.

Frame the stakes before diving in: "Every earlier lesson in this world was about AI that decides between things that already exist — is this spam, is this a cat. Today's mechanisms all produce something that has never existed before, one piece at a time. That's a genuinely different kind of computation, and it's worth understanding precisely, because these are the exact systems behind the AI tools showing up in the news right now."

Main Activity

Work through the app's three scenes, but push each one to the actual mechanism named in this age band's quiz — that's the standard to teach to.

Scene 1 — How It Creates ✨:

Pause here and have students summarize the three mechanisms back to you in one sentence each, in their own words, before moving on — this age band can genuinely confuse "autoregressive" and "diffusion" if the distinction isn't checked immediately: one commits to output left-to-right and never revisits it, the other produces a rough whole image and repeatedly refines all of it together.

Scene 2 — Strengths 💪 and Scene 3 — Limitations ⚠️: Move through strengths quickly (speed, unusual concept combinations, low barrier to entry, cheap iteration) — note that "cheap iteration" is itself a direct consequence of the mechanism: because generation is just running the same trained network again with a different random noise seed or sampling path, producing variation #200 costs the same as producing variation #1, unlike a human artist redrawing something from scratch. Then spend real time on limitations, connecting each to the mechanism above rather than treating it as a separate fact to memorize. Hallucinations are a direct consequence of the training objective: a next-token predictor is optimized to produce plausible-sounding continuations, not verified-true ones, so confident and false can coexist in the exact same sentence. Copyright: these models are trained on huge scraped datasets that include copyrighted art and writing, generally without the creators' consent — ownership of the output, and whether the training itself was lawful, are both live legal questions with no settled answer yet. Deepfakes use the same diffusion or GAN techniques applied specifically to a real person's face or voice, built to deceive rather than merely to create. No Understanding: none of these mechanisms include anything that corresponds to comprehension — a diffusion model has no concept of "sunset," only patterns of pixel values that correlate with the training captions that included that word.

Discussion

Quiz Walkthrough

Autoregressive generation means... (Generating output one element at a time, each conditioned on previous / Generating everything at once / Regressing to older models / Automatic regression as is commonly but incorrectly understood)
Generating output one element at a time, each conditioned on previous. This is the exact mechanism behind text models: each new token is predicted using everything generated before it, then fed back in so the next prediction can use it too.
Diffusion models generate images by... (Iteratively denoising from random noise guided by learned score functions / Copying from a database / Pixel-by-pixel painting / Diffusing light)
Iteratively denoising from random noise guided by learned score functions. The model learns, at each noise level, which direction makes a noisy image more realistic, then repeats that nudge many times starting from pure static, steered by the text prompt throughout.
GANs train by... (Playing games / Random generation / A generator creating fakes while a discriminator tries to detect them / Supervised learning)
A generator creating fakes while a discriminator tries to detect them. The two networks improve through direct competition — the generator is pushed to produce more convincing fakes specifically because the discriminator keeps getting better at spotting the current ones.
Temperature in text generation controls... (Training speed / Randomness in token selection — higher = more creative, lower = more predictable / CPU heat / Model size)
Randomness in token selection — higher = more creative, lower = more predictable. At each step the model has a probability for many possible next words; temperature adjusts how much it favors the single most likely word (low temperature, safe and repetitive) versus sampling more freely from less-likely options (high temperature, more varied but also more error-prone).

Wrap-Up & Extension

Close with: "You now know that 'generative AI' isn't one technology — it's at least three different mechanisms wearing the same trench coat: next-token prediction, denoising diffusion, and adversarial generation. Every one of them is a statistical pattern-matcher with zero understanding built in, which is exactly why hallucination, copyright disputes, and deepfakes aren't separate problems — they're the same root cause showing up in text, in ownership law, and in trust."

Extension activity — Mechanism Match-Up: Give small groups four to six real AI tools they may have heard of (for example: ChatGPT, DALL-E or Midjourney, a music generator like Suno, a video generator, a deepfake app, an AI customer-service bot) and have them argue, using only today's vocabulary, which underlying mechanism (autoregressive generation, diffusion, or GAN) each one most likely uses, and what evidence in the tool's behavior supports their guess (for example: "it types out an answer word by word onscreen, which looks like autoregressive generation in action"). Groups present their reasoning, not just their answer — the goal is applying the mechanisms to unfamiliar tools, not recalling a memorized list. This extends the 10–15 minute core lesson into a full period and previews the kind of technical reasoning the Architect-level version of this lesson goes even deeper on.

← Lesson overview ← Neural Networks (Hacker) AI in Healthcare (Hacker) →