Particle Filter Flashcards

1
Q
  1. What is the fundamental idea behind the Particle Filter (PF), and how does it address the limitations of traditional Kalman filters?
A

The Particle Filter (PF) is a non-parametric Bayesian filter that approximates the posterior distribution using weighted particles. It addresses limitations of traditional Kalman filters by handling non-linear and non-Gaussian systems.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
  1. Explain the concept of sequential importance sampling in the context of particle filtering.
A

Sequential importance sampling involves recursively updating particle weights based on measurement likelihood. It ensures that likely states receive higher weights.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q
  1. What is resampling in the Particle Filter, and why is it necessary?
A

Resampling is the process of selecting particles with replacement based on their weights. It prevents particle degeneracy and maintains diversity.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q
  1. Describe the role of the proposal distribution in the PF.
A

The proposal distribution generates new particles from existing ones. It determines how particles propagate through the state space.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q
  1. Provide the weight update equation for particles in the Particle Filter.
A

The weight update equation for particles in the PF is: (w_t^{(i)} = \frac{p(z_t | x_t^{(i)})}{\sum_{j=1}^N p(z_t | x_t^{(j)})}) where (w_t^{(i)}) is the weight of particle (i) at time (t), (z_t) represents the measurement, and (x_t^{(i)}) is the state estimate.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q
  1. How do we measure the effectiveness of a set of particles in the Particle Filter?
A

The effective particle count is calculated as the reciprocal of the sum of squared weights. If it is close to the total number of particles, resampling is needed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q
  1. Discuss the importance of the state transition model (motion model) in the PF.
A

The state transition model predicts how particles evolve over time. It guides the proposal distribution during resampling.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q
  1. What role does the observation model (measurement likelihood) play in the Particle Filter?
A

The observation model evaluates the likelihood of measurements given the predicted state. It updates particle weights based on measurement consistency.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q
  1. Explain the concept of the Bootstrap Particle Filter (BPF).
A

The Bootstrap Particle Filter (BPF) samples particles from the prior distribution and updates them using the observation likelihood.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q
  1. Provide examples of real-world applications where Particle Filters are commonly used. Also, discuss any challenges associated with their implementation.
A

Particle Filters find applications in tracking, robotics, and navigation. Challenges include computational complexity and handling multi-modal distributions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly