Inprobability theory,statistics, andmachine learning,recursive Bayesian estimation, also known as aBayes filter, is a general probabilistic approach forestimating an unknownprobability density function (PDF) recursively over time using incoming measurements and a mathematical process model. The process relies heavily upon mathematical concepts and models that are theorized within a study of prior and posterior probabilities known asBayesian statistics.
A Bayes filter is an algorithm used incomputer science for calculating the probabilities of multiple beliefs to allow arobot to infer its position and orientation. Essentially, Bayes filters allow robots to continuously update their most likely position within a coordinate system, based on the most recently acquired sensor data. This is a recursive algorithm. It consists of two parts: prediction and innovation. If the variables arenormally distributed and the transitions are linear, the Bayes filter becomes equal to theKalman filter.
In a simple example, a robot moving throughout a grid may have several different sensors that provide it with information about its surroundings. The robot may begin with certainty that it is at position (0,0). However, as it moves further and further from its original position, the robot has continuously less certainty about its position; using a Bayes filter, a probability can be assigned to the robot's belief about its current position, and that probability can be continuously updated from additional sensor information.
The measurements are themanifestations of ahidden Markov model (HMM), which means the true state is assumed to be an unobservedMarkov process. The following picture presents aBayesian network of a HMM.

Because of the Markov assumption, the probability of the current true state given the immediately previous one is conditionally independent of the other earlier states.
Similarly, the measurement at thek-th timestep is dependent only upon the current state, so is conditionally independent of all other states given the current state.
Using these assumptions the probability distribution over all states of the HMM can be written simply as
However, when using the Kalman filter to estimate the statex, the probability distribution of interest is associated with the current states conditioned on the measurements up to the current timestep. (This is achieved by marginalising out the previous states and dividing by the probability of the measurement set.)
This leads to thepredict andupdate steps of the Kalman filter written probabilistically. The probability distribution associated with the predicted state is the sum (integral) of the products of the probability distribution associated with the transition from the (k - 1)-th timestep to thek-th and the probability distribution associated with the previous state, over all possible.
The probability distribution of update is proportional to the product of the measurement likelihood and the predicted state.
The denominator
is constant relative to, so we can always substitute it for a coefficient, which can usually be ignored in practice. The numerator can be calculated and then simply normalized, since its integral must be unity.
Sequential Bayesian filtering is the extension of the Bayesian estimation for the case when the observed value changes in time. It is a method to estimate the real value of an observed variable that evolves in time.
There are several variations:
The notion of Sequential Bayesian filtering is extensively used incontrol androbotics.