Hello —
so glad
you're here.
AI,
properly
explained.
AI in the
classroom.
— Artificial Intelligence explained simply and properly
Today I'll explain how Artificial Intelligence — AI for short — actually works.
Artificial Intelligence from the mathematical foundations to the modern Transformer architecture — structured across seven chapters.
Hi class! This page explains in 7 steps what Artificial Intelligence is — with learning objectives, discussion questions and exercises for class.
Promised: no complicated jargon. You just click your way through step by step.
With terminology, sources and technical depth — for self-learners and developers. Switch back to Simple any time.
Suitable from middle school upward. Tip for the teacher: each chapter has a blue box at the end for discussion or homework.
What is AI
really?
What is AI —
technically
speaking?
What is AI?
A definition
for class.
Imagine someone who has read almost every book in the world. Millions of books, newspapers, letters — just everything.
Artificial Intelligence is an umbrella term for systems that solve tasks normally requiring human intelligence. Today it almost always means Machine Learning — and especially Deep Learning on large neural networks.
AI are computer programs that learn patterns from data and use them to solve tasks — write text, recognise images, translate languages. They aren't thinking beings, but very good pattern-recognisers.
That "person" can then answer questions, write stories or recognise images. Not because they really think, but because they've seen incredibly much.
Current Large Language Models (LLMs) like GPT-4, Claude or Gemini use the Transformer architecture (Vaswani et al., 2017, "Attention Is All You Need"), have billions to trillions of parameters and are trained on corpora with hundreds of billions of tokens.
AI ⊃ Machine Learning ⊃ Deep Learning ⊃ Transformers ⊃ LLMs.
Each inner term is a special case of the outer one.
- You can distinguish AI from normal software.
- You explain the term "Machine Learning" in your own words.
- You understand that AI computes the most likely answer — it doesn't "think".
- AI (Artificial Intelligence): Umbrella term for programs that solve tasks normally requiring human intelligence.
- Machine Learning (ML): Subset of AI in which computers learn from data — instead of being explicitly programmed.
- Algorithm: Clear step-by-step instruction, like a cooking recipe.
- Neural network: Program structure loosely inspired by the wiring of nerve cells.
- Training data: The examples an AI learns from (images, texts, sounds…).
The first AI program Logic Theorist dates from 1956 (Newell & Simon, Carnegie Mellon). AI is therefore older than moon landings, the internet and smartphones — it only really "exploded" around 2012 when data and compute became big enough.
❓ QuizWhich description fits AI best?
Answer C: "A program that learns patterns from examples."
A would be a classic program (e.g. a calculator). B describes a human brain. Only C captures Machine Learning.
Tip for the teacher: Have the class guess the three options first — A: "A computer that thinks like a human." / B: "A collection of nerve cells with electrical impulses." / C: "A program that learns patterns from examples."
- K1 — Knowledge: Pupils name 3 examples of AI in daily life.
- K2 — Comprehension: Pupils explain the difference between "classical program" vs "Machine Learning" in their own words.
- K3 — Application: Pupils classify everyday applications into one of the two categories.
- K4 — Analysis: Pupils discuss what distinguishes AI from human thinking.
- 2 min: Read the lead text aloud together.
- 3 min: Collect key terms on the board (with pupil guesses).
- 2 min: "Did you know…" fact — gather quick reactions.
- 5 min: Quiz in small groups (2-3 pupils). Note guess before revealing.
- 3 min: Discussion: "Impressive vs. concerning".
Question: "What do you find impressive about AI? What worries you?"
Expected pupil answers:
- Impressive: "Recognises faces", "Translates instantly", "Can draw pictures"
- Worrying: "Takes jobs", "Makes fake news", "Knows everything about me"
Follow-up question: "Which concern is justified, which is exaggerated? Argue your case."
❓ Quiz solution with pedagogical explanationAnswer: C — "A program that learns patterns from examples."
Why this question matters: Pupils often confuse AI with a "digital brain" (option B) or with "very clever software" (no learning). The quiz checks whether the core concept "learning from data" was understood.
Common misconceptions:
- "AI is like a human, just digital" → No, no consciousness.
- "AI knows everything" → No, only what was in the training data.
- "AI thinks" → No, it computes probabilities.
- "Is Alexa AI?" — Yes, a speech AI (see chapter 4).
- "Can AI have feelings?" — No. It can simulate emotion but not experience it.
- "Will AI replace us all?" — Some tasks yes; this deserves its own discussion (chapters 6+7).
- "What's the difference from robots?" — Robot = physical machine, AI = software. Some robots use AI, many don't.
- Define "AI" in at most 2 sentences.
- Name 3 examples of AI in your daily life.
- Explain the difference between a calculator and an AI.
- What does "Machine Learning" mean? Explain with one example.
- Which concern about AI matters most to you personally? Argue your case.
Model answer for task 1: "AI is a computer program that learns patterns from data and uses them to solve tasks (e.g. write text, recognise images)."
✅ Measuring learning success- Quick check (1 min): "Who can explain AI in 10 words?" (Hands up)
- Homework review: Did pupils name 5 different everyday examples?
- Depth of understanding: Can pupils name the difference "programmed" vs "trained"?
How does an
AI learn?
How is a model
trained?
How does AI learn?
Like you.
Quite like a small child. You show the child a cat often enough, and eventually it recognises cats everywhere — even in a book or as a sculpture.
Modern Machine Learning typically runs in three phases: Pre-Training (unsupervised, huge corpora), Supervised Fine-Tuning (curated examples) and RLHF — Reinforcement Learning from Human Feedback for safety and alignment.
When you cram vocabulary, you repeat words until they stick. An AI does the same — only with billions of examples instead of 30 words.
For an AI it's the same — only it looks at millions of images until it knows for sure.
Mathematically the network adjusts its parameters via Backpropagation and Gradient Descent so that a loss function (e.g. Cross-Entropy) is minimised. Training large models costs millions of dollars in GPU/TPU hours today.
- You understand that an AI is not programmed, but trained.
- You explain why an AI needs millions of examples while a child needs only a few.
- You name the three training phases: Pre-Training, Fine-Tuning, RLHF.
- Training: The AI's learning process — many examples, many repetitions.
- Parameter: The "tuning knobs" inside the network. GPT-4 is estimated to have
1,700,000,000,000of them. - Loss: Measure of how wrong the AI still is. Goal: minimise loss.
- Overfitting: When the AI memorises examples instead of generalising. Like a student who knows answers but doesn't understand them.
- RLHF: "Reinforcement Learning from Human Feedback" — humans rate AI answers, the AI learns what is helpful/polite.
GPT-4 has an estimated 1.7 trillion parameters. If looking at each parameter took one second, you'd need ~54,000 years. Training reportedly cost OpenAI more than USD 100 million in compute.
❓ QuizAn AI was trained only on cats and dogs. Can it recognise a banana?
Answer: No — and this is important to understand.
An AI only knows what it has seen in training. A banana would either be "weird cat" or "weird dog" to it. It would confidently give a wrong answer — and that's the core of many AI problems: it doesn't know what it doesn't know.
- K1: Pupils name the 3 training phases (Pre-Training, Fine-Tuning, RLHF).
- K2: Pupils explain why an AI needs more examples than a child.
- K3: Pupils simulate AI learning with the cat trainer and reflect on the result.
- K5 — Evaluation: Pupils judge whether "statistics = learning".
- 3 min: Read lead aloud + comparison "cramming vocabulary".
- 5 min: Demonstrate the cat trainer on the projector (teacher clicks).
- 5 min: Pupils try it themselves in pairs.
- 5 min: Quiz + explanation of the banana example.
- 2 min: Transition to discussion "Learning vs. statistics".
Main question: "After training, an AI can't learn from new examples without being retrained entirely. Is what it does really learning?"
Teacher arguments to fuel debate:
- For "learning": "It adapts to examples. So do we."
- Against "learning": "We learn from experience. AI learns from statistics. Different."
- Middle ground: "A new kind of learning, different from human learning."
Answer: NO — the AI would confidently say "weird cat" or "weird dog".
Why this question is crucial: It exposes the fundamental AI problem: AI doesn't know what it doesn't know. Unlike humans who can say "I don't know", an AI always gives an answer — even when it's wrong.
Application: For every AI answer on a new topic → check critically!
🤔 Anticipated pupil questions- "How many images has ChatGPT seen?" — Estimates point to 100+ million images in multimodal models, plus hundreds of billions of words.
- "Can AIs train each other?" — Yes, this is an active research direction (synthetic data).
- "Why is it so expensive?" — Data centres with tens of thousands of specialised chips (GPU/TPU). Power + hardware = millions.
- "Can I train an AI myself?" — Yes, with Teachable Machine in the browser (see closing box).
- Name the 3 training phases of a modern language AI.
- What happens during pre-training? Explain in one sentence.
- Why does an AI need millions of examples when a child needs 5?
- Imagine: An AI was trained only on dogs. What problems arise?
- Which of the three phases do you think matters most? Argue your case.
Model answer for task 3: AIs detect statistics in pixels; children combine prior experience ("four legs, fur, tail = animal") with the new example.
✅ Measuring learning success- Practice check: Could pupils solve the cat trainer correctly? Do they understand what's happening?
- Oral explanation: Can they articulate the "programmed vs trained" difference?
- Transfer: Can they apply the banana-quiz to other domains? (e.g. "AI for skin-cancer detection — what if it misclassifies a freckle?")
- Forward pass: image → layers → prediction "cat: 0.82"
- Compute loss: difference vs ground truth (label "cat: 1.0")
- Backward pass: gradient of the loss w.r.t. each weight
- Weight update:
w ← w − η·∇L
You're probably
already using it.
AI in production:
where it hides.
AI in your daily life —
already there.
AI hides inside things you use every day. Tap a card to learn more.
Behind everyday apps sit highly specialised ML systems. Tap for the technical classification.
Every smartphone, every stream, every search — AI is everywhere, but invisible. Tap the cards and discover where it hides.
Car navigation
It finds the fastest route, knows traffic and suggests detours.
The weather app
Tells you whether tomorrow will be sunny or you need an umbrella.
Photos on your phone
You search "beach" and find all beach photos — without having sorted them.
Alexa & Siri
You speak, it understands and replies — like a helper in the house.
Translation
Google Translate turns English into Italian, Turkish or German in an instant.
Spam in your inbox
Ads and phishing emails land in trash automatically — you don't do that yourself.
Search engines
Google sorts billions of web pages so the most helpful is on top — and now also summarises directly.
Recommendations
Netflix, Spotify and YouTube suggest movies, songs or videos you might really like.
You recognise AI in familiar everyday applications and understand that "AI" often works invisibly in the background.
💡 Did you know…Spotify uses over 100 signals for your daily mix playlist: what you listen to, skip, when you pause, time of day, even the weather. Netflix computes recommendations for 247 million subscribers every day.
❓ QuizWhich of these apps uses NO AI?
Answer: A simple calculator.
Weather app, photo search, spam filter, translation — all use AI. A calculator runs fixed mathematical operations — no learning, no pattern recognition. But: scientific calculators with plot functions or step-by-step explanations may use AI!
- K2: Pupils explain where AI works visibly/invisibly in daily life.
- K4 — Analysis: Pupils analyse what data an AI needs.
- K6 — Evaluation: Pupils judge which of these AIs are indispensable / dispensable.
- 3 min: Introduce all 8 cards briefly (everyone clicks).
- 5 min: Form groups of 4, each picks 1 card.
- 5 min: Group research on the chosen card.
- 10 min: 2-minute presentations from each group.
- 2 min: Quiz + short reflection.
Question: "Which of these 8 AIs would you miss, which not?"
Expected "would miss": Maps/navigation, photo search, voice assistants (older users), translation (language learners)
Expected "wouldn't care": Recommendations (some prefer self-discovery), spam filter (invisible)
Follow-up question: "What would happen without this AI? Who would do it instead?"
❓ Quiz solution with explanationAnswer: A simple calculator — not AI.
Why this matters: Helps pupils distinguish AI from "software with algorithms". Not every "intelligent app" is AI in the narrow sense.
Extended discussion: "Which apps on your phone likely use AI, which don't? Argue your case."
🤔 Anticipated pupil questions- "Are all games AI now?" — No. Chess/Go AIs yes, but most console/mobile games use fixed algorithms for "enemies".
- "Is Google Maps an AI?" — Yes, the routing uses AI for traffic prediction.
- "How does Spotify make money from recommendations?" — Listening time + subscriptions. Better recommendations = longer use = more money.
Per group of 4, pick one of the 8 cards:
- What data does this AI need to function?
- Which company is behind it, and who profits?
- Where was the biggest technical hurdle in its development?
- What if this AI didn't exist? (Describe a day without it.)
- Name one risk or concern about this AI.
- Presentation quality: Was it technically correct + clearly explained?
- Reflection depth: Did the group justify a "would miss" statement?
- Homework: The 9th AI application — creative, correctly recognised?
How you talk
to an AI.
Prompt Engineering —
how you steer the model.
Asking AI —
the art of the prompt.
You just type a question — like texting someone. Tap a question below and see what happens.
A prompt is the input to the model. The more precisely role, context and output format are defined, the more reproducible the answer. Try the examples.
A good prompt is like a good research question in the library. The more precise you ask, the better the answer. Try the examples below.
- You formulate structured prompts with the 5 building blocks: role, context, task, format, examples.
- You recognise why "I need help" gets less than a precise prompt.
- You judge when AI use in school is sensible and when it is unfair.
- Prompt: Your input to the AI — a question, task or instruction.
- Token: Smallest unit the AI processes. "Banana" is 1 token, "Hippopotomonstrosesquipedaliophobia" is many.
- Context window: How much text the AI can see at once. GPT-4 handles ~128,000 tokens — about a thick book.
- Few-Shot: Including 1–3 examples in your prompt lets the AI learn the pattern for this answer.
- System prompt: Instruction setting the AI's behaviour for the whole conversation ("You are a friendly maths tutor…").
Write a [FORMAT] about [TOPIC] for [AUDIENCE]. Style: [STYLE]. Length: [LENGTH]. Pay special attention to: [IMPORTANT].
Example: "Write a presentation about photosynthesis for an 8th-grade class. Style: simple, vivid. Length: 5 sentences. Pay special attention to: the role of chlorophyll."
💡 Did you know…ChatGPT processes more than 100 million requests per day. If each took 30 seconds, that would be roughly 95 years of waiting time — all in parallel on huge data centres.
❓ QuizWhich prompt gets the best result?
Answer: "You are a geography teacher for a 7th-grade class. Explain the water cycle in 4 steps with one example each. Format: numbered list."
Why? This prompt has role (geography teacher), audience (7th grade), task (explain), format (numbered list) and even structure (4 steps with an example).
"Explain the water cycle to me" would be OK but unstructured. "Help me with geography" would be vague — the AI has to guess what you want.
- K3 — Application: Pupils formulate working prompts with all 5 building blocks.
- K4: Pupils analyse why vague prompts produce poor answers.
- K5 — Evaluation: Pupils ethically evaluate AI use in homework.
- 3 min: Explain the 5 prompt building blocks (Role/Context/Task/Format/Examples).
- 5 min: Try a sample chat on the projector — bad prompt vs. good prompt.
- 10 min: Class experiment — every pupil formulates a prompt.
- 5 min: Discussion on fair AI use in school.
Question: "Should letting an AI write homework count as cheating?"
Teacher arguments for structured debate:
- Pro cheating: "The work was the AI's, not yours → no own effort."
- Pro not cheating: "You had to write the prompt — that's also work."
- Middle ground: "AI as a brainstorming tool: OK. AI writing the whole essay: not OK."
Concrete class-rule discussion: "If you could use AI, what should be allowed, what not?"
❓ Quiz solution with explanationAnswer: The structured prompt with role (teacher), audience (7th grade), task (explain), format (list), structure (4 steps) is best.
Why: AI understands clear expectations and gives focused answers. Vague prompts → AI guesses what you want → imprecise answers.
Demonstration: Give the class the bad + good prompt — try both — show the difference.
🤔 Anticipated pupil questions- "Can I use AI for my presentation?" — Clarify class rules. Generally: AI as research OK, AI as writer problematic.
- "How does the teacher know if it was AI?" — Hard to detect. Trust + fair rules > playing detective.
- "Can AI remember conversations from yesterday?" — Within the same session yes, persistently usually no (ChatGPT with Memory feature: yes).
- "Will AI make teachers obsolete?" — Very unlikely. AI can explain but cannot educate.
Topic (pick one): Photosynthesis / French Revolution / Pythagoras / Hamlet / Climate change
- Formulate a structured prompt using all 5 building blocks in 2 minutes.
- Swap prompts with your neighbour — whose is the most precise?
- Try (with teacher account) the 2-3 best prompts.
- Compare the answers — which produced the most useful output?
- Reflection: What made the difference?
Teacher preparation: Have a good + bad prompt ready for the demo.
✅ Measuring learning success- Practice test: Could pupils formulate a 5-block prompt?
- Reflection: Do they understand why structure improves results?
- Ethical maturity: Can they articulate their own position on fair AI use?
- Rolle: „Du bist ein erfahrener Lektor…“
- Context: background, audience, prior knowledge
- Task: precisely what should be done
- Format: length, style, structure (e.g. Markdown table)
- Examples (Few-Shot): 1–3 sample answers
It's smart —
but not perfect.
Limits & risks
of current LLMs.
AI has limits —
and you should know them.
Important to know: an AI is not a human. It has no own thoughts or feelings. It can also be wrong.
Despite impressive capabilities there are fundamental limitations — anyone working with LLMs should know them.
AI is no magic teacher and no oracle. It makes mistakes, has biases, and often doesn't know current events. Critical thinking stays more important than ever.
No real feelings
No consciousness
Even if it sounds friendly — it isn't really happy, isn't sad. It just pretends.
LLMs simulate empathic language but have no experience, no self-model, no intrinsic goals. Anthropomorphising is tempting — and misleading.
It makes mistakes
Hallucinations
Sometimes it says things very confidently that are simply wrong. For important stuff, double-check.
Plausible-sounding but factually wrong outputs. Mitigation: RAG (retrieval), citation guards, lower temperature, output verification via tools.
Doesn't know the future
Knowledge Cutoff
It can't look into the future. Lottery numbers, fortune-telling or "what happens tomorrow" — it doesn't know.
Training data has a cutoff date. Current events require tool-use (web search, APIs) or retrieval. Without web access the model is "frozen".
Bias & distortion
Training data reflects societal biases. Gender, origin, occupation stereotypes — without active mitigation the model reproduces them.
Privacy
Inputs may — depending on the provider — be used for training. No secrets, no PII (names, addresses, credentials) into unknown models.
- You name five concrete limitations of current AI systems.
- You recognise a hallucination when you see one.
- You understand why source criticism becomes more important in the AI age, not less.
- Hallucination: A plausible-sounding but false AI statement. It doesn't know it's lying — it computes the most likely answer.
- Knowledge Cutoff: The cutoff date of training data. Events after that are unknown to the AI.
- Bias: When the AI inherits prejudices from training data.
- Deepfake: AI-generated fake photos, audio or video.
USA 2023: Lawyer Steven Schwartz filed a court brief citing 6 court rulings — all invented by ChatGPT. The judge fined him USD 5,000 plus a professional reputation hit. When asked, ChatGPT had even assured him the cases were real — a textbook hallucination.
💡 Did you know…Hallucinations occur in tests of large AI models in up to 15-25 % of answers — even with the best 2024 models. For specialty fields (law, medicine, rare facts) even higher.
❓ QuizAn AI says: "Napoleon died in 1822 in Vienna." What do you do?
Answer: Check sources!
This statement is wrong. Napoleon died in 1821 on St. Helena. A hallucination can be a single wrong detail — year wrong, place wrong, both wrong. For any fact you don't already know: search engine + reliable source (encyclopaedia, official website). AI can be the start of your research, never the end.
- K1: Pupils name 5 limits of current AI.
- K3: Pupils recognise a hallucination in a live test.
- K4: Pupils analyse the Lawyer Schwartz case.
- K5: Pupils develop their own verification strategies.
- 3 min: Read lead + explain terms Hallucination / Knowledge-Cutoff / Bias.
- 5 min: Discuss case study Lawyer Schwartz — consequences!
- 7 min: AI fact-check exercise — class asks a question, verifies result.
- 5 min: Discussion "3 dangerous areas".
Main question: "Find 3 concrete areas where AI hallucinations could become dangerous."
Expected pupil answers:
- Medicine (wrong diagnosis, wrong drug dose)
- Law (lawyer example — fake rulings cited)
- History/School knowledge (homework — wrong facts)
- News (fake-news amplification)
- Finance (wrong investment tips)
- Relationships (wrong advice on life questions)
Follow-up question: "What should a law say about this?"
⚠️ Deepening the Lawyer Schwartz caseBackground (for teachers): 2023 in New York. Steven Schwartz, a lawyer for 30 years, used ChatGPT for an appeal case. ChatGPT "invented" 6 similar court rulings with case numbers, dates, and citations — all plausible-sounding, none real. Schwartz filed them. Opposing counsel could find none of the cases. Fine: USD 5,000 + public reprimand.
Teacher question for depth: "Could this have happened to any of us? How do you protect yourselves from this?"
❓ Quiz solution with explanationAnswer: Check sources — the claim "Napoleon died in 1822 in Vienna" is false (he died in 1821 on St. Helena).
Why this question is exemplary:
- Sounds plausible — year and place are "close".
- Anyone not paying attention adopts it — and passes it on.
- That's hallucination in small form — and it happens millions of times daily.
- "Why doesn't AI just say 'don't know'?" — It's trained to always provide an answer. Some newer models learn to say "I don't know", but rarely.
- "Will AI ever be perfect?" — Unlikely. Humans make mistakes too — AI gets better with more data but isn't error-free.
- "Can hallucinations be prevented entirely?" — Reduced yes (RAG, low temperature, citation checks). Prevented entirely: no.
- "What if AI lies on purpose?" — Currently: not intentional. Future: a key AI Safety research question.
Task: Ask an AI a specific question. Verify the answer.
- Pick a topic you have prior knowledge of (e.g. your town, favourite club).
- Formulate a very specific question (year, person, place).
- Write down the AI's answer verbatim.
- Verify with Wikipedia or an official website.
- Note: Correct / Hallucination / Partially correct?
Teacher tip: Let the class gather experience — typically several hallucinations appear, making the lesson memorable.
✅ Measuring learning success- Understanding: Can pupils list 3 AI limits?
- Practice: Did they recognise a hallucination?
- Transfer: Would they automatically verify AI answers in homework?
You don't have to
be afraid.
Working with AI
responsibly.
Four rules
for your
AI daily life.
AI is a tool — like the phone or the car once was. New and unfamiliar, but essentially harmless.
Four principles for working productively with modern AI systems — beyond hype and panic.
You will be the first generation for whom AI in daily life is completely natural. What you learn now will shape you for a lifetime.
- Don't share anything personal — no bank data, no passwords.
- Don't believe everything blindly that it says. For important things: ask back.
- Just try it out — you can't break anything.
- Ask family for help when something feels off.
- No private data into AI — no addresses, passwords, school logins, no first names of classmates.
- Don't believe blindly — AI makes mistakes. For homework/presentations: always cross-check with real sources.
- Keep your own thinking — AI is a tool, not a thinker. If you copy everything, you learn nothing.
- Talk to the teacher if something feels off or you're unsure whether AI use is allowed.
- Data hygiene: no PII, secrets or credentials into unknown models.
- Verification: always double-check fact questions. Hallucinations often sound convincing.
- Iterate: first output is raw material. Ask back, rephrase, combine.
- Know tool-use: RAG, web search, code execution significantly raise output quality.
- Compare models: GPT-4, Claude, Gemini, LLaMA, Mistral — each has strengths.
But now you understand it — and that's half the battle."
🍎 For teachers: classroom kit
This page can be used as a double lesson (90 min) or a weekly module (3 × 50 min). Recommended from grade 7 (≈ age 13). Materials are free to use under CC BY 4.0 — please credit "Webagentur Hochmeir e.U. (webhoch.com)".
📦 Full printable Teacher Pack: 6 worksheets (with answer keys), class test + grading rubric, 18 homework tasks in 3 difficulty tiers, parent letter template, curriculum overview. → Open Teacher Pack →
📅 Suggested double lesson (90 min)
- 10 min — Opening: Class opens the page, everyone clicks through chapters 1 + 2. Brainstorm on board: "Where do you encounter AI?"
- 15 min — Working: Chapter 3 (cat trainer) together, read the learning-objective box aloud.
- 20 min — Deepening: Chapter 4 (8 everyday cards) — group work (see schools box).
- 15 min — Practice: Chapter 5 — class formulates their own prompts (see template).
- 15 min — Reflection: Chapter 6 + case study "Lawyer Schwartz". Discuss: when can AI help, when not?
- 15 min — Close: Chapter 7 — write four rules on the board. Homework: find a 9th AI application.
🎯 Assessing learning
- Quiz boxes in every chapter — instant self-check.
- Oral exam: "Explain AI to your grandparents in 1 minute."
- Written assignment: One-page essay: "How will AI change my life in 10 years?" Compare ratings with and without AI help.
📚 Cross-curricular themes
- English/German: Debate: "AI in school — curse or blessing?"
- History: Industrial Revolution → Automation → AI as the next stage
- Ethics/Religion: What distinguishes humans from machines?
- Maths: Probability theory as the basis of "machine learning"
- Computer Science: Own mini AI project (e.g. image classification with Google Teachable Machine)
🔗 Further resources for the class
- Teachable Machine — free in-browser AI training tool
- Elements of AI — free online course
- 3Blue1Brown — Neural Networks (YouTube, mathematical, grade 9+)
⚠️ Important notes for classroom AI use
- AI tools (ChatGPT, Claude, Gemini) often have an age limit 13+/16+/18+. Please check the terms!
- Pupil data must never be entered into AI — no names, addresses, school emails.
- For homework with AI: agree clear class rules in advance (e.g. "AI as research tool OK, as essay writer no").
- „Attention Is All You Need“ – Vaswani et al., 2017 (arxiv.org/abs/1706.03762)
- Anthropic Research – anthropic.com/research
- Hugging Face Course – huggingface.co/learn
- 3Blue1Brown: Neural Networks – YouTube series for visual learners
Frequently asked questions
Here you'll find the most important AI questions again, compact for reference.
Quick reference to the most important AI topics. Answers are structured in FAQPage schema for search engines and AI assistants.