Skip to content
← Catalogue Modern Skills 100 level Created by AI

AI Foundations: Understanding Artificial Intelligence

Professor: Sikh Archive · Source: Sikh Archive

A plain-language introduction to artificial intelligence for everyone. This course explains what AI really is and is not, traces its journey from early rule-based systems to today's large language models, and unpacks the core ideas of data, training, models, and neural networks without any math. You will learn how…

Begin course 8 lessons · 8-question test · 80% to pass
Created by AI. Drafted with AI and reviewed for accuracy. Spotted an error? Tell us.

Lessons

1. What AI Is and What It Is Not

What AI Is and What It Is Not

Artificial intelligence, or AI, is a broad term for computer systems that perform tasks we usually associate with human thinking: recognizing images, understanding language, making recommendations, or answering questions. At its heart, AI is software that finds patterns in information and uses those patterns to make useful guesses or decisions.

It helps to start by clearing away some common myths. AI is not a conscious mind. It does not have feelings, beliefs, intentions, or self-awareness, even when it produces sentences that sound thoughtful or warm. When a chatbot writes "I understand how you feel," it is arranging words that statistically fit the conversation, not actually feeling anything.

AI is also not magic, and it is not always right. These systems can be confident and fluent while being completely wrong. They do not "know" facts the way a person does; they work with patterns drawn from the data they were built on.

So what is AI, in practical terms? Think of it as a powerful pattern machine. Show it enough examples of a task, and it can produce results that often look intelligent. A few everyday examples:

  • A spam filter that learns which emails are junk.
  • A maps app that predicts traffic and suggests a faster route.
  • A photo app that groups pictures of the same person.
  • A writing assistant that drafts an email when you give it a topic.

One useful distinction is between narrow AI and general AI. Almost all AI in use today is narrow: it is good at one kind of task, like translating text or detecting fraud, and nothing else. General AI, a hypothetical system that could match a human across any task, does not exist. When the news talks about "AI," it almost always means narrow, task-specific tools.

Throughout this course, keep a simple mental model in mind: AI is a tool that learns patterns from data and applies them to new situations. That single idea will carry you a long way.

2. A Short History: From Rules to Learning

A Short History: From Rules to Learning

AI is not a brand-new idea. The field has been developing for about seventy years, moving through several waves of optimism and progress. Understanding this history makes today's tools far less mysterious.

The age of rules (1950s to 1980s)

The earliest approach was to tell computers exactly what to do, step by step. Experts wrote long lists of rules: "If the patient has these symptoms, suggest this diagnosis." These rule-based systems, sometimes called expert systems, could be impressive in narrow areas. But they were brittle. The real world has endless exceptions, and writing a rule for every situation proved impossible. If a case fell outside the rules, the system simply failed.

The shift to machine learning (1990s to 2000s)

Researchers tried a different strategy: instead of writing the rules by hand, let the computer discover patterns from examples. This is machine learning. Rather than telling a system how to recognize a cat, you show it thousands of labeled cat photos and let it figure out the patterns itself. As digital data and computing power grew, this approach started to outperform hand-written rules on many tasks.

The deep learning breakthrough (2010s)

Around 2012, a technique called deep learning, built on layered structures loosely inspired by the brain, produced dramatic leaps in image recognition and speech. Suddenly computers could transcribe speech, label photos, and translate languages far better than before. This is the era when AI quietly entered phones, cameras, and everyday apps.

The rise of large language models (2018 to today)

The most recent wave centers on large language models, or LLMs, the technology behind modern chatbots and writing assistants. Trained on enormous amounts of text, these systems can hold conversations, summarize documents, write code, and answer questions across countless topics. The public release of capable chatbots starting in the early 2020s brought AI into ordinary life on a massive scale.

The throughline of this history is a steady shift from telling computers exactly what to do toward letting them learn from examples. Each wave built on the last, and the pace of change has accelerated sharply in recent years.

3. Key Concepts: Data, Training, and Models

Key Concepts: Data, Training, and Models

To understand modern AI, you only need a handful of plain-English concepts. Let's build them up one at a time.

Data

Data is the raw material of AI: text, images, numbers, sounds, clicks, anything that can be stored digitally. AI learns from data the way a student learns from examples. The quantity and quality of data matter enormously. If the examples are narrow, biased, or wrong, the AI will inherit those flaws.

Training

Training is the process of teaching an AI system by exposing it to data. During training, the system makes guesses, checks how far off it was, and adjusts itself to do better next time. This repeats millions or billions of times. Imagine learning to shoot a basketball: each shot that misses tells you to adjust your aim. Training is that feedback loop, automated and run at a vast scale.

Models

The result of training is a model. A model is the finished pattern-recognizer, the part you actually use. When you type a question into a chatbot, you are using a trained model. A helpful analogy: training is like writing and studying for an exam over months, and the model is the knowledge you carry into the test. Once trained, a model can be used over and over without repeating the training.

