I’ll be solving all of the problems from Chip Huyen’s ML Interviews Book (MLIB). Many ML companies ask questions similar to the ones found in this book and I’ve found it to be an invaluable resource in my preparation.

Math

Algebra

Vectors

  1. Dot product
    1. The geometric interpretation of the dot product is that for , it projects onto and multiplies the magnitude of the projected vector by . This result tells you how much one vector goes in the direction of the other. The projection can be done the other way around and will yield the same result. If the vector you project onto doesn’t have unit length, the result of the dot product is scaled by the length of the vector being projected onto. 1, 2
    2. We want to maximize with the constraint that is of unit length. Multiplying a vector by itself yields the maximum product, which is what makes the dot product useful as a similarity measure between vectors. A positive dot product implies two vectors that point in the same direction while a negative dot product implies the opposite. Thus, should be scaled down to be of unit length, so .
  2. Outer product
    1. Given and , .
    2. The outer product is useful in cases where we care about pairwise interactions between features. For example, it is used when computing the covariance matrix in PCA. The outer product is also much faster than using two for loops. 1
  3. Two vectors are linearly independent if one vector cannot be constructed from the other vector using nothing but linear operations (vector addition and scalar multiplication). If a vector in a set of vectors can be represented as a linear combination of the other vectors, it is said to be a linearly dependent vector.
  4. Two sets of vectors and share the same basis if both . A span of a vector set is all of the points reachable through some linear combination of the vectors in the set. This implies that both sets also share the same basis vectors, i.e. every vector in and can be formed given some linearly independent set that spans the entire space. 1
  5. Given vectors, each of dimensions, the dimension of their span is at most if all of the vectors are linearly independent, and at least 1 if none of the vectors are linearly independent. If every vector can be written as a linear combination of one vector, the basis vector is just that line, hence the minimum dimension of the span is 1.
  6. Norms and metrics
    1. A norm is a measure of a vector’s length. A norm must satisfy the properties of positive definiteness, homogeneity, and triangle inequality. 1
      • norm: The number of nonzero elements in a vector. Technically not a norm.
      • norm: Known as the Taxicab norm, it is the sum of the absolute values of elements in a vector. .
      • norm: Known as the Euclidean norm, it is the Euclidean distance of a vector. .
      • norm: The magnitude of the maximum element in a vector. The norm values from trend toward this value.
    2. A metric is a function that can measure the distance between two points in space. Norms are defined for vectors spaces while metrics can be defined on any set. Essentially, norms measure the size of a single item while metrics measure distances between pairs of items. Thus, given a norm a metric can be defined as . Given a metric, we cannot necessarily create a norm as norms are only defined for vector spaces. 1

Matrices

  1. Matrices are linear transformations because matrix operations boil down to linear operations