23/11/2021
When we think about distance, our minds usually conjure up the image of a straight line – the shortest path between two points, as the crow flies. This is the realm of Euclidean Geometry, the system we're most familiar with from our school days. However, imagine a city built on a strict grid system, much like many American cities. In such a metropolis, your movement is dictated by the streets, forcing you to navigate along orthogonal paths. This is where a different kind of geometry, known as Taxicab Geometry, comes into play. Taxicab Geometry, also known as Manhattan distance or L1 distance, redefines how we measure the space between two locations. Instead of the direct, diagonal route, it considers the paths available within a grid. Think of a taxi driver in a city; they can't simply phase through buildings or take a direct diagonal shortcut. They must adhere to the road network, turning corners and travelling along blocks. This practical constraint is the very essence of Taxicab Geometry. Let's consider two points, A and B, on a grid. In Euclidean Geometry, the distance between A and B would be the length of the straight line connecting them. Using Pythagoras' theorem, if point A is at coordinates (x1, y1) and point B is at (x2, y2), the Euclidean distance is calculated as √((x2 - x1)² + (y2 - y1)²). However, in Taxicab Geometry, the distance is the sum of the absolute differences of their Cartesian coordinates. The formula is elegantly simple: Taxicab Distance (A, B) = |x2 - x1| + |y2 - y1|The vertical bars, | |, signify the modulus, which means we take the positive value of whatever is inside. For instance, the modulus of 3, written as |3|, is simply 3. Likewise, the modulus of -3, written as |-3|, is also 3. This ensures that distance is always a non-negative value. To illustrate, let's take the example provided. If point A is at (2, 3) and point B is at (5, 7): Taxicab Distance (A, B) = |5 - 2| + |7 - 3| Taxicab Distance (A, B) = |3| + |4| Taxicab Distance (A, B) = 3 + 4 Taxicab Distance (A, B) = 7 units This calculation represents the number of blocks you would need to travel horizontally and vertically to get from A to B. The diagram accompanying this concept often shows multiple paths of the same total Taxicab distance, highlighting that while the shortest route is fixed in Euclidean terms, in Taxicab geometry, there can be many equally short paths along the grid lines.