A simple cycle

Putting it together, AI generally follows this cycle:

  • Collect data relevant to the task.
  • Train a system on that data so it learns the patterns.
  • Produce a model that captures those patterns.
  • Use the model on new, unseen inputs to make predictions.

One important point: most models have a knowledge cutoff. They learn from data gathered up to a certain date and do not automatically know about events after that, unless they are connected to live tools or search. This is why an AI assistant may be unaware of very recent news.

With just these four ideas, data, training, models, and the cycle that connects them, you can reason about almost any AI system you encounter.

4. Machine Learning, Deep Learning, and Neural Networks

Machine Learning, Deep Learning, and Neural Networks

These three terms appear constantly and are often used loosely. Here is how they fit together, intuitively and without any math.

Nested ideas

Think of three circles, one inside the next. Artificial intelligence is the biggest circle: any system that performs tasks needing intelligence. Inside it sits machine learning: systems that learn from data instead of being explicitly programmed. Inside that sits deep learning: a particular, powerful style of machine learning. So all deep learning is machine learning, and all machine learning is AI, but not the other way around.

What makes deep learning "deep"

Deep learning uses neural networks, which are loosely inspired by how brain cells connect. A neural network is made of many simple units arranged in layers. Information enters the first layer, gets passed and transformed through middle layers, and produces an answer at the final layer. The word "deep" simply means there are many layers stacked together.

Here is an intuitive way to picture it. Imagine recognizing a face. An early layer might notice edges and shapes. A middle layer might combine those into eyes, noses, and mouths. A later layer might assemble those into a whole face. No one programmed these steps; the network discovered this layered way of seeing during training. Each layer builds on the patterns found by the one before it.

Why it works so well

This layered approach lets deep learning handle messy, real-world information like photos, audio, and natural language, where hand-written rules always fell short. The trade-off is that deep learning needs large amounts of data and significant computing power, and the inner workings can be hard to fully explain even for experts. This is sometimes called the "black box" problem: we can see the input and output, but the reasoning in between is not easy to interpret.

You do not need to understand the internal mathematics to use AI wisely. What matters is the mental picture: layers of simple parts, learning patterns from data, building from simple features up to complex understanding.

5. Generative AI and How LLMs Predict

Generative AI and How LLMs Predict

Most of the AI making headlines today is generative AI: systems that create new content, such as text, images, audio, or code, rather than just sorting or labeling existing things. The chatbots and writing assistants people use daily are powered by large language models, or LLMs.

The core trick: predicting the next piece of text

An LLM works on a surprisingly simple principle. Given some text, it predicts what is likely to come next, one small chunk at a time. Trained on enormous amounts of writing, it has absorbed the patterns of how language tends to flow. If you write "The capital of France is," the model predicts that "Paris" is a very likely continuation, because that pattern appeared countless times in its training data.

It does this repeatedly: predict a chunk, add it to the text, then predict the next, building up a full response word by word. There is no lookup of a stored answer and no conscious thought. It is sophisticated pattern-based prediction, run at incredible speed and scale.

Why the results feel intelligent

Because the model learned from such a vast range of human writing, its predictions often capture real structure: grammar, reasoning patterns, common facts, even style and tone. The output can be genuinely useful and creative. But it is essential to remember how it is produced. The model is optimizing for what sounds plausible, not for what is verified to be true.

A key consequence

This prediction-based design explains both the strengths and the famous weaknesses of LLMs. They are wonderful at drafting, rephrasing, brainstorming, and explaining. They can also state false things confidently, because a smooth, plausible-sounding sentence is exactly what they are built to produce, whether or not it is accurate.

Generative AI also extends beyond text. Image generators create pictures from written descriptions, and audio tools can produce speech or music. The underlying idea is similar: learn patterns from many examples, then generate new content that fits those patterns. Understanding this single concept, prediction from learned patterns, demystifies most of what generative AI does.

6. AI in Daily Life and at Work

AI in Daily Life and at Work

AI is no longer a future technology; it is woven into ordinary routines, often invisibly. Recognizing where it already operates helps you engage with it thoughtfully.

In everyday life

  • Navigation: Map apps predict traffic and estimate arrival times.
  • Recommendations: Streaming, shopping, and music services suggest content based on patterns in what you and others enjoy.
  • Communication: Email sorts spam, suggests replies, and offers autocomplete.
  • Photos: Phones organize images, recognize faces, and enhance pictures automatically.
  • Voice assistants: Speakers and phones convert your speech into commands and answers.
  • Everyday help: Chatbots draft messages, explain ideas, translate languages, and answer questions.

At work

Across industries, AI is becoming a practical assistant rather than a replacement for human judgment. Common uses include:

  • Writing and editing: Drafting emails, reports, summaries, and first versions of documents.
  • Research and analysis: Summarizing long documents and surfacing relevant information quickly.
  • Customer support: Handling routine questions so people can focus on complex cases.
  • Healthcare: Helping interpret scans and organize records, with clinicians making final decisions.
  • Creative work: Generating ideas, drafts, and visual concepts to build upon.
  • Coding: Suggesting and explaining code to help software developers work faster.

