🕹 Measuring and Playing with Proximity

A Model for Proximity: The Voronoi and the Delaunay Diagrams

So how do we model “proximity”? Let us take a quick look at this description of Predator-Prey Dynamics.

Plotting the Delaunay and Voronoi Diagrams

How do we plot these diagrams?

We will use this tool: Geogebra

Download and install this on your laptops. You can also use it in your browser https://www.geogebra.org/classic?lang=en and download the Geogebra (.ggb) files that you create.

  1. Exercise 1: Let us first see Soho with the Voronoi Diagram

Now let us make such a diagram step by step:

  1. Exercise 2: Let us try with just three points and see what we need to do to plot the Voronoi Diagram.

  2. Exercise 3: With 4 points: Four Pointer Voronoi

  3. Exercise 4: Let us now add more points. How do we make a multi-point Voronoi? We need to make a “list of points” in Geogebra

Discussion

  • Did you see how the Delaunay Triangulation seems to “dislike” obtuse-angles, and changes the triangulation pattern when a certain (sum of) angles become more than 180?
  • Wasn’t that a very Kandinsky-like thing to do, even for an algorithm?
  • The Delaunay Triangulation gives us a set of traingular elements that cover our desired surface
  • The Voronoi Diagram uses the Delaunay to give us possibly infinite proximal neighbourhoods.

Fun Stuff with Geogebra and Voronoi

  1. Predator Prey Movement….
  • Create a set of points in Geogebra.
  • Colour/Shape one of the outermost points as a predator which circles the herd.
  • Use the Voronoi diagram to model the Zone of Danger for each of the animals in the inner herd.
  • Try Animation in Geogebra !!
  1. Service Areas with Voronoi
  • Import a 5km * 5km square of area in your home town, from Google Maps, into Geogebra.
  • Locate points of interest, all in one category ( ATMs, Post Offices, Hospitals, Police Stations…)
  • Plot the Voronoi Diagram to show the area served by each such institution.
  • Calculate the area in Geogebra.
  • Assume a flat population/sqkm and use that to calculate the number of people served by each.

All of this can be done without leaving Geogebra !!

  1. Voronoi Portraits and Facial Recognition

A. My name is Arnold Schwarzenegger

  • Take a picture of yourself and import it into Geogebra
  • Plot Points on the Portrait such that the main facial features are defined.
  • Use a Delaunay Triagulation of these points to create a Portrait.

B. My Face is My Fortune

  • Do the same for a famous person, past or present.
  • Run a small survey in the class to see how many people can recognize celebrity!

Other Distances?

Hamming Distances

We have used the simplest and most common of geometric distances between entities, the Euclidean Distance to model proximity. Are there other measures of distance?

  • How would you measure distance between digital words? For example \(10010011\) and \(11011011\)?

The Hamming distance between two equal-length strings of symbols is the number of positions at which the corresponding symbols are different. The symbols may be letters, bits, or decimal digits, among other possibilities. For example, the Hamming distance between: “karolin” and “kathrin” is 3. “karolin” and “kerstin” is 3. “kathrin” and “kerstin” is 4. 0000 and 1111 is 4. 2173896 and 2233796 is 3.

The Hamming Distance can be calculated using a logical operation known as “Exclusive-OR” or “XOR”.

Great Circle Distances

How would you measure distance over a curved surface such as the earth?

View the path here: https://www.greatcirclemap.com/ Calculate distances here: https://www.gpsvisualizer.com/calculators

Taxicab Distances

And if a man hatta live in New York?

We will use the Euclidean and maybe other concepts of distance when we get into our Machine Learning models!

So where are all these Proximities used?

A Brief Description of the GPS System

TBW.

A Brief Foray into Cryptography

In the Sherlock Holmes story,The Adventure of the Dancing Men, a criminal known the one of the characters communicates with her using a childish/child-like drawing which looks like this:

In this message, each character is a visual representation, or a substution for, a letter from the alphabet. The characters with flags are the first letter of a new word. The message is translated in the story as “Am here, Abe Slaney”.

The entire code alphabet is shown in the figure below:

This code is a good example of a Substitution Cipher with non-text substition. See https://www.boxentriq.com/code-breaking/dancing-men-cipher and https://www.dcode.fr/dancing-men-cipher for examples where you can encode and decode your own text, and send them to friends. 😎 😼

The intent behind any substitution cipher is to be create distance from the original message, or characters. The algorithms to encode and decode uses this idea of distance to perform their operations and are entirely reversible.

Painting with Proximity/Distance

Well, all right, all right, tech is fine. Can we use the idea of Proximity to create art? Well, we are not Kandinsky, but we can try. Here goes:

  • Fire up the Strava app, or equivalent, on your phones.
  • Walk out into the college campus, preferably under open sky.
  • With the app on, try to create a figure like this
  • Share the image with your friend!

Wait, But Why?

Here are some domains and purposes within them, that use the idea of Proximity, and use Voronoi/Delaunay diagrams in their work. From David Eppstein’s Geometry in Action webpage at UC, Arvind Irvine

  • Anthropology and Archeology – Identify the parts of a region under the influence of different neolithic clans, chiefdoms, ceremonial centers, or hill forts.
  • Astronomy – Identify clusters of stars and clusters of galaxies (Here we saw what may be the earliest picture of a Voronoi diagram, drawn by Descartes in 1644, where the regions described the regions of gravitational influence of the sun and other stars.)
  • Biology, Ecology, Forestry – Model and analyze plant competition (“Area potentially available to a tree”, “Plant polygons”)
  • Cartography – Piece together satellite photographs into large “mosaic” maps
  • Crystallography and Chemistry – Study chemical properties of metallic sodium (“Wigner-Seitz regions”); Modelling alloy structures as sphere packings (“Domain of an atom”)
  • Finite Element Analysis – Generating finite element meshes which avoid small angles
  • Geography – Analyzing patterns of urban settlements
  • Geology – Estimation of ore reserves in a deposit using information obtained from bore holes; modelling crack patterns in basalt due to contraction on cooling
  • Geometric Modeling – Finding “good” triangulations of 3D surfaces
  • Marketing – Model market of US metropolitan areas; market area extending down to individual retail stores
  • Mathematics – Study of positive definite quadratic forms (“Dirichlet tesselation”, “Voronoi diagram”)
  • Metallurgy – Modelling “grain growth” in metal films
  • Meteorology – Estimate regional rainfall averages, given data at discrete rain gauges (“Thiessen polygons”)
  • Pattern Recognition – Find simple descriptors for shapes that extract 1D characterizations from 2D shapes (“Medial axis” or “skeleton” of a contour)
  • Physiology – Analysis of capillary distribution in cross-sections of muscle tissue to compute oxygen transport (“Capillary domains”)
  • Robotics – Path planning in the presence of obstacles
  • Statistics and Data Analysis – Analyze statistical clustering (“Natural neighbors” interpolation)
  • Zoology – Model and analyze the territories of animals

References

  1. Voronoi Diagrams and a Day at the Beach (PDF) Talks about cholera in Soho, the Voronoi diagram, and how to construct it using waves on a beach!!

  2. Data Genetics. Voronoi Tessellations. Very interesting 3D pictures of how Voronois and Delaunays are created.

Previous
Next