Teaching AI Foundations in Grades 6-8

Middle schoolers use AI every day. They just do not know it — and what they think they know is usually wrong.

Where Middle School Students Are Starting From

Middle schoolers interact with AI systems constantly: recommendation algorithms on every platform they use, filters on their school accounts, autocomplete on their phones, voice assistants at home. They have strong intuitions about these systems, and most of those intuitions are wrong in specific, teachable ways.

The most common misconceptions at this level are not about technical details — they are about agency and understanding. Students believe that AI systems understand them, know them, and make decisions in their interest. The recommendation algorithm suggested that video because it knew they would like it. The voice assistant understood what they said. The filter blocked that message because it was actually harmful.

Week 6 content gives teachers the tools to correct these misconceptions in a way that is genuinely accurate rather than just reassuring. "The algorithm does not know you — it maximizes a reward signal" is a more useful and more true explanation than "be careful online."

The Three Misconceptions Worth Addressing First

"AI understands me."

The ELIZA story from Topic 6a is a powerful corrective here. DOCTOR convinced people it understood them by doing pattern matching on their sentences and reflecting them back as questions. It understood nothing. Modern systems are more sophisticated, but the basic dynamic — systems that produce understanding-seeming outputs without actual understanding — is the same. Middle schoolers who hear the ELIZA story often have an immediate "wait, is that what my phone is doing?" reaction that opens a productive conversation.

"The algorithm shows me what I want."

Recommendation systems maximize engagement, not satisfaction. The distinction matters enormously. A system that maximizes engagement might learn that emotionally provocative content keeps users on longer — not because that content serves users, but because it triggers responses that look like engagement to the reward signal. Students who understand that recommendation systems have a defined reward signal — and that they chose it — can ask "what is this system optimizing for?" as a standard analytical question.

"AI is neutral."

Supervised learning requires labeled training data, and that data was labeled by humans with particular perspectives, in particular historical contexts, with particular gaps. Every supervised learning system inherits the patterns in its training data — including the biases. The health insurance scenario from the Week 6 SEC page is a good classroom anchor for this: the model learned a real pattern that was nonetheless wrong to act on. That distinction is accessible to middle schoolers and is one of the most important things they can understand about AI systems.

Activities That Work at the Middle School Level

Building a Decision Tree from Data

Give students a small, printed dataset — twenty to thirty rows, three or four attributes, a binary outcome — and ask them to build a decision tree by hand that correctly classifies as many examples as possible. The dataset can be anything that feels relevant: books recommended or not, movies rated high or low, students who passed or struggled on a unit test.

The productive struggle in this activity is the split selection question: which attribute do you ask about first? Students will argue about this, and the arguments are the learning. No formulas are required — just the intuition that a good first question separates the outcomes into clean groups.

The Reward Signal Discussion

Show students a list of possible reward signals for a homework help app: time spent in the app, number of correct answers submitted, self-reported understanding, return visits the following day, teacher-reported improvement. Ask: which one should the app optimize for? Which one is easiest to measure? Are those the same? This discussion introduces the reward signal concept and the gap between what is measurable and what actually matters — without any technical machinery.

The "20 Questions" State Space

The classic game of 20 Questions is a natural demonstration of state spaces and search. Each question narrows the set of possible answers — a binary split on each move. Ask students: which questions are most valuable? (Those that split the remaining possibilities most evenly.) What is the maximum number of things you could identify with 20 binary questions? (220 — over a million.) This connects Topic 6b content to a game students already know.

Connections to the Broader 6-8 CS Curriculum