A balanced view

AI tends to be most valuable for tasks that are repetitive, time-consuming, or a starting point that a person will refine. It is a powerful collaborator, but the best results almost always come from a human and an AI working together: the AI produces a draft or suggestion quickly, and the person checks, corrects, and decides. Treating AI output as a first draft to review, rather than a final answer to trust blindly, is a habit that serves you well in nearly every setting.

7. Limitations, Bias, Hallucination, and Privacy

Limitations, Bias, Hallucination, and Privacy

Using AI well means understanding where it falls short. These tools are powerful, but they have real and predictable weaknesses. Knowing them protects you from costly mistakes.

Hallucination

AI systems, especially LLMs, sometimes produce information that is simply false while sounding completely confident. This is often called hallucination. Because the model generates plausible-sounding text rather than retrieving verified facts, it can invent statistics, fake quotes, nonexistent sources, or wrong dates. The lesson is direct: always verify important facts from a trustworthy source before relying on them. Never assume fluent means correct.

Bias

AI learns from data created by people, and that data reflects human biases. If historical data underrepresents or stereotypes certain groups, the AI can absorb and even amplify those patterns. This has shown up in unfair outcomes in areas like hiring tools, image generation, and language. Bias is not usually intentional; it is a byproduct of imperfect data. Being aware of it helps you question results that seem skewed and avoid applying AI blindly to sensitive decisions about people.

Other limitations

  • Knowledge cutoff: Many models do not know about events after their training date unless connected to live information.
  • No true understanding: They manipulate patterns, not meaning, so they can miss obvious context or make odd errors.
  • Inconsistency: The same question can yield different answers at different times.
  • Weak reasoning at the edges: Complex logic, math, and multi-step problems can trip them up.

Privacy

What you type into an AI tool may be stored or used to improve the system, depending on the provider and its settings. A safe rule: do not share sensitive personal, financial, medical, or confidential information unless you know exactly how it will be handled. Treat a public AI chatbot a bit like a postcard, not a sealed letter. Check the privacy policy and any data controls before entering anything you would not want kept or seen by others.

None of this means AI is untrustworthy or should be avoided. It means AI should be used with healthy skepticism and human oversight, the same way you would double-check any single source of information.

8. Using AI Responsibly and Getting Started

Using AI Responsibly and Getting Started

You now understand what AI is, how it works, and where it struggles. This final lesson turns that knowledge into good habits and a path forward.

Principles for responsible use

  • Verify before you trust. Check important facts, figures, and sources independently. Treat AI output as a draft, not a verdict.
  • Keep a human in the loop. For decisions that affect people, money, health, or safety, a person should review and own the final call.
  • Protect privacy. Avoid entering sensitive or confidential information into tools you do not control.
  • Be transparent. When AI meaningfully helped create something, especially at work or school, be honest about it. Follow the rules of your organization or institution.
  • Watch for bias and harm. Question results that seem unfair or stereotyped, and do not use AI to deceive or manipulate others.
  • Respect others' work. Be thoughtful about copyright and giving credit, since AI can mimic existing styles and content.

Getting started as a learner

The best way to understand AI is to use it, carefully and curiously. A few suggestions:

  • Experiment with a chatbot. Ask it to explain a topic, summarize an article, or brainstorm ideas. Notice what it does well and where it slips.
  • Learn to prompt clearly. Clear, specific instructions with context produce far better results than vague ones. Tell it the goal, the audience, and the format you want.
  • Fact-check on purpose. Deliberately verify a few answers to build a realistic sense of when to trust the tool.
  • Start small at work. Use AI for low-stakes drafts first, then expand as your judgment grows.
  • Keep learning. The field moves quickly. Follow reputable, neutral sources and stay curious rather than fearful or overhyped.

A closing thought

AI is a tool, and like any powerful tool, its value depends on the skill and care of the person using it. Approached with curiosity, honesty, and healthy skepticism, AI can help you write, learn, create, and work more effectively. This course is a foundation; the rest of the modern-skills track will build on it. The most important takeaway is a balanced mindset: neither dismiss AI nor accept it uncritically, but learn to use it wisely.

Course test

Pass with 80% or higher to complete the course and unlock the next one.

1. Which statement best describes what AI actually is?
2. What was the main limitation of early rule-based (expert) systems?
3. In AI, what is a 'model'?
4. How do machine learning and deep learning relate to each other?
5. How does a large language model (LLM) primarily generate its responses?
6. What does it mean when an AI 'hallucinates'?
7. Why can AI systems exhibit bias?
8. Which is the best practice for using AI responsibly?

Read the source texts

Read the primary sources for yourself — the Gurbani in our read-along reader, and the original works in the source library.

Rate this course

Discussion & Q&A

Sign in to post.