---
id: what-is-ai
lang: en
title: "What is AI?"
seoTitle: "What is AI? A plain-English guide"
description: "A plain-language guide to what AI really is, the AI you already use every day, and what is coming next. No jargon, no maths, made for busy professionals."
part: foundations
partTitle: "Foundations"
partOrder: 1
order: 1
level: Beginner
durationMinutes: 8
outcome: "Explain, in plain words, what AI is, spot the AI you already use every day, and picture where it is heading."
summary: "AI is software that learns patterns from examples instead of following hand-written rules. You already use it daily: face unlock, spam filters, Maps, autocorrect."
draft: false
updated: "2026-07-26"
furtherReading:
  - title: "Elements of AI"
    url: "https://www.elementsofai.com/"
    note: "a free, no-maths intro course from the University of Helsinki, taken by over a million people."
  - title: "Introduction to Generative AI (Google Skills)"
    url: "https://www.skills.google/paths/118"
    note: "a short beginner path on what generative AI is and how it works."
  - title: "Artificial intelligence (Wikipedia)"
    url: "https://en.wikipedia.org/wiki/Artificial_intelligence"
    note: "a broad, well-sourced overview to go deeper."
  - title: "Machine learning (Wikipedia)"
    url: "https://en.wikipedia.org/wiki/Machine_learning"
    note: "the 'learning from examples' idea in more detail."
keywords:
  - what is AI
  - artificial intelligence meaning
  - AI explained
  - AI examples
  - machine learning
  - generative AI
  - AI for business
quiz:
  intro: "Four quick questions. Ace all four and the next lesson unlocks."
  passScore: 4
  questions:
    - q: "In plain words, what makes something \"AI\" the way we mean it today?"
      options:
        - "A human wrote out every rule it follows, step by step"
        - "Software that learns patterns from lots of examples, instead of being told every rule"
        - "Any computer that runs fast"
        - "A robot with arms and legs"
      answer: 1
      explain: "That is the whole idea. Modern AI learns patterns from examples rather than following rules a person typed out by hand."
    - q: "Netflix suggesting what to watch next, your phone unlocking with your face, the spam folder. What do these have in common?"
      options:
        - "They are all science fiction"
        - "They are all AI you already use, probably without noticing"
        - "They only work on expensive phones"
        - "They are all the same app"
      answer: 1
      explain: "All three are everyday AI. You have been using it for years, quietly, without calling it that."
    - q: "How does generative AI (like Claude) differ from the AI behind a spam filter?"
      options:
        - "It is slower"
        - "It makes new things (text, images, code) rather than just sorting or scoring what already exists"
        - "It never makes mistakes"
        - "It does not use data at all"
      answer: 1
      explain: "Generative AI creates. The spam filter sorts. That knack for making new things is why this wave feels so different."
    - q: "Which of these best describes how the terms fit together?"
      options:
        - "Machine learning contains AI contains generative AI"
        - "They mean exactly the same thing"
        - "AI is the big circle; machine learning sits inside it; generative AI sits inside that"
        - "Generative AI is the big circle and AI is a small part of it"
      answer: 2
      explain: "Think of nested circles: AI is the widest, machine learning is one way to do AI, and generative AI is one kind of machine learning."
  pass:
    badge: "Perfect score"
    title: "Nice. You can see the machine now."
    body: "Full marks. You have spotted the AI hiding in your day and you know what the words mean. Next up: a peek under the hood at how generative AI actually works."
  retry: "Check the marked answers and give it another go. You've got this."
---

> **Level:** Beginner · **Reading time:** ~8 min
>
> **What you'll be able to do:** explain, in plain words, what AI is, spot the AI you already lean on every day, and picture where it is heading.

You have probably used AI a dozen times today, and called it none of those times "AI". You unlocked your phone with your face. Your inbox quietly binned three junk emails before you saw them. Maps sent you a different way to work because a lorry had jackknifed on the ring road. None of that felt like the future. It felt like Tuesday.

That is the first thing to know about AI: **most of it is invisible**, and most of it is already here. The chatbots grab the headlines, but AI has been doing quiet, useful work in your pocket for years. This lesson is about seeing it clearly: what the word actually means, where it is already helping you, and what is coming next.

