Skip to content
Lesson 8 · AI around you

Examples of AI in everyday life

AI is already in your phone, your apps and your games. Recommendations, map arrival times, spam filters, face unlock, autocorrect, translation and game opponents all use models that learned from data. Each one predicts one specific thing, and once you know what it predicts, the magic makes sense.

Scroll

The one question to ask

Whenever you meet a piece of AI, ask one question: what is it predicting, and from what data? Take the recommendations on YouTube, TikTok or Spotify. The model is not judging your taste. It predicts one thing: will you keep watching this? It learned that from what millions of people with histories like yours watched next, and how long they stayed. A system like this is called a recommendation system. Every skip and every replay is a new label. That is why your feed changes within a day of your interests changing. You are training it constantly.

What each one predicts

WhereWhat it predictsLearned from
Video and music feedsWhether you will keep watchingWhat people like you watched and skipped
MapsHow long the trip will takeMillions of past trips, plus live traffic
Spam filterHow spam-like an email isEmails people marked as spam or not
Face unlockWhether this face is yoursThe face pattern it learned when you set it up
AutocorrectThe word you meant to typeHuge amounts of typed text and corrections
TranslationThe same sentence in another languageMillions of matching sentence pairs

The ones that see

Some AI works on pictures instead of words. Teaching a computer to understand images is called computer vision. Face unlock is the version in your pocket. When you set it up, the phone learns a pattern of your face. Each time you look at it, a model scores how closely the new face matches, and a threshold decides whether to unlock. The same idea now helps doctors. Models trained on huge numbers of X-rays and scans can flag spots that look worrying, so a radiologist looks there first. As of 2026 these are used in many hospitals as a second pair of eyes. The doctor still makes the call.

Games: scripted enemies and learned champions

Video games are a nice reminder of lesson 1. Most classic game enemies are rule-based: if the player is close, attack; if health is low, run. A designer wrote those rules. That is AI in the old sense, and it is fine for a guard on patrol. Learned game AI is different. In 2016 a program called AlphaGo beat one of the world's best Go players, in a game far too complex for hand-written rules. It learned from millions of games and from playing against itself. Learning from wins and losses rather than labels is called reinforcement learning.

The pattern behind all of them

  • Each one takes an input, produces a score or a ranking, and a threshold or a sort order turns that into an action.
  • The training data mostly comes from people using the product, which is why these systems improve the more they are used.
  • None of them understands you. Each one is very good at predicting one narrow thing.

So, should you worry?

That is a lot of models quietly making predictions about you, from your data. Some of it is convenient. Some of it deserves a careful look, especially where the stakes are high. Next: an honest answer to whether AI is dangerous, without the movie version.

You probably used five of these today.

Check yourself · 3 quick questions

  1. What does a maps app predict when it shows an arrival time?

    Show answer

    How long the trip will take, based on past trips and live traffic — The model learned from millions of past trips, plus live traffic, to predict how long yours will take.

  2. What does a recommendation system mostly learn from?

    Show answer

    What people with similar histories watched and skipped — It predicts whether you will keep watching by learning from what people with histories like yours did next; every skip and replay is a new label.

  3. Which of these is usually rule-based rather than learned?

    Show answer

    A classic game guard that attacks when you get close — Classic game enemies follow rules a designer wrote, such as "if the player is close, attack"; the others learned from data.