EST
1894
TULSA
The University of Tulsa · Fall 2026

Fundamentals
of Artificial
Intelligence

A first course in how machines sense, reason, and learn — from first principles.

CS 1010 · Tandy School of Computer Science Lecture Series
Lecture 01 · Foundations

What Is Artificial Intelligence?

AI is the science of building systems that perform tasks we'd call intelligent — recognizing a face, understanding a sentence, or choosing a winning move.

The key idea

Instead of being told every rule by a programmer, a modern AI system learns patterns from examples — much like a student learns from practice.

01
Module One

How Machines
Learn

Before a system can recognize a cat or translate a sentence, it has to learn from data. This module is about what "learning" actually means for a machine.

Module 01 · The Landscape

Three Ways Machines Learn

01

Supervised
Learning

The system studies labeled examples — inputs paired with the right answers — and learns to predict the answer for new inputs.

ExampleFlagging spam from thousands of emails marked "spam" or "not spam."
02

Unsupervised
Learning

No labels at all. The system explores raw data and discovers its own structure — groupings, patterns, and outliers.

ExampleSorting shoppers into natural segments without being told the categories.
03

Reinforcement
Learning

The system learns by doing — trying actions, receiving rewards or penalties, and improving its strategy over time.

ExampleA program mastering chess by playing millions of games against itself.
Module 01 · A Closer Look

Inside a Neural Network

Information flows from an input layer, through hidden layers that combine and weigh signals, to an output — the network's answer. Training nudges those weights until the answers get better.

Input Hidden Output
Looking Ahead

What You'll Build This Semester

1

A digit recognizer

Train your first model to read handwritten numbers — and see exactly why it works.

2

A text classifier

Teach a system to tell the difference between reviews that are positive and negative.

3

An AI ethics case study

Investigate where these systems fail — and who is responsible when they do.