## What "AI" actually means

Strip away the hype and there is one simple idea underneath.

**Old software follows rules a person wrote.** A human sits down and types out every step: *if the total is over 100, apply the discount; if the date is past due, flag it red.* The computer does exactly what it is told, no more, no less. This runs the world, and it is not AI. It cannot handle anything nobody thought to write a rule for.

**AI learns patterns from examples instead.** Nobody can write a rule for "is this a photo of a cat". Where would you even start, whiskers? So we flip it around. Show the software a few million labelled photos, let it work out for itself what "cat" tends to look like, and it gets good at spotting cats it has never seen before. It was never told the rule. It *learned* the pattern.

That is the whole trick, and it is worth saying plainly: **AI is software that learns from examples rather than being handed every rule.** Everything else is detail. You do not need maths to get this. You have done the same thing your whole life: you know a friend's handwriting without ever writing down a rule for it.

<figure class="lesson-svg" aria-labelledby="rl-title">
<svg viewBox="0 0 640 340" width="100%" height="auto" role="img" aria-labelledby="rl-title rl-desc" xmlns="http://www.w3.org/2000/svg" font-family="Inter, system-ui, sans-serif">
<title id="rl-title">Old software follows rules; AI learns from examples</title>
<desc id="rl-desc">Two panels. Left, Rules: a person writes IF and THEN lines and the computer follows them exactly. Right, Learning: many labelled example photos are fed to the computer, which then recognises a new photo it has never seen.</desc>
<!-- LEFT: Rules -->
<rect x="8" y="8" width="300" height="324" rx="16" fill="var(--part-tint,#FDECE7)" stroke="var(--part,#F26440)" stroke-width="2"/>
<text x="28" y="44" font-size="17" font-weight="800" fill="var(--part-ink,#C33F1F)">Rules</text>
<text x="28" y="66" font-size="12.5" fill="var(--med-gray,#5B6169)">A person writes every step.</text>
<rect x="28" y="84" width="260" height="104" rx="10" fill="#fff" stroke="var(--part,#F26440)" stroke-width="1.5"/>
<text x="44" y="112" font-size="12.5" font-family="ui-monospace, monospace" fill="var(--ink,#1F2328)">if total &gt; 100:</text>
<text x="60" y="132" font-size="12.5" font-family="ui-monospace, monospace" fill="var(--ink,#1F2328)">apply discount</text>
<text x="44" y="158" font-size="12.5" font-family="ui-monospace, monospace" fill="var(--ink,#1F2328)">if overdue:</text>
<text x="60" y="178" font-size="12.5" font-family="ui-monospace, monospace" fill="var(--ink,#1F2328)">flag it red</text>
<text x="158" y="216" font-size="20" fill="var(--part,#F26440)" text-anchor="middle">&#8595;</text>
<rect x="58" y="228" width="200" height="88" rx="10" fill="var(--part,#F26440)"/>
<text x="158" y="270" font-size="13" font-weight="700" fill="#fff" text-anchor="middle">The computer follows</text>
<text x="158" y="292" font-size="13" font-weight="700" fill="#fff" text-anchor="middle">the rules, exactly.</text>
<!-- RIGHT: Learning -->
<rect x="332" y="8" width="300" height="324" rx="16" fill="#fff" stroke="var(--part,#F26440)" stroke-width="2"/>
<text x="352" y="44" font-size="17" font-weight="800" fill="var(--part-ink,#C33F1F)">Learning</text>
<text x="352" y="66" font-size="12.5" fill="var(--med-gray,#5B6169)">Show it examples, not rules.</text>
<g>
<rect x="352" y="84" width="80" height="44" rx="9" fill="var(--part-tint,#FDECE7)" stroke="var(--part,#F26440)" stroke-width="1.5"/>
<rect x="362" y="96" width="20" height="20" rx="4" fill="var(--part,#F26440)"/>
<text x="390" y="112" font-size="12.5" font-weight="700" fill="var(--ink,#1F2328)">cat</text>
<rect x="442" y="84" width="80" height="44" rx="9" fill="var(--part-tint,#FDECE7)" stroke="var(--part,#F26440)" stroke-width="1.5"/>
<rect x="452" y="96" width="20" height="20" rx="4" fill="var(--part,#F26440)"/>
<text x="480" y="112" font-size="12.5" font-weight="700" fill="var(--ink,#1F2328)">cat</text>
<rect x="532" y="84" width="80" height="44" rx="9" fill="var(--part-tint,#FDECE7)" stroke="var(--part,#F26440)" stroke-width="1.5"/>
<rect x="542" y="96" width="20" height="20" rx="4" fill="var(--part,#F26440)"/>
<text x="570" y="112" font-size="12.5" font-weight="700" fill="var(--ink,#1F2328)">cat</text>
</g>
<text x="482" y="148" font-size="12" fill="var(--med-gray,#5B6169)" text-anchor="middle">Thousands of labelled examples</text>
<text x="482" y="174" font-size="20" fill="var(--part,#F26440)" text-anchor="middle">&#8595;</text>
<rect x="352" y="186" width="260" height="46" rx="10" fill="var(--part,#F26440)"/>
<text x="482" y="214" font-size="13" font-weight="700" fill="#fff" text-anchor="middle">It learns what &#8220;cat&#8221; looks like</text>
<text x="482" y="256" font-size="20" fill="var(--part,#F26440)" text-anchor="middle">&#8595;</text>
<rect x="352" y="270" width="260" height="54" rx="10" fill="#fff" stroke="var(--part,#F26440)" stroke-width="1.5"/>
<text x="372" y="293" font-size="12.5" fill="var(--ink,#1F2328)">A photo it has never seen:</text>
<text x="372" y="313" font-size="12.5" font-weight="700" fill="var(--part-ink,#C33F1F)">it still spots the cat.</text>
</svg>
</figure>

