beginner
What is AI, anyway?
Programs that learn patterns from examples instead of following hand-coded rules. Today, when people say "AI", they almost always mean LLMs (Large Language Model) .
In 30 seconds
AI is a pattern-matcher , not a thinker. It learns from examples, not from rules.
You've used it for years — face unlock, spam filters, Maps, recommendations, autocomplete.
"AI" today usually means LLMs (Large Language Models) like ChatGPT, Claude, Gemini.
Picture this
Forget the movie-robot picture. The actual mechanism: show a program a million photos labelled cat or dog and it figures out which is which — without anyone writing "cats have pointy ears." It just notices what tends to come with each label. Boring, repetitive, statistical. And under the hood, every AI system you'll meet today is doing some version of that.
You've been using AI for years
On your phone, every day
Face unlock — a model that learned what your face looks like.
Gmail's spam filter — decades-old AI, trained on millions of "spam / not spam" examples.
Maps' arrival times — predicts traffic from past patterns.
Photo / song / shopping recommendations — "people who liked X also liked Y" at scale.
ChatGPT, Claude, Copilot, Gemini
These are LLMs (Large Language Model) — the AI we'll spend most of this course on. They're trained on enormous amounts of text and can read and write language fluently.
AI vs. ML vs. LLM
These get used interchangeably in the news. They're actually nested:
┌─ AI ──────────────────────────────────────────┐
│ Machines doing things that needed │
│ human intelligence. │
│ ┌─ Machine Learning (ML) ──────────────┐ │
│ │ AI that learns from data │ │
│ │ instead of hand-coded rules. │ │
│ │ ┌─ Large Language Models (LLMs) ─┐ │ │
│ │ │ ML trained on huge amounts │ │ │
│ │ │ of text. ChatGPT, Claude, etc. │ │ │
│ │ └────────────────────────────────────┘ │ │
│ └────────────────────────────────────────────┘ │
└──────────────────────────────────────────────────┘
When someone says "AI" in 2026, they usually mean LLMs. For most of this course, "AI" = "LLMs".
AI thinks like a human?
You might think : AI is conscious, has opinions, makes plans, has goals.
Actually : it's pattern-matching at huge scale. There's no inner experience, no opinions, no boredom, no goals beyond the prompt you gave it. The "thinking" you see is what very rich pattern-matching looks like from the outside. Whether that counts as thinking is a philosophy question — but mechanically, no inner monologue is happening.
How AI learns — what "machine learning" actually means
Old-school software was rules . A 1995 spam filter was an engineer writing if email contains "free $$$" then spam. Brittle, exhausting, and useless against patterns nobody thought to hand-code.
ML (Machine Learning) flipped this around. Instead of writing rules, you show a program enough labelled examples that it figures out the rules itself. Photos labelled "cat" or "dog" → it learns to tell cats from dogs. That same idea, scaled up to billions of examples and billions of internal numbers, gives you what we call AI today. LLMs are one specific kind of ML — applied to language.
So how does it figure things out? A learning algorithm nudges the program's internal numbers, billions of times, until its outputs start to match the labels in the data. Those internal numbers are called weights (or parameters ) — there are billions of them in a modern LLM, and together they hold every pattern the model picked up. When training finishes, that giant bag of numbers is the model.
Training and Model — in plain English
Training : showing a program lots of examples until it gets good at a task. Frontier models train for months on thousands of computer chips, costing tens of millions of dollars.
Model : the result of training — a giant file (sometimes hundreds of gigabytes) holding the billions of weights the model adjusted. When you chat with Claude, you're sending a question to a trained model.
① Training done once, takes months, costs tens of millions 🐱 'cat' 🐶 'dog' "the cat sat..." "def f(x):..." "...the news..." billions of examples Adjust numbers billions of times, until outputs match weights file 0.71 -0.34 0.18 -0.62 0.04 0.93 0.27 -0.81 0.55 ② Inference happens every time you chat — fast, cheap, doesn't change the model your prompt "what's 2+2?" frozen model same weights answer "4" ↑ repeat for every user, every prompt, forever — model never changes Training: rare, expensive, produces frozen weights. Inference: cheap, frequent, doesn't change anything.
The model is frozen after training
Once a model ships, its weights don't change from your conversation. ChatGPT didn't get smarter because of what you told it yesterday. "Memory" features in modern chat products are scaffolding around the model — saved notes pasted back into the prompt next time — not the model itself learning. The same weights file is what every user is hitting.
This is why training is so expensive (it happens once) and inference is comparatively cheap (you're just multiplying numbers against a frozen file).
What AI is good at — and what it isn't
✅ Good at ⚠️ Bad at Writing, summarising, translating Exact arithmetic, counting Recognising images, voices, faces Truth without verification Recommendations at scale Real-time information "Good enough" answers, fast Knowing when it doesn't know
The questions everyone has
Does AI 'think'?
Not the way humans do. No inner experience, no opinions, no goals beyond your prompt. It's pattern-matching at huge scale — patterns rich enough that the output looks thoughtful. Whether "thinking" is just rich-enough pattern-matching is a philosophy question.
Will AI take my job? Should I trust its answers?
Jobs : specific tasks within jobs are being automated faster than whole jobs. Translation, basic coding, summarisation — heavily augmented. Physical presence, deep relationships, judgement under ambiguity — slowest to automate. Knowing which is which is the new skill.
Trust : treat AI like a confident intern. Often right, sometimes wrong, rarely uncertain in tone. Verify anything that matters — citations, numbers, legal/medical/financial decisions. (Lesson 6 covers this.)
Is my data safe? Where does AI 'live'?
Data : free chat products may keep conversations to improve future models. Paid/enterprise tiers give stronger guarantees. Simple rule: don't paste anything into a free chatbot you wouldn't put in a Google search box. (Lesson 9 covers this in detail.)
Location : for big models, your question travels over the internet to a data centre and back. Some smaller models run on-device (Apple Intelligence, Pixel features). For Claude / ChatGPT specifically, you're talking to a server.
Try it yourself (no coding, ~5 minutes)
Go to claude.ai or chatgpt.com . Sign up free.
Ask: "Explain how a microwave heats food, like I'm 8 years old."
Then: "Now explain it like I'm a physicist."
Then: "Now explain it as a haiku."
Same model, three different outputs — you changed the prompt , the rest adapted. That's the whole interaction. Lesson 1 explains how it does that.
💬 Now you can explain this to a friend
AI isn't a thinking robot — it's a giant pattern-matcher that learned from examples instead of from rules. Show it a million labelled cat photos and it figures out cats; show it most of the internet and you get ChatGPT. The "thinking" you see is what very rich pattern-matching looks like from the outside.
Check your understanding 1. Most accurate description of an AI 'model'?
A robot that thinks like a human. A program that learned patterns from huge amounts of examples. An expensive computer chip. A person who teaches AI.
2. Which is NOT something AI is reliably good at?
Drafting an email. Translating between languages. Counting the exact letters in a word. Recognising who's in a photo.
3. When ChatGPT answers your question, what's happening?
The AI learns from your question in real time. Your question goes to a previously trained model, which answers from patterns it learned during training. A team of humans answers. It looks up the answer in a database.
Submit answers
Frequently asked questions
Is this AI lesson beginner friendly?
Yes. It introduces AI in plain language first and does not require coding knowledge.
What will I understand after this lesson?
You will understand the difference between AI, ML, and LLMs, plus how modern AI tools are used in real workflows.
Found this useful? Share it with someone learning AI.
Share this course Further reading (no jargon, video-first)
Next: Lesson 1 — What is an LLM, really? Goes one level deeper into the chatbot side.
Related lessons in this track Next →
What is an LLM, really?