> The dimension of the configuration space of the juggling pin is six: the minimum number of parameters that specify the position in space is three, and the minimum number of parameters that specify an orientation is also three.
Can somebody explain this? Isn't the number of parameters that specify an orientation two, totaling five?
Pick two atoms in the pin and specify the location of one atom. Now the other atom can only be located on a sphere around the first atom. The sphere is a 2d surface for which you need two parameters.
Another problem is that you can encode two real numbers into one, for example by interleaving digits. So you could specify the entire pin with one real number. What exactly is the problem here and how can you eliminate it? You need to impose more conditions than simply continuity, because you can make a continuous bijection [0,1] <-> [0,1]^2?
I really like the approach of this book. I often don't feel like I understand (or even know what there is to understand) something until I code a program for it. For example you understand collisions if you can write a program that given an initial configuration of polygons at t=0, gives the configuration at later time. If you don't do this then you don't know exactly what you understand. Perhaps you understand collisions of point masses, but not general collisions.
The dimension of the configuration space of the juggling pin is six: the minimum number of parameters that specify the position in space is three, and the minimum number of parameters that specify an orientation is also three.
Can somebody explain this? Isn't the number of parameters that specify an orientation two, totaling five?
Pick two atoms in the pin and specify the location of one atom. Now the other atom can only be located on a sphere around the first atom. The sphere is a 2d surface for which you need two parameters.
It is not enough to specify the position of two atoms. You need to specify the positions of three atoms. The first atom can go anywhere, so it contributes 3 parameters. The second atom is limited to the 2-D surface of a sphere around the first atom, so its position only contributes 2 parameters as you said. The third atom is limited to the 1-D edge of a circle around an axis that connects the first two atoms, so its position contributes 1 parameter.
If you choose the position of the point of a pencil, and also a point in the center of the pencil's eraser, the pencil can still spin, with the pencil lead as the axis.
Another problem is that you can encode two real numbers into one, for example by interleaving digits. So you could specify the entire pin with one real number. What exactly is the problem here and how can you eliminate it? You need to impose more conditions than simply continuity, because you can make a continuous bijection [0,1] <-> [0,1]^2?
The concept of dimension of a vector space is handled much more rigorously in proof-oriented linear algebra textbooks. This book gives a loose definition for the dimension of a configuration space, which is just good enough to be able to follow the issues they are talking about. You looked too closely at their definition and discovered a flaw. Dimension is not really the number of parameters required for encoding a position in the space, but this can still be a good enough working definition for many problems if you don't get too fancy about your encoding.
I'm not sure this is actually going to be a useful explanation, but I'll give it a go.
One problem has to do with rotational symmetry. The selection of a juggling pin is perhaps not the best example, but let us assume for now that the juggling pin has a dot somewhere on its surface that ensures it is not rotationally symmetric about any axis. If you are only concerned with the with orienting a body subject to symmetry you can sometimes do better (for example, a perfectly uniform sphere would only require three components), but the general case requires six components.
Your approach of pinning two atoms in the pin effectively specifies an axis. Yes, it would accurately position and constrain two points on the pin. Those two points form a line. Consider what happens if I now rotate the rest of the atoms in the pin around that line. I have not changed the representation in your coordinate system, because I've kept the two atoms you specified fixed, but I have changed the orientation of the pin for an external observer. If, on the other hand, you constrained another atom that was not colinear with the first two, I would no longer be allowed this freedom of rotation. The system would be said to be fully constrained.
To put this into concrete terms with our pin, let's assume the two atoms I picked were the center of the top and the center of the bottom. Because the pin is symmetric about this axis, with five numbers I can specify the orientation of the pin sufficiently to juggle it, but what about the dot I mentioned before? By rotating the pin about this principal axis I could change the position of the dot without changing the coordinates of the pin.
Stated more simply: if I tell you the position of the center of the earth and my location in terms of latitude and longitude, you can locate me precisely, but you can't tell whether I'm looking north or south.
Also, you can only encode a (countably infinite) subset of the reals by interleaving digits. Consider the set of irrational numbers. Any scheme you provide that tries to reduce the dimension of a vector of n reals into n-1 will face the same problem: you cannot project from a space who's components are made up of members uncountably infinite sets into a space of lower dimension without losing information.
Can somebody explain this? Isn't the number of parameters that specify an orientation two, totaling five?
Pick two atoms in the pin and specify the location of one atom. Now the other atom can only be located on a sphere around the first atom. The sphere is a 2d surface for which you need two parameters.
Another problem is that you can encode two real numbers into one, for example by interleaving digits. So you could specify the entire pin with one real number. What exactly is the problem here and how can you eliminate it? You need to impose more conditions than simply continuity, because you can make a continuous bijection [0,1] <-> [0,1]^2?
I really like the approach of this book. I often don't feel like I understand (or even know what there is to understand) something until I code a program for it. For example you understand collisions if you can write a program that given an initial configuration of polygons at t=0, gives the configuration at later time. If you don't do this then you don't know exactly what you understand. Perhaps you understand collisions of point masses, but not general collisions.