> For the complete documentation index, see [llms.txt](https://theaihandbook.leomohan.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://theaihandbook.leomohan.net/chapter-1-what-is-not-ai.md).

# Chapter 1: What is NOT AI?

### Setting the Record Straight

**Q1: Is my programmable coffee maker that turns on at 7 AM, AI?**

**A:** No. That’s just a timer. It follows a strict, pre-set schedule. It doesn’t “know” it’s 7 AM or that you’re tired; it just mechanically flips a switch.

**Q2: Is Microsoft Excel, with all its formulas and functions, AI?**

**A:** No. Excel is a powerful calculator. It does exactly what you tell it to do with the numbers you give it. It can’t predict next month’s sales on its own or understand *why* a number changed.

**Q3: Is a remote-controlled car AI?**

**A:** No. It’s a puppet on strings made of radio waves. Every move is commanded by a human. It has no ability to make its own decisions, like avoiding a wall.

**Q4: Is my basic alarm clock AI?**

**A:** No. It makes a loud noise at a specific time until you press a button. It doesn’t learn that you usually hit snooze three times, nor does it adjust itself based on your sleep pattern.

**Q5: Is a simple search for a word in a document (Ctrl+F) AI?**

**A:** No. It’s a pattern-matching tool. It’s just looking for identical sequences of letters. It doesn’t understand the meaning of the word or the context of the sentence it’s in.

**A hard-coded business rule: “If customer buys product A, suggest product B”**

**Q6: Are those “If-This-Then-That” rules in a business system AI?**

**A:** No. These are hard-coded instructions. They are like a vending machine: if you put in money (This) and press Coke (That), you get a Coke. It’s rigid and can’t learn new patterns.

**Q7: Is a standard pocket calculator AI?**

**A:** No. It’s a fast, accurate slave. It can process numbers millions of times faster than a human, but it has zero understanding of what “addition” or “money” actually means.

**Q8: Is a random number generator (like in a video game loot box) AI?**

**A:** No. It’s pure chance and statistics. It has no goal, no memory, and no intent. It just spits out a number based on a mathematical formula.

**Q9: Is a recorded voicemail greeting AI?**

**A:** No. It’s a playback device. It’s like a digital tape recorder. It cannot understand your message or reply to it intelligently.

**Q10: Is a simple motion-sensor light AI?**

**A:** No. It’s a reactive switch. It detects a change in infrared heat (motion) and completes an electrical circuit to turn the light on. It doesn’t know if it’s a person, a pet, or a car.

**Q11: Is a thermostat that keeps the room at a set temperature AI?**

**A:** No. This is a classic control loop. It’s a simple feedback mechanism: “Is it too cold? Turn on heat. Is it too hot? Turn off heat.” It’s reactive, not predictive or learning.

**Q12: Is a fax machine AI?**

**A:** No. It’s a scanner and a modem in a box. It converts a image into beeps and boops to send over a phone line, and then converts those beeps back into a printed page. Zero intelligence involved.

**Q13: Is a color-coded spreadsheet (e.g., red for negative, green for positive) AI?**

**A:** No. It’s conditional formatting. It’s an automated paintbrush. You set the rule (“if number is less than 0, color red”), and it follows it blindly.

**Q14: Is a simple lookup table (like a dictionary or a phone book) AI?**

**A:** No. It’s an organized collection of data. Looking up “John” to find his number is a simple retrieval process. It’s the digital equivalent of flipping through a physical book.

**Q15: Is a music equalizer that boosts bass frequencies AI?**

**A:** No. It’s a signal processor. It applies a fixed filter to the sound waves. It doesn’t listen to the music to decide what frequencies sound best.

**Q16: Is a microwave with pre-set buttons (like “Popcorn”) AI?**

**A:** No. The “Popcorn” button is just a timer that runs for a specific, average duration. It doesn’t check if the popcorn is burning or if the bag is almost empty.

**Q17: Is a security camera that simply records footage AI?**

**A:** No. It’s a camera and a VCR/DVR. It’s just a digital eye that saves what it sees. It cannot alert you to a suspicious person unless a human is watching the screen.

**Q18: Is a spam filter that blocks emails from “<prince@scam.ru>” AI?**

**A:** Probably not. If it’s just blocking specific senders or keywords you listed, it’s a simple blocklist. *Modern* spam filters, however, do use AI to learn what “spammy” language looks like.

**Q19: Is cruise control in a car AI?**

**A:** No. It’s a mechanical regulator. It maintains a speed you set. It doesn’t adjust speed based on the car ahead or the road conditions (that would be adaptive cruise control, which *does* use AI).

**Q20: Is an automatic door at a supermarket AI?**

**A:** No. It’s a sensor connected to a motor. It detects pressure or motion and opens. It doesn’t “see” you or “decide” to let you in. It’s a simple physical reaction.

***

💬 Enjoyed this chapter? Have questions or thoughts?\
Join the discussion on GitHub → [**Click here to Comment**](https://github.com/leomohan/theAIhandbook/discussions)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://theaihandbook.leomohan.net/chapter-1-what-is-not-ai.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
