series: AI from zero to expert | article 1 of 30
My toaster doesn’t have AI. Neither does my toothbrush, nor 90% of the products that slapped “AI-powered” on the box this year without touching a single line of their firmware. I know because I’ve been writing code for a long time, and I can spot an if statement in a suit when I see one.
This is the first chapter of a long series, so we start with the basics: what is AI, really (artificial intelligence, to be precise), what machine learning is, what deep learning is, and why those three terms aren’t interchangeable even though marketing treats them that way. Get this wrong at the start, and everything else in the series is built on sand.
The term is 70 years old
“Artificial intelligence” wasn’t born yesterday in a startup pitch deck. The term was coined in 1956, at a summer workshop at Dartmouth College, proposed by John McCarthy along with Marvin Minsky, Nathaniel Rochester, and Claude Shannon. The workshop’s stated goal was, literally, to figure out how to make a machine use language, form abstractions and concepts, solve problems normally reserved for humans, and improve itself. That was almost 70 years ago. The full story of how we got from there to ChatGPT is next chapter’s job, but I needed to make one thing clear first: this isn’t a hashtag from this decade.
What ai actually is
According to IBM, artificial intelligence is technology that enables computers and machines to simulate human learning, comprehension, problem solving, decision-making, creativity, and autonomy. It’s an umbrella term: any program that uses information to make decisions or predictions without a human hand-holding every step qualifies as “AI.”
Notice how broad that is. Under that definition, a thermostat that adjusts temperature based on usage patterns could technically call itself “AI.” So could a GPS recalculating your route. And that’s exactly where the confusion starts, because technically they’re not wrong, but when someone sells you “AI” in 2026, they’re not thinking about your thermostat, they’re thinking about something with the sophistication of a language model. The word is correct and the expectation it creates is not.
The subset that learns: machine learning
Machine learning (ML) is the subset of AI focused on algorithms that analyze and “learn” patterns from training data in order to make accurate inferences about new data. The key difference from old-school AI (the kind built on rules a programmer writes by hand) is that nobody explicitly codes “if this happens, do that.” The system looks at thousands or millions of examples and figures out the pattern on its own.
A spam filter is the textbook example. Nobody sat down and wrote ten thousand rules like “if the email contains word X, it’s spam.” A model looked at millions of emails already labeled spam or not-spam, and learned which features (sender, wording, structure) correlate with each category. When a new email arrives, it’s not checked against a rule list, it’s run through the learned pattern.
That’s machine learning. It’s a part of AI, not all of AI. And here’s the first common marketing sleight of hand: calling “artificial intelligence” any system with a couple of conditional rules, when there isn’t even a model trained on data involved.
The subset that mimics the brain: deep learning
Deep learning (DL) is, in turn, a subset of machine learning. It’s built on multi-layered neural networks, loosely inspired by the structure of the human brain. Deep learning models power most of today’s cutting-edge AI: computer vision, generative AI, self-driving cars, robotics.
The difference between “classic machine learning” and “deep learning” isn’t just marketing, it’s architecture. Classic ML uses simpler algorithms (you’ll meet them in chapter 6: regression, decision trees, SVMs) that usually need a human to hand-pick which features of the data matter. Deep learning, with its stacked layers, can learn those features by itself, straight from raw data (an image, an audio clip, a block of text), without anyone telling it in advance what to look for. That leap is what makes it possible for a model to look at a photo and know there’s a cat in it, without anyone ever explaining what a whisker is.
The russian nesting dolls
If I had to sum up the relationship between the three terms in one image, it’d be russian nesting dolls: AI is the biggest doll, and it contains machine learning, which in turn contains deep learning.
All deep learning is machine learning. All machine learning is AI. But not all AI is machine learning: there are AI systems that don’t learn from any data at all, they just execute rules or searches written by humans. Two examples, with names attached. Deep Blue, IBM’s chess computer that beat Kasparov in 1997, didn’t use machine learning or neural networks at all: it evaluated up to 200 million positions per second through brute-force search, guided by an evaluation function hand-tuned by chess grandmasters. It was AI (it outplayed every human alive) without ever “learning” from a single game. The other case is the expert systems of the 70s and 80s, like MYCIN, built at Stanford to diagnose bacterial infections and recommend antibiotics from hundreds of rules like “if the patient shows X, then Y,” written by doctors, with zero training data involved. Both are legitimate AI. Neither is machine learning.
And not all machine learning is deep learning: the classic algorithms from chapter 6 (regression, decision trees, SVMs) learn from data just like deep learning does, just without neural networks in the mix.

When someone tells you “this uses deep learning,” they’re being more specific (and probably more honest) than someone who just says “this uses AI.” The closer you get to the center of the nesting doll, the more concrete and verifiable the claim.
How to spot when “AI” is just a paint job
Here’s my favorite data point on this topic, and it comes with a source. According to MMC Ventures’ “The State of AI 2019” report, out of 2,830 European startups labeled as “AI,” close to 40% showed no evidence that AI added any real value to their business. It’s a 2019 report, so the number has some mileage on it, but the phenomenon it describes (labeling something “AI” that isn’t, to raise more funding or sell better) has its own name now: “AI washing,” by analogy with “greenwashing.”
The test for spotting it hasn’t changed with the years: before you believe something “has AI,” ask yourself whether there’s a model trained on data producing a result that wasn’t explicitly hardcoded rule by rule. If the honest answer is “it’s actually an if/else with a good copywriter,” it’s not AI, no matter what the box says.
Why this matters for the rest of the series
This isn’t an academic nitpick: knowing what is AI, concretely, is the foundation for everything that follows. We’re about to spend the next chapters covering supervised learning, neural networks, transformers, and language models. If you don’t walk in knowing that an LLM is deep learning, that deep learning is a subset of machine learning, and that both are a subset of AI, every new chapter is going to sound like loose jargon instead of clicking into a map.
Next chapter covers the AI winters
the two stretches of history when the field nearly lost all its funding because it failed to deliver on its promises. Worth knowing, because the hype of 2026 isn’t the first this field has lived through, and it probably won’t be the last.
Sources
– AI Coined at Dartmouth (Dartmouth College)
– What Is Artificial Intelligence (AI)? (IBM)
– What is Machine Learning? (IBM)
– What Is Deep Learning? (IBM)
– AI vs. Machine Learning vs. Deep Learning vs. Neural Networks (IBM)
– What Is an Expert System? (Teachfloor)
– 40% of AI start-ups in Europe not related to AI (CNBC, on the MMC Ventures report)
– Half Of AI Startups Aren’t Using AI, Finds MMC Ventures (AI Business)