Skip to main content
AI Education for Kids
MenuClose
Parent-guided video lesson

AI Algorithms, Part 1: Video Lesson for Kids

An algorithm is a repeatable set of steps for turning an input into an output. A useful algorithm names the goal, the information it can use, each decision or calculation, and when it should stop. Children can evaluate an algorithm by tracing it with normal cases, edge cases, and incorrect inputs instead of assuming that following steps guarantees success.

Age: 9–14Learning goal: Recognize an algorithm as a repeatable set of steps for solving a problem.Parent role: Ask the learner to trace every step aloud and test an edge case.

Watch together

Open this video on YouTube

Viewing note: No chapter timestamps are listed yet. They will be added after the recording is reviewed against the published learning notes.

Corrected lesson notes

Three ideas to carry into the activity

Idea 1

Inputs need boundaries

An algorithm should say what kind of information it expects and what happens when something is missing or invalid.

Idea 2

Order changes results

Moving, skipping, or repeating a step can change the output even when all the same words are present.

Idea 3

Tests expose assumptions

Normal examples show the basic flow; edge cases reveal conditions the designer forgot to handle.

Corrected lesson notes

Start with a familiar non-AI procedure, then add decisions and tests. This makes it easier to distinguish an algorithm from an AI model: every model is used within a larger process, but not every algorithm learns from data.

Vocabulary for the conversation

Algorithm
A repeatable sequence of steps for a task.
Condition
A question that changes which step happens next.
Edge case
An unusual but valid input near a boundary.
Trace
Following steps with one specific input.

Parent discussion prompts

  • What input does this algorithm expect?
  • Where could the steps become ambiguous?
  • Which edge case should we test before trusting the result?
Hands-on extension

Design and debug a snack sorter

  1. Write a goal for sorting sealed snacks without using anyone’s health information.
  2. Create a flowchart using observable package properties such as container type or label color.
  3. Trace three normal items, one missing-label item, and one item that fits two conditions.
  4. Revise the algorithm so it stops safely instead of guessing when information is unclear.

Child reflection question

Which test uncovered the most important hidden assumption?

What to correct or update

Do not define an algorithm only as “computer instructions” or imply that every algorithm is AI. Algorithms can be followed by people, and many are explicit procedures that do not learn from examples.

Limitations and safety

A classroom flowchart is not suitable for decisions about health, identity, school discipline, or safety. Those areas require qualified people, appropriate evidence, and formal safeguards.

Scope: This lesson supports education and family discussion. It is not medical, mental-health, safety, or product advice, and it does not certify any tool as suitable for every child.

Sources and lesson scope

Continue the learning cycle

Use one related guide, record what the child tested, and return to the Watch & Learn library for the next concept.

Find a project to test