The Taxicab World: A Surprising Transformation of Shapes
What happens when we start to think about familiar geometric concepts within the framework of Taxicab Geometry? The results can be quite astonishing. The very shapes we take for granted transform in unexpected ways.
The Circle in Taxicab Geometry
In Euclidean Geometry, a circle is defined as the set of all points equidistant from a central point. This equidistant set forms a perfectly round shape. Now, let's apply this definition to Taxicab Geometry. If we consider a 'circle' to be all points that are a constant Taxicab distance from a centre point, say a radius of 4 units from point A, what do we get? Instead of a round circle, we find that a Taxicab circle is actually a square rotated by 45 degrees. If you plot all the points that are exactly 4 Taxicab units away from a central point, you will trace out the outline of a diamond shape, which is essentially a square aligned with the grid axes. The points on the perimeter of this square are equidistant from the centre when measured using the Taxicab distance. Consider a centre point at (0,0). The points at a Taxicab distance of 4 would include (4,0), (3,1), (2,2), (1,3), (0,4), (-1,3), (-2,2), (-3,1), (-4,0), (-3,-1), (-2,-2), (-1,-3), (0,-4), (1,-3), (2,-2), and (3,-1). When plotted, these points clearly form a square rotated by 45 degrees.
The Value of Pi in the Taxicab World
Pi (π) is a fundamental constant in Euclidean Geometry, representing the ratio of a circle's circumference to its diameter. Its value is approximately 3.14159. What about Pi in the Taxicab world? Let's take our Taxicab circle, which we've established is a square. If we want to calculate the 'circumference' of this Taxicab circle, we need to sum the lengths of its sides. For a Taxicab circle with a radius of 4 units, the vertices are at (4,0), (0,4), (-4,0), and (0,-4). The Taxicab distance between (4,0) and (0,4) is |0-4| + |4-0| = 4 + 4 = 8 units. Since there are four such sides, the total 'circumference' is 4 * 8 = 32 units. The 'diameter' of this Taxicab circle can be considered the longest Taxicab distance across it. For instance, the distance between (4,0) and (-4,0) is |(-4)-4| + |0-0| = |-8| + 0 = 8 units. Similarly, the distance between (0,4) and (0,-4) is |0-0| + |(-4)-4| = 0 + |-8| = 8 units. So, the diameter is 8 units. Now, if we calculate the ratio of the circumference to the diameter in the Taxicab world: π = Circumference / Diameter = 32 / 8 = 4. Remarkably, the value of Pi in Taxicab Geometry is consistently 4 for all Taxicab circles. This is a profound difference from Euclidean geometry and showcases how fundamental mathematical constants can change based on the underlying metric.
The Perpendicular Bisector in Taxicab Geometry
In Euclidean Geometry, the perpendicular bisector of a line segment is a line that is perpendicular to the segment and passes through its midpoint. It's a straightforward concept to visualise and construct. However, in Taxicab Geometry, the perpendicular bisector takes on a much more complex and surprising form. The perpendicular bisector is defined as the set of all points that are equidistant from two given points. Let's call these points A and B. In Euclidean terms, this set of points forms a straight line. But when we use the Taxicab distance, the locus of points equidistant from A and B can be: * A straight line: In some configurations of A and B, the perpendicular bisector in Taxicab geometry will indeed be a straight line, though its orientation might differ from the Euclidean perpendicular bisector. * A region: More surprisingly, for certain positions of A and B, the set of points equidistant from both using the Taxicab metric can form an entire region, not just a line. This means there isn't a single line of points equidistant, but rather an area where points satisfy the condition. This happens when the 'shortest' paths along the grid lines from A and B to a point create overlaps or parallel routes that result in equal distances over a broader area. Interactive tools, like those powered by GeoGebra, allow users to experiment with different points A and B and observe how the Taxicab perpendicular bisector changes. This hands-on approach reveals the nuanced and often counter-intuitive nature of this geometric system.
Further Explorations and Applications
Taxicab Geometry is not merely a mathematical curiosity; it offers a different lens through which to view spatial relationships and has practical implications. Researchers have explored its use in various fields: * Urban Planning and Logistics: The concept directly models the movement constraints in cities with grid layouts, useful for optimising delivery routes or understanding traffic flow. * Robotics: Pathfinding algorithms for robots operating in structured environments can benefit from Taxicab distance calculations. * Computer Graphics: Certain rendering techniques or grid-based simulations might employ Taxicab metrics. * Modelling Diffusion and Spread: As mentioned in the provided text, Taxicab geometry has been used in modelling the spread of phenomena, such as fire, across a grid-based system, where movement is restricted to orthogonal directions. One can delve deeper into Taxicab Geometry by investigating other familiar shapes and their transformations. What would an ellipse look like in this system? Or a parabola? The possibilities for exploration are vast, offering a rich field for mathematical inquiry. In conclusion, Taxicab Geometry provides a compelling alternative to Euclidean Geometry, highlighting how our perception and measurement of space can be fundamentally altered by the constraints of the environment. From its surprising geometric shapes to its altered mathematical constants, it reminds us that distance, and indeed the very nature of geometry, is not a one-size-fits-all concept. Key Takeaways:* Taxicab Geometry measures distance along grid lines, not as the crow flies. * The formula is the sum of the absolute differences of coordinates: |x2 - x1| + |y2 - y1|. * Taxicab circles are squares rotated by 45 degrees. * The value of Pi (π) in Taxicab Geometry is 4. * Perpendicular bisectors can be lines or entire regions. * It has practical applications in various fields, including urban planning and modelling. If you're keen to test your understanding, working through a dedicated worksheet on Taxicab Geometry can solidify these concepts. The journey into non-Euclidean geometries like Taxicab Geometry is a rewarding one, offering new perspectives on the world around us.
If you want to read more articles similar to Taxicab Geometry: A Different Way to Measure, you can visit the Taxis category.
