What the exam asks you to produce: for a tree, the value of every node with the weighted sum written out in full at every chance node ("show your calculations"), plus the move the root takes; for MCTS, the node the next rollout happens at, and a rise, fall or unchanged verdict on every UCB1 value after one iteration.
"it captures relative uncertainty... when you propagate upwards... the siblings basically are going to ever so slightly increase because there's increased uncertainty now." (Exercise session, T8)
That sentence is the reason for the change column in this visualiser. When a rollout goes through one child, the arithmetic touches three groups of nodes: the visited path, where both terms move; the siblings of every node on that path, where only the exploration term moves, upward, because N(Parent) grew while N(n) stood still; and everyone else, unchanged. The newly added node c counts as a node on the path, so the children the expanded node already had are siblings of c and rise too.
Preloaded problems: Part 8 PDF pp.9, 10 and 29 from FAI_Part8_GameTreesWithUncertainty_25-26.pdf; exercise session 5 sections 3 and 5 from FAI_EXERCISES_Game_Trees.pdf with the published solutions in Oefenzitting05-games.pdf; two constructed problems, both labelled as constructed. Every trace in this file was generated by the engine below and diffed state by state against an independent Python implementation of the same two algorithms.