Phase 01
Math Foundations
22 lessons
01
Linear Algebra Intuition
Every AI model is just matrix math wearing a fancy hat.
02Vectors, Matrices & Operations
Every neural network is just matrix multiplication with extra steps.
03Matrix Transformations
A matrix is a machine that reshapes space. Learn what it does to every point, and you understand the whole transformation.
04Calculus for Machine Learning
Derivatives tell you which way is downhill. That is all a neural network needs to learn.
05Chain Rule & Automatic Differentiation
The chain rule is the engine behind every neural network that learns.
06Probability and Distributions
Probability is the language AI uses to express uncertainty.
07Bayes' Theorem
Probability is about what you expect. Bayes' theorem is about what you learn.
08Optimization
Training a neural network is nothing more than finding the bottom of a valley.
09Information Theory
Information theory measures surprise. Loss functions are built on it.
10Dimensionality Reduction
High-dimensional data has structure. You find it by looking from the right angle.
11Singular Value Decomposition
SVD is the Swiss Army knife of linear algebra. Every matrix has one. Every data scientist needs one.
12Tensor Operations
Tensors are the common language between data and deep learning. Every image, every sentence, every gradient flows through them.
13Numerical Stability
Floating point is a leaky abstraction. It will bite you during training, and you will not see it coming.
14Norms and Distances
Your distance function defines what "similar" means. Choose wrong and everything downstream breaks.
15Statistics for Machine Learning
Statistics is how you know if your model actually works or just got lucky.
16Sampling Methods
Sampling is how AI explores the space of possibilities.
17Linear Systems
Solving Ax = b is the oldest problem in mathematics that still runs your neural network.
18Convex Optimization
Convex problems have one valley. Neural networks have millions. Knowing the difference matters.
19Complex Numbers for AI
The square root of -1 is not imaginary. It is the key to rotations, frequencies, and half of signal processing.
20The Fourier Transform
Every signal is a sum of sine waves. The Fourier transform tells you which ones.
21Graph Theory for Machine Learning
Graphs are the data structure of relationships. If your data has connections, you need graph theory.
22Stochastic Processes
Randomness with structure. The math behind random walks, Markov chains, and diffusion models.