Neural networks: Each individual neuron has a bunch of weights + a bias.  In total, this simple network:

Activation functions: A neuron computes a weighted sum of its inputs, something like: z = w₁x₁ + w₂x₂ + w₃x₃ + b

Backprop: efficient way of changing weights to get to more accurate results / reduce loss

Vectors vs Points