## The AI you already use

Here is the fun part. You do not need to sign up for anything to start noticing AI, because you are surrounded by it. A normal day, roughly:

**Your face unlocks the phone.** The camera does not match a stored picture pixel for pixel. It learned the pattern of *your* face and recognises it in bad light, with a new haircut, half asleep. That is AI.

**Netflix, Spotify, and YouTube know what is next.** "Because you watched", the playlist that somehow fits your mood, the video that autoplays and is annoyingly perfect. All of it is a model that learned your taste from what you (and millions of others) played, skipped, and finished.

**The spam filter.** Nobody wrote a rule listing every dodgy email. The filter learned what junk looks like from billions of examples, and it keeps learning as the junk changes. It *feels* like nothing, which is exactly the point.

**Maps reroutes you.** It reads live traffic, predicts how long each road will take, and quietly picks the fastest one. The ETA that is eerily accurate is a prediction, not a lookup.

**Your camera takes a good photo in the dark.** Night mode, portrait blur, the shot that looks better than the scene did. The phone is not just capturing light, it is using AI to fill in and clean up what the tiny lens could not catch.

**Your bank texts you about a weird charge.** A model watched your normal spending, spotted something that did not fit, and flagged it in real time. Same idea keeps your card working abroad instead of freezing at the worst moment.

**Autocorrect and predictive text.** Every time your phone guesses the next word, finishes your sentence, or fixes "teh", a small language model is at work. It is a cousin of the big ones you will meet later in this course.

