|
1 |
| -Show animation. mention colored Numbers. |
2 |
| -Deterministic -> human manipulate the initial condition to acheive outcome. |
3 |
| -Initial condition: 6 numbers: angular momentum and linear velocity. |
4 |
| -Cell structure, because if you error a little, you should still get the same result, as physics is continuous. |
5 |
| -strategy 1: Find a large cell. |
6 |
| -strategy 2: Cells of the same number. |
7 |
| -Leads to question: can it happen? |
8 |
| -Can adjacent cells be of opposite numbers? |
9 |
| -Let me ask you: What is the edge? |
10 |
| -Does standing on edge exists as exact solutions? |
11 |
| -Ring climbs hump rail analogy |
12 |
| -vertices that connect three cells? |
13 |
| -Can there be vertices that connect four cells? |
14 |
| -Are four-vertices even avoidable in a 6D cell structure? |
15 |
| -With the power of simulation, we can plot things out. |
16 |
| -We can fast-forward time and run 1 simulation per second. |
17 |
| -Dynamic 1D plotting. Marching and binary searching. Find third color? recursive. |
18 |
| -Show. Y axis is time, the time it takes for the dice to settle down. The algo successfully avoided abviously boring areas. |
19 |
| -Findings: borders strikes up high; boring areas and crazy areas. |
20 |
| -However, fails to honest policy. Not using it in the future. |
21 |
| -Also, y axis: simulation time before settle down. Think: how can you tell it's settled down? |
22 |
| -Never reaches zero. 10 to the minus sth. Even better: call the end of simulation before settle down. |
23 |
| -We used total energy. |
24 |
| -Border |
25 |
| -Border with animation |
26 |
| -Now imagine you do a binary search. Show forever.mat |
27 |
| -Party: don't you wonder how this looks in 2D? Or even 6D? |
28 |
| -How to optimize? How to trace out the border of a cell without bothering too much about the inside of a cell? |
29 |
| -show cheat |
30 |
| -Green dot??? Periodicity??? |
31 |
| -Show repetition. Many cells? Same cell, with ripple surface? |
32 |
| -Compare with honest. |
33 |
| -What's going on? zoom in to see! |
34 |
| -Now I will take you on a tour into this 2D space. |
35 |
| -"Before I zoom it, What do you expect to see? " |
| 1 | +Open Matlab. Open Processing 3. |
| 2 | + |
| 3 | +`main` |
| 4 | + Mention colors |
| 5 | + 3d rotate |
| 6 | + Edge contacting Ground turns red |
| 7 | + |
| 8 | +Deterministic |
| 9 | + Same initial condition → same outcome |
| 10 | + "From this point on, whenever I say 'outcome', I mean the number that the dice gives you in the end. When ever I say 'initial condition', I mean these six real numbers." 3+3. Initial condition space is 6D. |
| 11 | + If a human has perfect control over the initial condition, then they can roll whatever number they want. |
| 12 | + What's the problem? |
| 13 | + [click] |
| 14 | + Human has error, and the initial condition may be just a little bit off, and the outcome would be different. However, |
| 15 | + [click] |
| 16 | + if the initial condition is similar enough, then the outcome should be the same. |
| 17 | + Before I prove this, do you agree with me? Does it make sense? |
| 18 | + It makes sense, because physics is a continuous thing. The initial condition space is a continuous space. Outcome is discrete, so a dice roll is just some sort of rounding operation. |
| 19 | + For rounding operations, this [equation] makes sense. We also see that I can't prove this anymore, since it's only true 99% of the time. But we will get to that later. |
| 20 | + [click] |
| 21 | + |
| 22 | +Cell structure: |
| 23 | + Now let's map out function f. In the 6D initial condition space, each point leads to an outcome. If we color the 6D space according to outcome, we should get something like this image. Compartments. I call it "cell structure". This is a direct result from this [last slide]. [next slide] You randomly pick a point, and you know its local surrounding is of the same color, because physics is continuous. |
| 24 | + So, for a human to manipulate the outcome of a dice, we just need to find a large cell. You aim at the middle and as long as the cell is larger than your error, you get the desired outcome. |
| 25 | + [click] |
| 26 | + So that's strategy 1. Alternatively, we can find a group of cells of the same color. This leads to an interesting question: can we have adjacent cells of the same color? Or, a better question is, |
| 27 | + [click] |
| 28 | + Can we have adjacent cells pointing to opposite faces on the cube? For example, 1 and 6? Is that even possible? Because they are not adjacent on the dice! |
| 29 | + And thinking about that, we realize that we haven't asked the most important question: |
| 30 | + [click] |
| 31 | + What is a border? Topologically speaking, we must have borders seperating the cells. What do borders correspond to in terms of dice rolling? |
| 32 | + What do you guys think? |
| 33 | + What's inbetween 1 and 3 but not 1 and not 3? |
| 34 | + I can show you. |
| 35 | + ``` |
| 36 | + whats_edge |
| 37 | + ``` |
| 38 | + [read slide] |
| 39 | + Now let's keep going. |
| 40 | + [click] |
| 41 | + What about vertices that connect three cells? Is the dice standing on its corner? Ok, if that's the case, |
| 42 | + [click] |
| 43 | + What about vertices that connect 7 cells? [Read slide] |
| 44 | + [click] |
| 45 | + Wait a sec… There’s only 6 faces on a dice! |
| 46 | + Really interesting topology questions here. |
| 47 | + I hope, by now, I have successfully aroused your curiosity, because I'm going to show you graphs now. |
| 48 | + |
| 49 | +1D investigation |
| 50 | + Let's first start 1D. |
| 51 | + [click] |
| 52 | + We take a line in the 6D space. |
| 53 | + [click] |
| 54 | + And this is our 1D initial condition line. We are basically coloring this line. |
| 55 | + One naive way of doing this is to sample points with equal distance, run a simulation for each point and check the outcome. |
| 56 | + [click] |
| 57 | + However, However, However, we can do better. We only care about where the borders are. We don't really need to sample a lot of points within a cell. |
| 58 | + [click] |
| 59 | + Could we increase resolution near the border, and decrease resolution within a cell? |
| 60 | + [click] |
| 61 | + Introducing, 1D dynamic sampling algorithm. The process alternate between marching mode and binary searching mode. We start in marching mode. We take big strides until we encounter a different color. Once that happens we know the border must be inside this section so we switch to binary search mode and seek out the boundary. Once we reach satisfactory resolution we return to marching mode and keep going. |
| 62 | + Let's see it in action. |
| 63 | + `investigate1D` |
| 64 | + Do you see that? The algorithm successfully skipped over obviously boring area without bothering with it. So that's good. |
| 65 | + By the way, Y axis is time, the time it takes for the dice to settle down. |
| 66 | + I'll stop the program now because it's going to take a day. |
| 67 | + [slide click] |
| 68 | + This is the result. Look at this beautiful thing. What's going on there. |
| 69 | + The first thing we notice: [pause] Borders strike up high. Within a cell it's lower. |
| 70 | + This aligns with our hypothesis that borders mean the dice will stand on its edge. To really see what's going on at the border, we can just zoom it and let MATLAB plot again. |
| 71 | + [click]s... |
| 72 | + [video] |
| 73 | + What's this shape? What equation would describe this? |
| 74 | + And michael said, why don't we use dynamic plotting again? |
| 75 | + You see, if we zoom in we lose the big picture. If we look at the big picture we don't see the datails. Why don't we up the resolution near the border? This is what we got. |
| 76 | + [click] |
| 77 | + Hmm. This would be a great thing to look at another day. Today we need to move on. |
| 78 | + [click] |
| 79 | + This is plotting with the naive sampling method. If we compare our dynamic sampling and the naive sampling, we see that our method missed a lot of cells, due to the nature of its marching. That's why we didn't use dynamic sampling in most of the plots. |
| 80 | + And then we zoomed into this part. |
| 81 | + [click] |
| 82 | + Now, don't you wonder what this will look like in 2D? |
| 83 | + [click] |
| 84 | + |
| 85 | +2D investigation |
| 86 | + So let's take a plane in the 6D space. |
| 87 | + [click] |
| 88 | + explain 2d dynamic sampling |
| 89 | + [click]s... |
| 90 | + Compared to naive sampling, in 2D dynamic sampling really saves us a lot of simulations! |
| 91 | + But really, what's here? |
| 92 | + Why is there a lonely green dot here? Again, another great topic for yet another day. Today we need to move on. |
| 93 | + Dynamic sampling still has the problem of missing details. So in the future we will only use naive sampling. |
| 94 | + Here we see some repetition. If we zoom in on X axis and zoom out on Y axis, we get this. |
| 95 | + [click] |
| 96 | + It's periodic. Strange. Very strange. What on earth is periodic about rolling a dice in terms of initial condition? Unsolved mystery here. |
| 97 | + Note that these can be many different cells, but they can also be the same cell. Remember this is a 2D slice in a 6D space. |
| 98 | + [blackboard] |
| 99 | + But then, why would there be ripples on the surface of a 6D cell? |
| 100 | + Things to think about. |
| 101 | + |
| 102 | +Tour |
| 103 | + Now I will take you on a tour into this 2D space. |
| 104 | + [processing] |
| 105 | + zoom out. Dice is pretty random. |
| 106 | + red sea. |
| 107 | + [video] |
| 108 | + Micro party |
| 109 | + Look at the three blue areas. Do they look the same? |
| 110 | + [video] |
| 111 | + This is showing all 6 different outcomes |
| 112 | + [video] |
| 113 | + ... |
| 114 | + "The coast line gets more complex as you zoom in." |
| 115 | + "Before I zoom it, What do you expect to see? " |
| 116 | + ... |
| 117 | + [video] stands on corner |
0 commit comments