Question 1¶
Which of the following are correct notation for information transitions?
%T: πβββ = π(πβ, π’β, π¦βββ)
%T: πβ = π(πβββ, π’βββ, π¦β)
%T: πβββ = π(πβββ, π’βββ, π¦βββ)
%F: πβββ = π(πβ, π’β, π¦β)
%T: πβββ = π(π(πβββ, π’βββ, π¦β), π’β, π¦βββ)
%F: πβββ = π(π(πβββ, π’β, π¦β), π’βββ, π¦βββ)
%F: πβ = π(πβββ, π’β, π¦βββ)
%F: πβββ = π(πβ, π’βββ, π¦βββ)
%T: πβββ = π(π(πβ, π’β, π¦βββ), π’βββ, π¦βββ)
%F: πβββ = π(πβββ, π’β, π¦βββ)
Question 2¶
Consider a 4Γ4 grid πΈβ with rows AβD and columns 1β4. Cells A2, B2, and C2 are obstacles. The robot can move Up (U), Down (D), Left (L), or Right (R). If the robot tries to move into a wall or obstacle, it stays in its current cell.
The robot's sensor reports the number of neighbors (up, down, left, right) that are either a wall or an obstacle, the sensor values can be 0, 1, 2, 3, or 4.
The robot does not know its starting cell.
The sensor value-based groups are: π¦β = 1: {B3, B4, C3, C4, D3}; π¦β = 2: {A3, A4, B1, C1, D1, D2, D4}; π¦β = 3: {A1}.
Which of the following are true?
Question 3¶
Now consider grid πΈβ with the same rules as Question 2, but with obstacles at A4, B4, C4.
The sensor value-based groups are: π¦β = 0: {B2, C2}; π¦β = 1: {A2, B1, B3, C1, C3, D2, D3}; π¦β = 2: {A1, A3, D1}; π¦β = 3: {D4}.
Which of the following are true?
Question 4¶
Now consider grid πΈβ with the same rules as Question 2, but with obstacles at B4 and D3.
The sensor groups are: π¦β = 0: {B2, C2}; π¦β = 1: {A2, A3, B1, B3, C1, C3}; π¦β = 2: {A1, C4, D1, D2}; π¦β = 3: {A4, D4}.
Which of the following are true?
Question 5¶
Consider the two-bit filter wiht a state π β {T, F}. The state is updated based on whether the most recent observation matches the previous observation. The update rule is:
- If the current observation equals the previous observation, the filter state stays the same.
- If the current observation differs from the previous observation, the filter state flips.
The observation alphabet is {π, π}. Which of the following are true?
Question 6¶
Consider the two-bit filter from Question 5, but now with observation alphabet {π, π, π}. The same update rule applies: the filter state flips when the current observation differs from the previous one, and stays when they match.
Which of the following are true?
Question 7¶
Consider derived information spaces, information feedback plans, and the concept of eliminating surprise.
Which of the following are true?
Question 8¶
Consider gap navigation trees (GNTs), billiard trajectories in polygons, and combinatorial filters.
Which of the following are true?