|
@@ -17,8 +17,7 @@ to the other?*
|
|
{width=150 height=150}
|
|
{width=150 height=150}
|
|
|
|
|
|
This is the go-to of distance calculations. If you're talking about
|
|
This is the go-to of distance calculations. If you're talking about
|
|
-continuous, uniform planar (2d) space^[It holds for 3d and
|
|
|
|
-higher-dimensional spaces, too.], [Euclidean
|
|
|
|
|
|
+continuous, uniform planar (2d) space[^inline1], [Euclidean
|
|
distance](https://en.wikipedia.org/wiki/Euclidean_distance) is the
|
|
distance](https://en.wikipedia.org/wiki/Euclidean_distance) is the
|
|
shortest distance between two points.
|
|
shortest distance between two points.
|
|
|
|
|
|
@@ -34,9 +33,8 @@ figured out how to calculate the length of the hypotenuse of a right
|
|
triangle. The fun part is that, with Cartesian coordinates, *any pair
|
|
triangle. The fun part is that, with Cartesian coordinates, *any pair
|
|
of points* can now define a right triangle. Just take one point with
|
|
of points* can now define a right triangle. Just take one point with
|
|
an x coordinate from one point and a y coordinate from the other, and
|
|
an x coordinate from one point and a y coordinate from the other, and
|
|
-the triangle itself can be defined as $((x_!, y_1), (x_1, y_2), (x_2,
|
|
|
|
-y_2))$^[Or $((x_!, y_1), (x_2, y_1), (x_2, y_2))$ if you're feeling
|
|
|
|
-frisky].
|
|
|
|
|
|
+the triangle itself can be defined as $((x_1, y_1), (x_1, y_2), (x_2,
|
|
|
|
+y_2))$[^inline2].
|
|
|
|
|
|
At that point, it becomes pretty easy. The length of the two sides is
|
|
At that point, it becomes pretty easy. The length of the two sides is
|
|
just the absolute value of the difference between their x and y
|
|
just the absolute value of the difference between their x and y
|
|
@@ -179,8 +177,7 @@ it's still a very different beast.
|
|
### D&D Distance
|
|
### D&D Distance
|
|
|
|
|
|
Perhaps you've played some Dungeons & Dragons. Perhaps you've
|
|
Perhaps you've played some Dungeons & Dragons. Perhaps you've
|
|
-specifically played 3.5ed^[Or its offshoot, Pathfinder; or, for that
|
|
|
|
-matter, any of the d20 games that also derived from that source]. That
|
|
|
|
|
|
+specifically played 3.5ed[^inline3]. That
|
|
game was notorious for its complex, tactical, grid-based combat
|
|
game was notorious for its complex, tactical, grid-based combat
|
|
system. Each square represented 5 feet of space, and each character
|
|
system. Each square represented 5 feet of space, and each character
|
|
had a limited amount of movement per turn.
|
|
had a limited amount of movement per turn.
|
|
@@ -263,6 +260,9 @@ things, and there's so much more to talk about.
|
|
|
|
|
|
Thanks for bearing with me.
|
|
Thanks for bearing with me.
|
|
|
|
|
|
|
|
+[^inline1]: It holds for 3d and higher-dimensional spaces, too.
|
|
|
|
+
|
|
|
|
+[^inline2]: Or $((x_1, y_1), (x_2, y_1), (x_2, y_2))$ if you're feeling frisky.
|
|
|
|
|
|
[^1]: For an even longer time, the king piece on a chessboard had the
|
|
[^1]: For an even longer time, the king piece on a chessboard had the
|
|
exact same abilities, which is why this is probably more commonly
|
|
exact same abilities, which is why this is probably more commonly
|
|
@@ -271,6 +271,9 @@ distance](https://en.wikipedia.org/wiki/Chebyshev_distance), after
|
|
Pafnuty Chebyshev, a 19th-century Russian mathematician. But I've
|
|
Pafnuty Chebyshev, a 19th-century Russian mathematician. But I've
|
|
played more Civ than chess, frankly.
|
|
played more Civ than chess, frankly.
|
|
|
|
|
|
|
|
+[^inline3]: Or its offshoot, Pathfinder; or, for that
|
|
|
|
+matter, any of the d20 games that also derived from that source.
|
|
|
|
+
|
|
[^4ed]: When it came time to publish the 4th edition of D&D, however,
|
|
[^4ed]: When it came time to publish the 4th edition of D&D, however,
|
|
they changed their mind on this. The complexity of the 3.5 distance
|
|
they changed their mind on this. The complexity of the 3.5 distance
|
|
calculation wasn't worth the verisimilitude, so they moved to using
|
|
calculation wasn't worth the verisimilitude, so they moved to using
|
|
@@ -299,3 +302,5 @@ using the un-floored numbers produce a more coherent image.
|
|
situations coincide, Hamming distance becomes more palatable and
|
|
situations coincide, Hamming distance becomes more palatable and
|
|
tractable than Euclidean distance.]
|
|
tractable than Euclidean distance.]
|
|
|
|
|
|
|
|
+
|
|
|
|
+
|