Introduction
Broadcasting lets us do math on arrays of different sizes easily. It saves time and makes code simple.
Adding a single number to every element in a list of numbers.
Multiplying each row of a table by a different number without writing loops.
Comparing two lists of different lengths element-wise.
Applying a formula to a matrix and a vector without extra steps.