Consider a simple state space model $$x_{t+1}=Ax_t+C\omega_t\\ y_t=Gx_t+v_t $$ Besides the orthogonal assumption for $w_{t+1}$ and $v_t$, we assume that $w_{t+1}\sim N(0,I)$ and $v_t\sim N(0,R)$. We observe $y_t$ while we want to estimate the sequence of $x_t$ using Kalman filter. During the process we will derive the following two conditional expectations: \begin{align*} \mathbb{E}[x_t|y_{t-1}]\\ \mathbb{E}[x_t|y_{t}] \end{align*} When applying Kalman filter, we use the first expression as our estimation of $x_t$. I want to know why we do not use the second conditional expectation instead. My intuition is that we start the algorithm with a prior $\hat{x}_0=\mathbb{E}[x_0]$, but $\mathbb{E}[x_0|y_0]$ clearly contains more information than the trivial prior. That is, at the beginning, we assume that \begin{align*} x_0\sim N(\mu_0,\Sigma_0) \end{align*} while it's not difficult to obtain the following result: \begin{align*} \mathbb{E}[x_0|y_0]=\mu_0+L_0(y_0-G\mu_0) \end{align*} where \begin{align*} L_0=\Sigma_0G'(G\Sigma_0G'+R)^{-1} \end{align*} Then, which one should we take as the estimation $\hat{x}_{t-1}$? $\mu_0$ (which could be regarded as $\mathbb{E}[x_0|y_{-1}]$) or $\mathbb{E}[x_0|y_0]$?
2026-03-30 12:01:48.1774872108
Why we use the expectation conditional on signal one period before as the estimation of state variable in Kalman filter?
46 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in ECONOMICS
- Total savings from monthly deposits
- Calculus problem from a book of economics.
- a risk lover agent behave as if risk natural.
- Changes in the mean absolute difference (relating to the Gini coefficient)
- Absurd differential in first order condition
- FM Actuary question, comparing interest rate and Discount rate
- How do I solve for the selling price?
- Stochastic Dynamic Programming: Deriving the Steady-State for a Lottery
- A loan is to be repaid quarterly for five years that will start at the end of two years. If interest rate is $6$%..
- A cash loan is to be repaid by paying $13500$ quarterly for three years starting at the end of four years. If the interest rate is $12$%
Related Questions in TIME-SERIES
- Expected Value of a time series model
- Calculating the Mean and Autocovariance Function of a Piecewise Time Series
- Autocovariance of a Sinusodial Time Series
- Why do we use a sequence of random variables to model **Univariate** Time Series?
- Calculating the conditional probability of a location given a specific time frame
- Determining first element of an AR1 model
- Finding ACVF of An AR(3) Process
- Question on limiting form of Doob's submartingale inequality
- $x_t = A\sin(t) + B\cos(t)$ is deterministic
- Explaining the fit of Correlation and Covariance in AR and MA models
Related Questions in KALMAN-FILTER
- extended kalman filter equation for orientation quaternion
- Gradient of a matrix equation (From the proof of the Kalman Filter)
- Mahalanobis whitening in a multivariate Gaussian kernel
- Kalman Filter with time varying parameters
- reference request for extended kalman filter continuous time system with discrete measurement
- covariance of a Markov chain derivation (Kalman filter)
- A simulation: What's the difference between linear MPC and LQG?
- Why variance in kalman?
- Optimization vs. filtering
- Maximum likelihood - random walk with noise measurement
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
I would like to see the referece for
because this claim sounds incomplete. It is either wrong or mis-interpreted.
In Kalman filters, we are really aiming at $\mathbb{E}[x_t | y_{1:t}]$. This expectation is mostly termed as our estimation of $x_t$, as it encodes the best estimate of the random variable $x_t$ given all the information from data up until time $t$ (recall the definition of conditonal expectation). Here I denote $y_{1:t} = \{ y_1, y_2, \ldots, y_t\}$.
The core of Kalman filters is to recursivly compute $\mathbb{E}[x_t | y_{1:t}]$ by using its previous estimate $\mathbb{E}[x_{t-1} | y_{1:t-1}]$ for $t=1,2,\ldots$. Note that we define $\mathbb{E}[x_{0} | y_{1:0}]= \mathbb{E}[x_{0}]$.
The quantity $\mathbb{E}[x_t | y_{1:t-1}]$ is called the predictive mean which is an essential intermediate quantity to obtain the filtering distributions.
Your intuition is correct, but $\mathbb{E}[x_0 | y_0]$ is not useful, as we, in practice, don't have $y_0$. You start the Kalman filtering equations from $x_0$ (i.e., the initial condition).