Learner’s field guide · grades K–12

From Sand to Agents — K-12 Artificial Intelligence

The whole journey through artificial intelligence, one idea taught for thirteen years — from the first “smart machine” a five-year-old can spot to the AI agents a high-schooler learns to build. Every unit below gives you the big idea and a question worth arguing about at the dinner table.

silicon → chips → machine learning → neural networks → modern LLMs → prompting, caching & agents → ethics, IP, safety & careers

K-2  Smart Machines Around Us

Available now

What is a smart machine? (notice & decide)

Licensing: Included in all licenses.

Notice & decide

U1  Smart Machines Around Us

Some machines just do one thing the same way every time, like a light switch. Others notice the world with sensors and choose what to do — those are the smart machines, and they're all around us.

Discuss

Which machines in your home just follow orders, and which ones seem to notice and decide?

K.AP.1K.CSY.12.AP.12.IC.1
Read the free lesson →

Patterns predict

U2  Patterns Everywhere

A pattern is something that repeats, and once you spot one you can guess what comes next. That everyday guessing is the simplest version of how a smart machine makes a prediction.

Discuss

What pattern in your day helps you predict what happens next?

1.AP.12.AP.11.DA.22.DA.1
Read the free lesson →

Learning from examples

U3  Teach the Machine

Machines learn from the examples we show them, a bit like teaching a friend a new game. Show good, fair examples and it guesses well; show messy or unfair ones and it guesses wrong.

Discuss

If you were teaching a machine to recognize a dog, what examples would you show it — and what might trip it up?

K.AP.12.AP.1K.DA.22.DA.1
Read the free lesson →

Fairness & privacy

U4  Being Fair and Safe with Smart Machines

Smart machines should be fair, keep private things private, and be honest. And people — not the machines — are the ones who decide what's right and set those rules.

Discuss

What is one rule you would give a smart machine so it treats everyone fairly?

K.CYB.22.CYB.2K.CYB.12.CYB.1
Read the free lesson →

3-5  How Computers Think

Available now

From switches to instructions (the machine underneath, gently)

Licensing: Included in School and Division licenses.

On / off switches

U1  Inside the Box: Switches and Signals

Everything a computer does is built from millions of tiny switches that are either on or off. Stack enough of those simple signals together and you can build anything a computer knows how to do.

Discuss

How can something as simple as on and off add up to a whole computer?

3.CSY.14.DA.15.CSY.1

Step-by-step

U2  Algorithms: Recipes a Computer Follows

An algorithm is a set of clear, in-order steps — like a recipe — that a computer follows exactly. Loops repeat steps, conditionals choose between them, and debugging is how you fix the steps that go wrong.

Discuss

Where could one wrong step in your instructions send a computer completely off track?

3.AP.13.AP.34.AP.25.AP.3

Patterns in data

U3  Data, Sorting, and Smart Guesses

Computers sort and search through data to find patterns, and those patterns let them make smart guesses about what you might want or what comes next.

Discuss

When an app suggests a video or a word for you, what pattern in the data do you think it noticed?

3.DA.24.DA.24.CSY.35.DA.3

Where data comes from

U4  Good Data, Fair Results

A computer's guesses are only as good as the data behind them. If the data is one-sided or unfair, the results will be too — so where data comes from really matters.

Discuss

How could the same tool give unfair results just because it learned from unfair data?

3.DA.14.DA.15.DA.33.IC.1

6-8  The Machine Underneath

Available now

Machine learning & neural networks (how it actually learns)

Licensing: Included in School and Division licenses.

Silicon → chips

U1  From Silicon to Chips

Computer chips are built from sand-based silicon shaped into billions of microscopic switches called transistors. Wired into logic gates, those switches are the hardware that does every calculation.

Discuss

How does a handful of on/off switches become a machine that can do math?

6.AP.26.CSY.28.CSY.1

Learning from data

U2  What Machine Learning Really Is

Machine learning means a program learns patterns from many examples instead of being handed every rule. It builds a model from training data, then uses it to handle things it has never seen before.

Discuss

What's the difference between being told a rule and figuring it out from examples?

6.CSY.36.DA.47.DA.28.DA.2

Neurons & weights

U3  Neural Networks by Hand

A neural network is a stack of tiny math machines called neurons: each multiplies its inputs by weights, adds them up, and fires if the total crosses a threshold. Wire many together in layers and the simple pieces add up to something that learns.