<figure class="lesson-svg" aria-labelledby="day-title">
<svg viewBox="0 0 640 210" width="100%" height="auto" role="img" xmlns="http://www.w3.org/2000/svg" font-family="Inter, system-ui, sans-serif">
<title id="day-title">AI in a normal day</title>
<desc>A timeline from morning to evening marking five everyday moments powered by AI: face unlock, spam filtered, maps reroute, camera night mode, and streaming picks.</desc>
<text x="0" y="24" font-size="20" font-weight="800" fill="var(--ink,#1F2328)">One ordinary day, powered by AI</text>
<line x1="40" y1="120" x2="600" y2="120" stroke="var(--part-tint,#FBE3DC)" stroke-width="6" stroke-linecap="round"/>
<circle cx="60" cy="120" r="11" fill="var(--part,#F26440)"/>
<text x="60" y="150" font-size="12.5" font-weight="700" fill="var(--ink,#1F2328)" text-anchor="middle">7:02</text>
<text x="60" y="168" font-size="12" fill="var(--med-gray,#5B6169)" text-anchor="middle">Face unlock</text>
<circle cx="195" cy="120" r="11" fill="var(--part,#F26440)"/>
<text x="195" y="150" font-size="12.5" font-weight="700" fill="var(--ink,#1F2328)" text-anchor="middle">7:40</text>
<text x="195" y="168" font-size="12" fill="var(--med-gray,#5B6169)" text-anchor="middle">Spam filtered</text>
<circle cx="330" cy="120" r="11" fill="var(--part,#F26440)"/>
<text x="330" y="150" font-size="12.5" font-weight="700" fill="var(--ink,#1F2328)" text-anchor="middle">8:15</text>
<text x="330" y="168" font-size="12" fill="var(--med-gray,#5B6169)" text-anchor="middle">Maps reroutes</text>
<circle cx="465" cy="120" r="11" fill="var(--part,#F26440)"/>
<text x="465" y="150" font-size="12.5" font-weight="700" fill="var(--ink,#1F2328)" text-anchor="middle">18:30</text>
<text x="465" y="168" font-size="12" fill="var(--med-gray,#5B6169)" text-anchor="middle">Photo night mode</text>
<circle cx="600" cy="120" r="11" fill="var(--part,#F26440)"/>
<text x="600" y="150" font-size="12.5" font-weight="700" fill="var(--ink,#1F2328)" text-anchor="middle">21:00</text>
<text x="600" y="168" font-size="12" fill="var(--med-gray,#5B6169)" text-anchor="middle">Netflix picks</text>
<text x="40" y="196" font-size="12.5" fill="var(--soft-gray,#6E747C)">You never opened an &#34;AI app&#34;. It was working the whole time.</text>
</svg>
</figure>

None of this asks you to *do* anything. It just runs. Which is why so many people who say "I have never used AI" use it before breakfast.

## So why does the new wave feel different?

If AI has been around this whole time, why does ChatGPT and Claude feel like something changed? Because the AI above mostly **sorts, scores, or predicts**: is this spam or not, how long is this drive, which video next. Useful, but narrow. Each model does one job.

The new wave is **generative AI**, and the clue is in the name: it *makes* new things. Give it a blank page and it writes the email, drafts the report, builds the table, answers the question in full sentences, even writes working code. It does not pick from a list. It produces something that was not there a second ago.

That is the leap. For the first time, the AI does not just tidy your world behind the scenes, it sits across the desk and does *work* with you. **This whole course is mostly about that kind of AI**, and about Claude in particular. Exactly how it manages the trick (models, training, why it sometimes makes things up) is the [next lesson](/learn/foundations/how-generative-ai-works). For now, one line is enough: *generative AI creates; the older AI mostly sorts.*

## How the words fit together

People throw around "AI", "machine learning", and "generative AI" as if they were the same thing. They are not, but they are not rivals either. They are **nested circles**, one inside the next.

