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
- Machine learning
- Classification
- Regression
- Unsupervised learning — the opposite