Discuss

How can a pile of simple 'multiply, add, and decide' steps add up to a machine that learns?

7.DA.28.DA.18.AP.17.AP.2

Good and fair?

U4  Bias, Data Quality, and Evaluation

A model can look confident and still be wrong. This unit is about measuring whether a model is actually good — and whether it's fair — instead of just trusting it.

Discuss

How would you test whether a smart system works well for everyone, not just some people?

8.DA.26.CSY.36.DA.46.DA.1

Protect & respect data

U5  Security, Privacy, and Digital Citizenship

Powerful systems run on data, so protecting that data and using these tools responsibly is part of the skill. Good digital citizens guard privacy and think about impact before they act.

Discuss

What information about yourself should you keep private online, and why?

6.CYB.17.CYB.18.CYB.18.IC.1

U6  AI at Work

How AI changes industries and jobs — and the real routes into them.

6.IC.67.IC.56.IC.37.IC.38.IC.3

9-12  Modern AI: How It Actually Works

Available now

Modern LLMs, agents, ethics, IP & careers

Licensing: Included in current Division licenses at no extra cost; no re-procurement required.

Meaning as math

U1  Representation: Numbers, Vectors, Embeddings

Computers turn words, images, and sounds into numbers so math can work on meaning. These number-representations, called embeddings, are the foundation modern AI is built on.

Discuss

How could a computer capture the meaning of a word using nothing but numbers?

How models learn

U2  Training Deep Networks

Deep networks learn by making a guess, measuring how wrong it is, and nudging themselves to be a little less wrong — millions of times over. The real trick is learning the pattern without just memorizing the examples.

Discuss

How can you tell if a model has truly learned something or has only memorized the answers?

CSF.AP.5CSF.CSY.4

The modern architecture

U3  Transformers and Attention

Transformers are the design behind today's most powerful AI. Their key idea — attention — lets a model weigh which parts of the input matter most for what it's trying to figure out.

Discuss

Why might paying attention to the right words matter more than reading them in order?

CSF.AP.5

How chatbots work

U4  Large Language Models

Large language models learn from enormous amounts of text and generate language one piece — one token — at a time. From all that scale, surprising new abilities emerge.

Discuss

If a model is only predicting the next word, how can it seem to hold a real conversation?

CSF.CSY.4

Getting good answers

U5  Prompting and Context

How you ask shapes what you get back. Prompting and context are the skills of giving a model clear instructions and the right background so its answers are reliable.

Discuss

What makes one question to an AI get a great answer while another gets nonsense?

Making AI practical

U6  Caching, Cost, and Latency

Running AI at scale costs real money and time. Engineers use techniques like caching to make systems fast and affordable enough for millions of people to use at once.

Discuss

Why might saving and reusing past answers matter as much as getting the answer right?

AI that takes action

U7  Tools and Agents

Agents are models that don't just answer — they act. They use tools, make plans, and work in loops to get real tasks done. These are the 'Agents' the whole curriculum builds toward.

Discuss

What should a machine be allowed to do on its own, and where should a person stay in charge?

Staying accurate

U8  Retrieval and Grounding

Models can sound sure while being wrong. Retrieval connects them to real, current information so their answers are grounded in facts they can point to.

Discuss

How can you tell whether an AI's answer is grounded in real information or just made up?

Fairness at scale

U9  Ethics and Bias at Scale

When one system serves millions of people, small biases cause large harm. This unit weighs fairness, accountability, and who is responsible when AI gets it wrong.

Discuss

When an AI system causes harm at scale, who should be held responsible?

Who owns the work?

U10  Intellectual Property and Authorship

When AI helps make something, who owns it and who gets the credit? This unit looks at intellectual property, attribution, and honest use of AI-assisted work.

Discuss

If you and an AI make something together, who is the author — and how should you say so?

Where this is going

U11  Safety, Society, and AI Careers

The final unit steps back to the big picture: keeping AI safe and aligned with human goals, its effect on society, and the new kinds of jobs and careers it is creating.

Discuss

What kind of job might you want in a world where AI does more of the routine work?

Keep exploring

Grades K–2, 3–5, and 6–8 are ready now; the 9–12 band ships for the 2026–27 school year. Read a complete unit free, or see how every unit maps to Virginia standards.