Question 1: Deterministic state flow¶
Let 𝑋 = ℝ be the state space. Let 𝑓 : 𝑋 → 𝑋 be the deterministic state flow defined as 𝑓(𝑥) = 2𝑥 + 1.
Let
X_{k+1}(X_k) = \{x_{k+1} \in X \mid x_k \in X_k \text{ and } x_{k+1} = f(x_k) \}.
\\\
Question 2: Nondeterministic state flow¶
Let 𝑋 = ℝ be the state space. Let 𝑓 : 𝑋 → pow(𝑋) be the nondeterministic state flow defined as:
f(x) = \{x + d \in X \;|\; d \in [-1,1] \}.
\\\
Let
X_{k+1}(X_k) = \{x_{k+1} \in X \mid x_k \in X_k \text{ and } x_{k+1} \in f(x_k) \}.
\\\
Question 3: Nondeterministic temporal filtering¶
Consider the same setup as in the previous problem, but now include a sensor mapping ℎ : 𝑋 → 𝑌 defined by:
y = \lfloor x + \tfrac{1}{2} \rfloor,
\\\
in which ⌊·⌋ denotes the floor function (equivalent to the floor function in Python).
Question 4: Discrete probability statements¶
Select ALL correct statements:
Question 5: More discrete probability statements¶
Select ALL correct statements:
Question 6: Gaussians and sampling¶
Let 𝑆 ⊂ ℝ be a collection of 10,000 distinct samples that have mean 𝜇 and variance 𝜎².
Make a set 𝑆₁ = { 𝑥 ∈ ℝ ∣ 𝑥 − 1 ∈ 𝑆 } by adding 1 to all of the samples. Make another set 𝑆₂ = { 𝑥 ∈ ℝ ∣ 𝑥 / 2 ∈ 𝑆 } by multiplying all of the samples by 2. Let 𝜇ᵢ and 𝜎ᵢ² denote the mean and variance, respectively, of 𝑆ᵢ for 𝑖 = 1, 2.
Question 7: Probabilistic filters¶
Select all correct statements:
Question 8: More probabilistic filters¶
Select all correct statements: