Kalman Filter for Bayesians

Summary: the Kalman Filter is Bayesian updating applied to systems that are changing over time, assuming all our distributions are Gaussians and all our transformations are linear.

Preamble—the general Bayesian approach to estimation: the Kalman filter is an approach to estimating moving quantities. When I think about a Bayesian approach to estimation, I think about passing around probability distributions: we have some distribution as our prior, we gather some evidence, and we have a new distribution as our posterior. In general, the mean of our distribution measures our best guess of the underlying value, and the variance represents our uncertainty.

In the Kalman filter, the only distribution we use is the normal/​Gaussian distribution. One important property of this is that it can be parameterized completely by the mean and variance (or covariance in the multi-variate case.) If you know those two values, you know everything about the distribution.

As a result, people often talk about the Kalman filter as though it’s estimating means and variances at different points, but I find it easier to think of it as outputting a distribution representing our current knowledge at any point.

The simplest case: taking multiple measurements of a fixed quantity with an accurate but imprecise sensor. For example, say we’re trying to measure the temperature with a thermometer that we believe is accurate but has a variance of 5 degrees.

We’re very bad at estimating temperatures by hand, so let’s say our prior distribution is that the temperature is somewhere around 70 degrees with a variance of 20, or . We take one readout from the thermometer, which (by assumption) yields a normal distribution centered around the true temperature with variance 5: N(t, 5). The thermometer reads 78. What’s our new estimate?

Well, it turns out there’s a simple rule for combining Normal distributions with known variance: if our prior is and our observation is then the posterior has mean

(1)

(2) , where

(3) is called the Kalman gain.

So if our first reading is 72, then is , , and . If we take another reading, we’d apply the same set of calculations, except our prior would be .

Some intuition: let’s look at the Kalman gain. First, note that its value is always between 0 or 1. Second, note that the gain is close to 0 if is large compared to , and close to 1 in the opposite case. Intuitively, we can think of the Kalman gain as a ratio of how much we trust our new observation relative to our prior, where the variances are a measure of uncertainty.

What happens to the mean? It moves along the line from our prior mean to the observation. If we trust the observation a lot, is nearly 1, and we move almost all the way. If we trust the prior much more than the observation, we adjust our estimate very little. And if we trust them equally, we take the average of the two.

Also note that the variance always goes down. Once again, if we trust the new information a lot, the variance goes down a bunch. If we trust the new information and our prior equally, then the variance is halved.

Finally, as a last tidbit, it doesn’t matter whether which distribution is the prior and which is the observation in this case—we’ll get exactly the same posterior if we switch them around.

Adding a sensor: none of the math above assumes we’re always using the same sensor. As long as we assume all our sensors draw from distributions centered around the true mean and with a known (or estimated) variance, we can update on observations from any number of sensors, using the same update rule.

Measuring multiple quantities: what if we want to measure two or more quantities, such as temperature and humidity? Then we now have multivariate normal distributions. While a single-variable Gaussian is parameterized by its mean and variance, an -variable Gaussian is parameterized by a vector of means and an covariance matrix: .

Our update equations are the multivariate versions of the equations above: given a prior distribution and a measurement from a sensor with covariance matrix , our posterior distribution is with:

(4)

(5)

(6)

These are basically just the matrix versions of equations (1), (2), and (3).


Adding predictable change over time: so far, we’ve covered Bayesian updates when you’re making multiple measurements of some static set of quantities. But what about when things are changing? A classic example is a moving car. For this case, let’s assume we’re measuring two quantities – position and velocity.

For a bit more detail, say at time our vector where is the position and is velocity. Then at time , we might expect the position to be , and the velocity to be the same on average. We can represent this with a matrix: , where is the matrix .

More generally, say our belief at time is . Then our belief at time , before we make any new observations, should be . Fortunately there’s a simple formula for this: .

Putting it all together, say our belief at time is , and at time we measure a value from a sensor with covariance matrix , then we perform the Bayesian update with as the prior and as the posterior:

(7)

(8)

(9)

And that’s the main idea! We just adjust our prior by applying a transition function/​matrix to it first In practice, the Kalman filter tends to quickly converge to true values, and is widely used in applications such as GPS tracking.