FREE PREVIEW · NO ACCOUNT NEEDED

Volume 1 · Day 1 — Fundamentals of Artificial Intelligence

Establish a precise working definition of intelligence and artificial intelligence, separate AI from automation and analytics, and learn to read any AI system as an input, processing and output pipeline.

Why this day matters

A leadership team is told to "add AI" to the product. Before a single line of code is written, someone has to say clearly what AI is, what automation is and where analytics ends and learning begins.

Learning objectives

  • Define intelligence and artificial intelligence in academic terms.
  • Distinguish AI as a research field from AI as a deployed product.
  • Compare human intelligence and machine intelligence across perception, reasoning, learning, planning and language.
  • Differentiate AI, automation, analytics and traditional programming using decision criteria.
  • Decompose any AI application into input, processing/model and output.
  • Identify at least six industry applications of AI and explain the value each creates.
  • Correct five common misconceptions about AI.

1.1.02

Why should I learn this?

A leadership team is told to "add AI" to the product. Before a single line of code is written, someone has to say clearly what AI is, what automation is and where analytics ends and learning begins.

Project connection: Identify AI, automation and analytics in ten real-world scenarios.

Reflection: where in your own organisation does this problem already exist today?

1.1.03

Learning objectives

  • Define intelligence and artificial intelligence in academic terms.
  • Distinguish AI as a research field from AI as a deployed product.
  • Compare human intelligence and machine intelligence across perception, reasoning, learning, planning and language.
  • Differentiate AI, automation, analytics and traditional programming using decision criteria.
  • Decompose any AI application into input, processing/model and output.
  • Identify at least six industry applications of AI and explain the value each creates.
  • Correct five common misconceptions about AI.

Prerequisites: Basic computer literacy: files, applications and web services., Comfort reading simple tables of data., No mathematics or programming background is required for this module.

Skills developed: Intelligence, Artificial Intelligence, Perception and reasoning, Automation vs AI, Analytics vs AI, Input → Model → Output.

Tools used: VS Code, Jupyter, Google Colab.

1.1.05

Academic Definition

Intelligence, in the cognitive-science sense, is the capacity of an agent to acquire information from its environment, transform that information into usable internal structure, and select actions that advance a goal. Artificial intelligence keeps that structure and replaces the biological substrate with computation: sensors or datasets provide the information, mathematical models provide the internal structure, and software actions provide the behaviour.

Two very different things are called 'AI' in ordinary conversation. AI as a field is a body of research spanning search, logic, probability, statistics, optimisation, neural computation and linguistics. AI as a product is a specific application — a fraud score, a churn prediction, a chat assistant — built by assembling data, a trained model and an interface. Keeping these separate prevents a great deal of confusion: progress in the field is measured in published methods, while progress in a product is measured in business outcomes and reliability.

1.1.06

Simple Explanation

So a plain-language definition is: AI is software that produces useful answers for situations nobody explicitly programmed, because it learned the pattern from examples. It is not a mind, it is not aware, and it does not want anything. It is a statistical function that has been fitted to data and then asked to generalise.

1.1.07

Why It Matters

Most failed AI initiatives fail at the definition stage, not the modelling stage. A team is asked to 'add AI' to a process that is actually a deterministic rule ('block any transaction above the limit'), and they spend a quarter training a model that a single conditional statement would have solved more reliably and more cheaply. The reverse also happens: a team writes ten thousand hand-tuned rules for a problem — document classification, say — that has too many exceptions to enumerate, and the rule base collapses under its own maintenance cost.

Being able to say precisely whether a problem is a rule problem, a reporting problem or a learning problem is therefore the first professional skill in this programme. It determines the architecture, the cost, the team and the risk profile of everything that follows.

The AI family, at a glance

The universal AI pipeline

Every deployed AI system, from a churn score to an agent, follows this shape.

  1. Input

    record, image, text

  2. Preparation

    clean, encode, features

  3. Model

    learned parameters

  4. Output

    label, number, text

  5. Action

    or human review

A five-step horizontal flow: Input, Preparation, Model, Output, Action, with uncertainty routing to a human review step.

Scenario exercise

A hospital wants to flag patients likely to miss an appointment. Write down the data you would need, the decision the prediction supports, and the person accountable for acting on it. In the full programme you compare your answer with the worked solution and build the model in the Day 1 lab.

Knowledge check

A bank blocks every transaction above a fixed limit. What is this?

25 more pages in this chapter are members-only

The full chapter continues with deep-dive theory, worked code with line-by-line explanation, industry application, the Day 1 lab, assignment, summary and glossary — then nineteen more days through Machine Learning, Deep Learning, Transformers, LLMs, RAG and Agents.