What is supervised learning? (Explained for kids)

Updated May 8, 2026 · 280 words

Supervised learning is the most common kind of machine learning. It works by giving the AI a bunch of examples with the right answers attached — like flashcards with the answer on the back. The AI learns by guessing, checking, and adjusting.

How to explain it to a 7-year-old

🧒 "You show the computer a picture and say ''this is a cat.'' Show another and say ''this is a dog.'' Do that 50,000 times. Now the computer can tell them apart on its own."

How to explain it to a 14-year-old

🎒 "In supervised learning, every training example is labeled with the correct output. The model learns the function input → output by minimizing the difference between its predictions and the labels. Used for classification (categories) and regression (numbers)."

Examples in the wild

  • 📧 Spam filters (label: spam or not spam)
  • 🐱 Cat-vs-dog classifiers (label: which animal)
  • 💰 House-price predictors (label: actual sale price)

Where this comes up in Chippu

Band C (c1-1) introduces the supervised-learning loop directly.

Related terms

Frequently asked questions

What's the difference between supervised and unsupervised learning?
Supervised has labels (you know the right answer for each example); unsupervised doesn't (the AI finds patterns on its own). Supervised is more common — labels are powerful.
Is supervised learning the same as deep learning?
No. Supervised learning is *how* you train. Deep learning is *what kind of model* you train (neural networks with many layers). You can do supervised learning with deep neural networks or with simpler models.

Read next