<figure class="lesson-svg" aria-labelledby="nest-title">
<svg viewBox="0 0 640 400" width="100%" height="auto" role="img" xmlns="http://www.w3.org/2000/svg" font-family="Inter, system-ui, sans-serif">
<title id="nest-title">AI, machine learning, and generative AI as nested circles</title>
<desc>Three boxes nested inside one another. The widest is Artificial intelligence. Inside it is Machine learning. Inside that is Generative AI.</desc>
<rect x="10" y="20" width="620" height="360" rx="18" fill="var(--part-tint,#FDECE7)" stroke="var(--part,#F26440)" stroke-width="2"/>
<text x="34" y="52" font-size="17" font-weight="800" fill="var(--part-ink,#C33F1F)">Artificial intelligence</text>
<text x="34" y="74" font-size="13" fill="var(--med-gray,#5B6169)">Any software that does something we would call &#34;smart&#34;.</text>
<rect x="70" y="96" width="500" height="264" rx="16" fill="#fff" stroke="var(--part,#F26440)" stroke-width="2"/>
<text x="94" y="128" font-size="16" font-weight="800" fill="var(--part-ink,#C33F1F)">Machine learning</text>
<text x="94" y="149" font-size="13" fill="var(--med-gray,#5B6169)">The main way we do AI now: learn patterns from examples.</text>
<rect x="132" y="170" width="376" height="170" rx="14" fill="var(--part,#F26440)"/>
<text x="156" y="204" font-size="16" font-weight="800" fill="#fff">Generative AI</text>
<text x="156" y="226" font-size="13" fill="#fff" opacity="0.95">Learns patterns, then makes new things:</text>
<text x="156" y="246" font-size="13" fill="#fff" opacity="0.95">text, images, code, answers.</text>
<text x="156" y="286" font-size="13.5" font-weight="700" fill="#fff">Claude lives here.</text>
<text x="156" y="312" font-size="12.5" fill="#fff" opacity="0.9">ChatGPT and Gemini too.</text>
</svg>
</figure>

**Artificial intelligence** is the widest circle: any software doing something we would once have called clever. **Machine learning** sits inside it, the learn-from-examples approach behind nearly all AI worth talking about today. **Generative AI** sits inside *that*, the newest and most exciting corner, where the software does not just recognise patterns but uses them to create. Claude, ChatGPT, and Gemini all live in that innermost circle.

You do not need to police these words in the office. But knowing the shape stops you nodding along to nonsense, and helps you ask the one question that matters at work: *what is this actually doing, and can I trust it with this task?*

## What is coming next

AI moves fast, so any list dates quickly. But two waves are worth picturing: the near ones you will likely see soon, and the bolder ones a bit further out.

**Coming soon, and grounded.** The clearest shift is from AI that *answers* to AI that *acts*. Today you ask Claude a question and it replies. Increasingly it will carry out a whole task for you: book the trip, reconcile the invoices, pull the numbers from three systems and draft the report, then hand it back for a check. These are often called **agents**, and Part 5 of this course gets you using them. Alongside that: **live translation** good enough to hold a real conversation across languages through an earbud, medical screening that spots a problem on a scan earlier than a tired human eye, and a quiet **copilot in every work tool** you already use, drafting, summarising, and catching mistakes as you go.

**Bolder, and further out.** Look past the next couple of years and the picture gets more sweeping. Cars that genuinely drive themselves on ordinary streets, not just on a demo route. A tutor for every child that adapts to exactly how that child learns. Drug discovery compressed from a decade to a year or two because AI can sift possibilities no lab could test by hand. And, more slowly than the headlines claim, AI that reasons across many fields at once rather than being sharp at just one.

A fair word of caution, because this course respects your time and your judgement: **the near list is close to certain, the far list is not.** Some of it will arrive early, some late, some in a shape nobody predicted. The useful stance is neither breathless nor dismissive. It is *curious*: learn what the tools can do today, and you will spot the real changes coming before the hype does.

## Why the words matter at work

You will sit in meetings where "we should use AI for this" gets said with great confidence and no detail. Being able to ask *"which kind, and what would it actually do?"* is quietly powerful. It is the difference between chasing a buzzword and solving a problem.

That is the real aim of this first part of the course. Not to turn you into an engineer, but to give you a clear enough map that you can make good calls: **where AI genuinely helps, where it does not, and what is safe to trust it with.** Everything after this builds on that.

## Try it

Two minutes, no tools needed. First, list three things AI already did *for* you today without you asking. (Stuck? Check your phone: unlock, inbox, maps, photos, the app that suggested something.) Then name one task in your week that a computer could not have done five years ago, but might do now.

Notice the shift as you write: AI stops being a headline about the future and becomes a set of things happening in your actual day. That shift is the point. You cannot use a tool well until you can see it.

*(General exercise. Role and industry versions come once accounts are in.)*

## Key terms

[Artificial intelligence](/glossary/artificial-intelligence), [Machine learning](/glossary/machine-learning), [Generative AI](/glossary/generative-ai), [Model](/glossary/model), [Agent](/glossary/agent)
