Science, culture, complexity

Tag: fractals

  • A not-so-random walk through random walks

    Though I’ve been interested of late with the idea of random walks, I was introduced to the concept when, more than two decades ago, I stumbled across Conway’s Game of Life, the cellular automaton built by John Conway in 1970. A cellular automaton is a grid of cells in which each cell has a value depending on the values of its neighbours. The automaton simulates the evolution of the grid as the cells’ values change dynamically.

    Langton’s ant was a popular instance of the simulator and one of my favourites, too. One 2001 conference paper described it as “a simple … system with a surprisingly complex behaviour.” Here, a (virtual) ant starts off at a random cell on the grid and moves randomly into one of the four neighbouring squares (diagonal squares aren’t accessible). There are three rules:

    (i) A cell can be either black or white in colour;

    (ii) If the square is white when the ant moves into it, the colour is flipped, and the ant turns 90º clockwise and moves forward;

    (iii) If the square is black, the colour is flipped, and the ant turns 90º counter-clockwise and moves forward.

    As the ant moves across the grid in this way, the first hundred or so steps produce a symmetric pattern before chaos ensues. For the next 9,900 or so steps, an image devoid of any patterns comes into view. But after around 10,000 steps, there’s magic: the ant suddenly enters into a repetitive 104-step pattern that it continues until the end of time. You can run your own simulation and check.

    The path of a Langton’s ant. The repetitive pattern after ~10,000 steps is the ‘highway’ growing at the bottom. The location of the ant is shown in red. Credit: Krwarobrody and Ferkel/Wikimedia Commons

    The march of the Langton’s ant before the repetitive portion has been described as a pseudorandom walk — a walk whose pattern appears random but whose next step is not quite random (because of the rules). In a truly random walk, the length of each step is fixed and the direction of each step is chosen at random from a fixed number of options.

    If it sounds simple, it is, but you might be forgiven for thinking it’s only a mathematical flight of fancy. Random walks have applications in numerous areas, including econometrics, finance, biology, chemistry, and quantum physics.

    The trajectory of a random walk after 25,000 steps. Credit: László Németh/Wikimedia Commons

    Specific variants of the random walk behave in ways that closely match the properties of some complex system evolving in time. For example, in a Gaussian random walk, the direction of each step is random and the length of each step is sampled randomly from a Gaussian distribution (the classic example of a bell curve). Experts use the evolution of this walk to evaluate the risk exposure of investment portfolios.

    The Lévy flight is a random walk with a small change: instead of the step length being determined by a random pick from the Gaussian distribution, it comes from any distribution with a heavy tail. One common example is the gamma distribution. Each such distribution can be tweaked with two parameters called κ (kappa) and θ (theta) to produce different plots on a graph, all with the same general properties. In the examples shown below, focus on the orange line (κ = 2, θ = 2): it shows a gamma distribution with a heavy tail.

    Various gamma distributions for different values of κ and θ. Credit: MarkSweep and Cburnett/Wikimedia Commons, CC BY-SA 3.0

    Put another way, the distribution has some large values but mostly small values. A Lévy flight is a random walk where the step length is sampled randomly from this distribution, and as a result has a few large steps and many small steps. Research has shown that the foraging path of animals looking for food that is scarce can be modelled as a Lévy flight: the large steps correspond to the long distances towards food sources that are located far apart and the short steps to finding food spread in a small area at each source.

    A Lévy flight simulated for 1,000 steps. Credit: PAR/Wikimedia Commons

    Perhaps the most famous ‘example’ of a random walk is Brownian motion; it isn’t a perfect example however. Brownian motion can describe, say, the path of a single atom over time in a gas of billions of atoms by using a Lévy process. Whereas a random walk proceeds in discrete steps, a Lévy process is continuous; they are in other respects the same. The motion itself refers to the atom’s journey in some time period, frequently bumping into other atoms (depending on the gas’s density) and shifting its path in random ways.

    The yellow circle depicts the motion of a larger particle in a container filled with smaller particles moving in random directions at different speeds. Credit: Francisco Esquembre, Fu-Kwun and lookang/Wikimedia Commons, CC BY-SA 3.0

    Brownian motion in particular uses a type of Lévy process called the Wiener process, where the path evolves according to the following rules:

    (i) Each increment of the process is independent of other (non-overlapping) increments;

    (ii) How much the process changes over a period of time depends only on the duration of the period;

    (iii) Increments in the process are randomly sampled from a Gaussian distribution;

    (iv) The process has a statistical mean equal to zero;

    (v) The process’s covariance between any two time points is equal to the lower variance at those two points (variance denotes how quickly the value of a variable is spreading out over time).

    The path of the atom in the gas follows a Wiener process and is thus Brownian motion. The Wiener process has a wealth of applications across both the pure and the applied sciences. Just to name one: say there is a small particle — e.g. an ion — trapped in a cell. It can’t escape the cell except through a small opening. The Wiener process, which models the Brownian motion of the ion through the cell, can be used to estimate the average amount of time the ion will need to reach the opening and escape.

    Like random walks, Wiener processes can also be tweaked to produce models for different conditions. One example is the Brownian bridge, which arises when a Wiener process is limited to appear at the start of an interval and disappear at the end, with the start and end points fixed. A different, more visual way to put this is in terms of a graph with two y-axes and one x-axis. Say the point 0 is the start of the interval on the left y-axis and 1 is the end of the interval on the right y-axis. A Wiener process in the interval [0, 1] will be a ‘bridge’ that connects 0 and 1 in a path that follows Brownian motion.

    A Brownian bridge pinned at the two endpoints of an interval. Credit: Zemyla/Wikimedia Commons, CC BY-SA 3.0

    By analogy, a random bridge in the interval [0, 1] will be a random walk based on the Gaussian distribution between 0 and 1; a gamma random bridge in the interval [0, 1] will be a random walk based on the gamma distribution between 0 and 1; and so on. (This said, a Wiener process and a random walk are distinct: a Wiener process will play out the same way if the underlying grid is rotated by an arbitrary angle but a random walk won’t.)

    It’s a wonder of mathematics that it can discern recurring behaviours in such highly noisy systems and with its finite tools distil from them glimpses into their future. According to a 2020 preprint paper on arXiv, “Various random-walk-related models can be applied in different fields, which is of great significance to downstream tasks such as link prediction, recommendation, computer vision, semi-supervised learning, and network embedding.”

    If some basic conditions are met, there are random walks out in the universe as well. In 2004, researchers estimated the Brownian velocity of the black hole at the Milky Way’s centre to be less than 1 km/s.

    For a more mathematical example, in a ‘conventional’ random walk, after N steps the walker’s distance from the origin will be comparable to the square root of N. Further, it takes on average S2 steps to travel a distance of S from the origin. For a long time, researchers believed this so-called S → S2 scaling law could model almost any process in which a physical entity was moving from one location to another. The law captured the notion of how much a given distribution would spread out over time.

    One of the earliest deviations from this law was fractals, where there is an S → Sβ law but such that β is always greater than 2, implying a greater amount of spread relative to the step length vis-à-vis random walks. (Factoid: a random walk on a fractal also gives rise to a fractal.)

    A Sierpinski triangle fractal. Credit: Beojan Stanislaus/Wikimedia Commons, CC BY-SA 3.0

    For yet another example, random walks have a famously deep connection to resistor networks: electric circuits where a bunch of resistors are connected in some configuration, plus a power source and a grounding. Researchers have found that the effective voltage between any two points in the circuit is proportional to the time a random-walker would take to travel between those two points for the first time.

    A schematic diagram of an electrical circuit where the challenge is to determine the resistance to the flow of an electric current at each of the in-between nodes. Source: math.ucla.edu

    The resistor model speaks to a beautiful thing random walks bring to light: the influence an underlying structure exerts on a stochastic process — one governed entirely by chance — playing out on that structure, its inherent geometry imposing unexpected limits on the randomness and keeping it from wheeling away into chaos. At each step the random walk makes an unpredictable choice but the big picture in which these steps are individual strokes is a picture of predictability, to some degree at least.

    Flip this conclusion on its head and an even more captivating notion emerges: that though two random walks may resemble each other in their statistical properties, they can still be very different journeys.

  • The symmetry incarnations

    This post was originally published on October 6, 2012. I recently rediscovered it and decided to republish it with a few updates.

    Geometric symmetry in nature is often a sign of unperturbedness, as if nothing has interfered with a natural process and that its effects at each step are simply scaled-up or scaled-down versions of each other. For this reason, symmetry is aesthetically pleasing, and often beautiful. Consider, for instance, faces. Symmetry of facial features about the central vertical axis is often translated as the face being beautiful, not just by humans but also monkeys.

    This is only one example of one of the many forms of symmetry’s manifestation. When it involves geometric features, it’s a case of geometrical symmetry. When a process occurs similarly both forward and backward in time, it is temporal symmetry. If two entities that don’t seem geometrically congruent at first sight rotate, move or scale with similar effects on their forms, it is transformational symmetry. A similar definition applies to all theoretical models, musical progressions, knowledge and many other fields besides.

    Symmetry-breaking

    One of the first (postulated) instances of symmetry is said to have occurred during the Big Bang, when the universe was born. A sea of particles was perturbed 13.75 billion years ago by a high-temperature event, setting up anecdotal ripples in their system, eventually breaking their distribution in such a way that some particles got mass, some charge, some spin, some all of them, and some none of them. This event is known as electroweak symmetry-breaking. Because of the asymmetric properties of the resultant particles, matter as we know it was conceived.

    Many invented scientific systems exhibit symmetry in that they allow for the conception of symmetry in the things they make possible. A good example is mathematics. On the real-number line, 0 marks the median. On either sides of 0, 1 and -1 are equidistant from 0; 5,000 and -5,000 are equidistant from 0; possibly, ∞ and -∞ are equidistant from 0. Numerically speaking, 1 marks the same amount of something that -1 marks on the other side of 0. Characterless functions built on this system also behave symmetrically on either sides of 0.

    To many people, symmetry evokes the image of an object that, when cut in half along a specific axis, results in two objects that are mirror-images of each other. Cover one side of your face and place the other side against a mirror, and what a person hopes to see is the other side of the face – despite it being a reflection. Interestingly, this technique was used by neuroscientist V.S. Ramachandran to “cure” the pain of amputees when they tried to move a limb that wasn’t there).

    An illustration of V.S. Ramachandran's mirror-box technique: Lynn Boulanger, an occupational therapy assistant and certified hand therapist, uses mirror therapy to help address phantom pain for Marine Cpl. Anthony McDaniel. Caption and credit: US Navy
    An illustration of V.S. Ramachandran’s mirror-box technique: Lynn Boulanger, an occupational therapy assistant and certified hand therapist, uses mirror therapy to help address phantom pain for Marine Cpl. Anthony McDaniel. Caption and credit: US Navy

    Natural symmetry

    Symmetry at its best, however, is observed in nature. Consider germination: when a seed grows into a small plant and then into a tree, the seed doesn’t experiment with designs. The plant is not designed differently from the small tree, and the small tree is not designed differently from the big tree. If a leaf is given to sprout from the node richest in minerals on the stem, then it will. If a branch is given to sprout from the node richest in minerals on the trunk, then it will. So is mineral-deposition in the arbor symmetric? It should be if their transportation out of the soil and into the tree is radially symmetric. And so forth…

    At times, repeated gusts of wind may push the tree to lean one way or another, shadowing the leaves from against the force and keeping them form shedding off. The symmetry is then broken, but no matter. The sprouting of branches from branches, and branches from those branches, and leaves from those branches, all follow the same pattern. This tendency to display an internal symmetry is characterised as fractalisation. A well-known example of a fractal geometry is the Mandelbrot set, shown below.

    An illustration of recursive self-similarity in Mandelbrot set. Credit: Cuddlyable3/Wikimedia Commons
    An illustration of recursive self-similarity in Mandelbrot set. Credit: Cuddlyable3/Wikimedia Commons

    If you want to interact with a Mandelbrot set, check out this magnificent visualisation by Paul Neave (defunct now 🙁 ). You can keep zooming in, but at each step, you’ll only see more and more Mandelbrot sets. This set is one of a few exceptional sets that are geometric fractals.

    Meta-geometry and Mulliken symbols

    It seems like geometric symmetry is the most ubiquitous and accessible example to us. Let’s take it one step further and look at the meta-geometry at play when one symmetrical shape is given an extra dimension. For instance, a circle exists in two dimensions; its three-dimensional correspondent is the sphere. Through such an up-scaling, we are ensuring that all the properties of a circle in two dimensions stay intact in three dimensions, and then we are observing what the three-dimensional shape is.

    A circle, thus, becomes a sphere. A square becomes a cube. A triangle becomes a tetrahedron. In each case, the 3D shape is said to have been generated by a 2D shape, and each 2D shape is said to be the degenerate of the 3D shape. Further, such a relationship holds between corresponding shapes across many dimensions, with doubly and triply degenerate surfaces also having been defined.

    Credit: Vitaly Ostrosablin/Wikimedia Commons, CC BY-SA 3.0
    The three-dimensional cube generates the four-dimensional hypercube, a.k.a. a tesseract. Credit: Vitaly Ostrosablin/Wikimedia Commons, CC BY-SA 3.0

    Obviously, there are different kinds of degeneracy, 10 of which the physicist Robert S. Mulliken identified and laid out. These symbols are important because each one defines a degree of freedom that nature possesses while creating entities and this includes symmetrical entities as well. So if a natural phenomenon is symmetrical in n dimensions, then the only way it can be symmetrical in n+1 dimensions also is by transforming through one or many of the degrees of freedom defined by Mulliken.


    Symbol Property
    A symmetric with respect to rotation around the principal rotational axis (one dimensional representations)
    B anti-symmetric with respect to rotation around the principal rotational axis (one dimensional representations)
    E degenerate
    subscript 1 symmetric with respect to a vertical mirror plane perpendicular to the principal axis
    subscript 2 anti-symmetric with respect to a vertical mirror plane perpendicular to the principal axis
    subscript g symmetric with respect to a center of symmetry
    subscript u anti-symmetric with respect to a center of symmetry
    prime (‘) symmetric with respect to a mirror plane horizontal to the principal rotational axis
    double prime (”) anti-symmetric with respect to a mirror plane horizontal to the principal rotational axis

    Source: LMU Munich


    Apart from regulating the perpetuation of symmetry across dimensions, the Mulliken symbols also hint at nature wanting to keep things simple and straightforward. The symbols don’t behave differently for processes moving in different directions, through different dimensions, in different time-periods or in the presence of other objects, etc. The preservation of symmetry by nature is not coincidental. Rather, it is very well-defined.

    Anastomosis

    Now, if nature desires symmetry, if it is not a haphazard occurrence but one that is well orchestrated if given a chance to be, why don’t we see symmetry everywhere? Why is natural symmetry broken? One answer to this is that it is broken only insofar as it attempts to preserves other symmetries that we cannot observe with the naked eye.

    For example, symmetry in the natural order is exemplified by a geological process called anastomosis. This property, commonly of quartz crystals in metamorphic regions of Earth’s crust, allows for mineral veins to form that lead to shearing stresses between layers of rock, resulting in fracturing and faulting. In other terms, geological anastomosis allows materials to be displaced from one location and become deposited in another, offsetting large-scale symmetry in favour of the prosperity of microstructures.

    More generally, anastomosis is defined as the splitting of a stream of anything only to reunify sometime later. It sounds simple but it is an exceedingly versatile phenomenon, if only because it happens in a variety of environments and for a variety of purposes. For example, consider Gilbreath’s conjecture. It states that each series of prime numbers to which the forward difference operator – i.e. successive difference between numbers – has been applied always starts with 1. To illustrate:

    2 3 5 7 11 13 17 19 23 29 … (prime numbers)

    Applying the operator once: 1 2 2 4 2 4 2 4 6 …
    Applying the operator twice: 1 0 2 2 2 2 2 2 …
    Applying the operator thrice: 1 2 0 0 0 0 0 …
    Applying the operator for the fourth time: 1 2 0 0 0 0 0 …

    And so forth.

    If each line of numbers were to be plotted on a graph, moving upwards each time the operator is applied, then a pattern for the zeros emerges, shown below.

    The forest of stunted trees, used to gain more insights into Gilbreath's conjecture. Credit: David Eppstein/Wikimedia Commons
    The forest of stunted trees, used to gain more insights into Gilbreath’s conjecture. Credit: David Eppstein/Wikimedia Commons

    This pattern is called the forest of stunted trees, as if it were an area populated by growing trees with clearings that are always well-bounded triangles. The numbers from one sequence to the next are anastomosing, parting ways only to come close together after every five lines.

    Another example is the vein skeleton on a hydrangea leaf. Both the stunted trees and the hydrangea veins patterns can be simulated using the rule-90 simple cellular automaton that uses the exclusive-or (XOR) function.

    Bud and leaves of Hydrangea macrophylla. Credit: Alvesgaspar/Wikimedia Commons, CC BY-SA 3.0
    Bud and leaves of Hydrangea macrophylla. Credit: Alvesgaspar/Wikimedia Commons, CC BY-SA 3.0

    Nambu-Goldstone bosons

    While anastomosis may not have a direct relation with symmetry and only a tenuous one with fractals, its presence indicates a source of perturbation in the system. Why else would the streamlined flow of something split off and then have the tributaries unify, unless possibly to reach out to richer lands? Anastomosis is a sign of the system acquiring a new degree of freedom. By splitting a stream with x degrees of freedom into two new streams each with x degrees of freedom, there are now more avenues through which change can occur.

    Particle physics simplifies this scenario by assigning all forces and amounts of energy a particle. Thus, a force is said to be acting when a force-carrying particle is being exchanged between two bodies. Since each degree of freedom also implies a new force acting on the system, it wins itself a particle from a class of particles called the Nambu-Goldstone (NG) bosons. Named for Yoichiro Nambu and Jeffrey Goldstone, the presence of n NG bosons in a system means that, broadly speaking, the system has n degrees of freedom.

    How and when an NG boson is introduced into a system is not yet well-understood. In fact, it was only recently that a theoretical physicist, named Haruki Watanabe, developed a mathematical model that could predict the number of degrees of freedom a complex system could have given the presence of a certain number of NG bosons. At the most fundamental level, it is understood that when symmetry breaks, an NG boson is born.

    The asymmetry of symmetry

    That is, when asymmetry is introduced in a system, so is a degree of freedom. This seems intuitive. But at the same time, you would think the reverse is also true: that when an asymmetric system is made symmetric, it loses a degree of freedom. However, this isn’t always the case because it could violate the third law of thermodynamics (specifically, the Lewis-Randall version of its statement).

    Therefore, there is an inherent irreversibility, an asymmetry of the system itself: it works fine one way, it doesn’t work fine another. This is just like the split-off streams, but this time, they are unable to reunify properly. Of course, there is the possibility of partial unification: in the case of the hydrangea leaf, symmetry is not restored upon anastomosis but there is, evidently, an asymptotic attempt.

    However, it is possible that in some special frames, such as in outer space, where the influence of gravitational forces is very weak, the restoration of symmetry may be complete. Even though the third law of thermodynamics is still applicable here, it comes into effect only with the transfer of energy into or out of the system. In the absence of gravity and other retarding factors, such as distribution of minerals in the soil for acquisition, etc., it is theoretically possible for symmetry to be broken and reestablished without any transfer of energy.

    The simplest example of this is of a water droplet floating around. If a small globule of water breaks away from a bigger one, the bigger one becomes spherical quickly. When the seditious droplet joins with another globule, that globule also quickly reestablishes its spherical shape.

    Thermodynamically speaking, there is mass transfer but at (almost) 100% efficiency, resulting in no additional degrees of freedom. Also, the force at play that establishes sphericality is surface tension, through which a water body seeks to occupy the shape that has the lowest volume for the correspondingly highest surface area. Notice how this shape – the sphere – is incidentally also the one with the most axes of symmetry and the fewest redundant degrees of freedom? Manufacturing such spheres is very hard.

    An omnipotent impetus

    Perhaps the explanation of the roles symmetry assumes seems regressive: every consequence of it is no consequence but itself all over again (i.e., self-symmetry – and it happened again). Indeed, why would nature deviate from itself? And as it recreates itself with different resources, it lends itself and its characteristics to different forms.

    A mountain will be a mountain to its smallest constituents, and an electron will be an electron no matter how many of them you bring together at a location (except when quasiparticles show up). But put together mountains and you have ranges, sub-surface tectonic consequences, a reshaping of volcanic activity because of changes in the crust’s thickness, and a long-lasting alteration of wind and irrigation patterns. Bring together an unusual number of electrons to make up a high-density charge, and you have a high-temperature, high-voltage volume from which violent, permeating discharges of particles could occur – i.e., lightning.

    Why should stars, music, light, radioactivity, politics, engineering or knowledge be any different?

  • The Symmetry Incarnations – Part I

    Symmetry in nature is a sign of unperturbedness. It means nothing has interfered with a natural process, and that its effects at each step are simply scaled-up or scaled-down versions of each other. For this reason, symmetry is aesthetically pleasing, and often beautiful. Consider, for instance, faces. Symmetry of facial features about the central vertical axis is often translated as the face being beautiful – not just by humans but also monkeys.

    However, this is just an example of one of the many forms of symmetry’s manifestation. When it involves geometric features, it’s a case of geometrical symmetry. When a process occurs similarly both forward and backward in time, it is temporal symmetry. If two entities that don’t seem geometrically congruent at first sight rotate, move or scale with similar effects on their forms, it is transformational symmetry. A similar definition applies to all theoretical models, musical progressions, knowledge, and many other fields besides.

    Symmetry-breaking

    One of the first (postulated) instances of symmetry is said to have occurred during the Big Bang, when the observable universe was born. A sea of particles was perturbed 13.75 billion years ago by a high-temperature event, setting up anecdotal ripples in their system, eventually breaking their distribution in such a way that some particles got mass, some charge, some a spin, some all of them, and some none of them. In physics, this event is called spontaneous, or electroweak, symmetry-breaking. Because of the asymmetric properties of the resultant particles, matter as we know it was conceived.

    Many invented scientific systems exhibit symmetry in that they allow for the conception of symmetry in the things they make possible. A good example is mathematics – yes, mathematics! On the real-number line, 0 marks the median. On either sides of 0, 1 and -1 are equidistant from 0, 5,000 and -5,000 are equidistant from 0; possibly, ∞ and -∞ are equidistant from 0. Numerically speaking, 1 marks the same amount of something that -1 marks on the other side of 0. Not just that, but also characterless functions built on this system also behave symmetrically on either sides of 0.

    To many people, symmetry evokes an image of an object that, when cut in half along a specific axis, results in two objects that are mirror-images of each other. Cover one side of your face and place the other side against a mirror, and what a person hopes to see is the other side of the face – despite it being a reflection (interestingly, this technique was used by neuroscientist V.S. Ramachandran to “cure” the pain of amputees when they tried to move a limb that wasn’t there). Like this, there are symmetric tables, chairs, bottles, houses, trees (although uncommon), basic geometric shapes, etc.

    A demonstration of V.S. Ramachandran’s mirror-technique

    Natural symmetry

    Symmetry at its best, however, is observed in nature. Consider germination: when a seed grows into a small plant and then into a tree, the seed doesn’t experiment with designs. The plant is not designed differently from the small tree, and the small tree is not designed differently from the big tree. If a leaf is given to sprout from the mineral-richest node on the stem then it will; if a branch is given to sprout from the mineral-richest node on the trunk then it will. So, is mineral-deposition in the arbor symmetric? It should be if their transportation out of the soil and into the tree is radially symmetric. And so forth…

    At times, repeated gusts of wind may push the tree to lean one way or another, shadowing the leaves from against the force and keeping them form shedding off. The symmetry is then broken, but no matter. The sprouting of branches from branches, and branches from those branches, and leaves from those branches all follow the same pattern. This tendency to display an internal symmetry is characterized as fractalization. A well-known example of a fractal geometry is the Mandelbrot set, shown below.

    If you want to interact with a Mandelbrot set, check out this magnificent visualization by Paul Neave. You can keep zooming in, but at each step, you’ll only see more and more Mandelbrot sets. Unfortunately, this set is one of a few exceptional sets that are geometric fractals.

    Meta-geometry & Mulliken symbols

    Now, it seems like geometric symmetry is the most ubiquitous and accessible example to us. Let’s take it one step further and look at the “meta-geometry” at play when one symmetrical shape is given an extra dimension. For instance, a circle exists in two dimensions; its three-dimensional correspondent is the sphere. Through such an up-scaling, we’re ensuring that all the properties of a circle in two dimensions stay intact in three dimensions, and then we’re observing what the three-dimensional shape is.

    A circle, thus, becomes a sphere; a square becomes a cube; a triangle becomes a tetrahedron (For those interested in higher-order geometry, the tesseract, or hypercube, may be of special interest!). In each case, the 3D shape is said to have been generated by a 2D shape, and each 2D shape is said to be the degenerate of the 3D shape. Further, such a relationship holds between corresponding shapes across many dimensions, with doubly and triply degenerate surfaces also having been defined.

    The tesseract (a.k.a. hypercube)

    Obviously, there are different kinds of degeneracy, 10 of which the physicist Robert S. Mulliken identified and laid out. These symbols are important because each one defines a degree of freedom that nature possesses while creating entities, and this includes symmetrical entities as well. In other words, if a natural phenomenon is symmetrical in n dimensions, then the only way it can be symmetrical in n+1 dimensions also is by transforming through one or many of the degrees of freedom defined by Mulliken.

    Robert S. Mulliken (1896-1986)

    Apart from regulating the perpetuation of symmetry across dimensions, the Mulliken symbols also hint at nature wanting to keep things simple and straightforward. The symbols don’t behave differently for processes moving in different directions, through different dimensions, in different time-periods or in the presence of other objects, etc. The preservation of symmetry by nature is not a coincidental design; rather, it’s very well-defined.

    Anastomosis

    Now, if that’s the case – if symmetry is held desirable by nature, if it is not a haphazard occurrence but one that is well orchestrated if given a chance to be – why don’t we see symmetry everywhere? Why is natural symmetry broken? Is all of the asymmetry that we’re seeing today the consequence of that electro-weak symmetry-breaking phenomenon? It can’t be because natural symmetry is still prevalent. Is it then implied that what symmetry we’re observing today exists in the “loopholes” of that symmetry-breaking? Or is it all part of the natural order of things, a restoration of past capabilities?

    One of the earliest symptoms of symmetry-breaking was the appearance of the Higgs mechanism, which gave mass to some particles but not some others. The hunt for it’s residual particle, the Higgs boson, was spearheaded by the Large Hadron Collider (LHC) at CERN.

    The last point – of natural order – is allegorical with, as well as is exemplified by, a geological process called anastomosis. This property, commonly of quartz crystals in metamorphic regions of Earth’s crust, allows for mineral veins to form that lead to shearing stresses between layers of rock, resulting in fracturing and faulting. Philosophically speaking, geological anastomosis allows for the displacement of materials from one location and their deposition in another, thereby offsetting large-scale symmetry in favor of the prosperity of microstructures.

    Anastomosis, in a general context, is defined as the splitting of a stream of anything only to rejoin sometime later. It sounds really simple but it is a phenomenon exceedingly versatile, if only because it happens in a variety of environments and for an equally large variety of purposes. For example, consider Gilbreath’s conjecture. It states that each series of prime numbers to which the forward difference operator has been applied always starts with 1. To illustrate:

    2 3 5 7 11 13 17 19 23 29 … (prime numbers)

    Applying the operator once: 1 2 2 4 2 4 2 4 6 … (successive differences between numbers)
    Applying the operator twice: 1 0 2 2 2 2 2 2 …
    Applying the operator thrice: 1 2 0 0 0 0 0 …
    Applying the operator for the fourth time: 1 2 0 0 0 0 0 …

    And so forth.

    If each line of numbers were to be plotted on a graph, moving upwards each time the operator is applied, then a pattern for the zeros emerges, shown below.

    This pattern is called that of the stunted trees, as if it were a forest populated by growing trees with clearings that are always well-bounded triangles. The numbers from one sequence to the next are anastomosing, only to come close together after every five lines! Another example is the vein skeleton on a hydrangea leaf. Both the stunted trees and the hydrangea veins patterns can be simulated using the rule-90 simple cellular automaton that uses the exclusive-or (XOR) function.

    Nambu-Goldstone bosons

    Now, what does this have to do with symmetry, you ask? While anastomosis may not have a direct relation with symmetry and only a tenuous one with fractals, its presence indicates a source of perturbation in the system. Why else would the streamlined flow of something split off and then have the tributaries unify, unless possibly to reach out to richer lands? Either way, anastomosis is a sign of the system acquiring a new degree of freedom. By splitting a stream with x degrees of freedom into two new streams each with x degrees of freedom, there are now more avenues through which change can occur.

    Water entrainment in an estuary is an example of a natural asymptote or, in other words, a system’s “yearning” for symmetry

    Particle physics simplies this scenario by assigning all forces and amounts of energy a particle. Thus, a force is said to be acting when a force-carrying particle is being exchanged between two bodies. Since each degree of freedom also implies a new force acting on the system, it wins itself a particle, actually a class of particles called the Nambu-Goldstone (NG) bosons. Named for Yoichiro Nambu and Jeffrey Goldstone, the particle’s existence’s hypothesizers, the presence of n NG bosons in a system means that, broadly speaking, the system has n degrees of freedom.

    Jeffrey Goldstone (L) & Yoichiro Nambu

    How and when an NG boson is introduced into a system is not yet a well-understood phenomenon theoretically, let alone experimentally! In fact, it was only recently that a mathematical model was developed by a theoretical physicist at UCal-Berkeley, Haruki Watanabe, capable of predicting how many degrees of freedom a complex system could have given the presence of a certain number of NG bosons. However, at the most basic level, it is understood that when symmetry breaks, an NG boson is born!

    The asymmetry of symmetry

    In other words, when asymmetry is introduced in a system, so is a degree of freedom. This seems only intuitive. At the same time, you’d think the axiom is also true: that when an asymmetric system is made symmetric, it loses a degree of freedom – but is this always true? I don’t think so because, then, it would violate the third law of thermodynamics (specifically, the Lewis-Randall version of its statement). Therefore, there is an inherent irreversibility, an asymmetry of the system itself: it works fine one way, it doesn’t work fine another – just like the split-off streams, but this time, being unable to reunify properly. Of course, there is the possibility of partial unification: in the case of the hydrangea leaf, symmetry is not restored upon anastomosis but there is, evidently, an asymptotic attempt.

    Each piece of a broken mirror-glass reflects an object entirely, shedding all pretensions of continuity. The most intriguing mathematical analogue of this phenomenon is the Banach-Tarski paradox, which, simply put, takes symmetry to another level.

    However, it is possible that in some special frames, such as in outer space, where the influence of gravitational forces is weak if not entirely absent, the restoration of symmetry may be complete. Even though the third law of thermodynamics is still applicable here, it comes into effect only with the transfer of energy into or out of the system. In the absence of gravity (and, thus, friction), and other retarding factors, such as distribution of minerals in the soil for acquisition, etc., symmetry may be broken and reestablished without any transfer of energy.

    The simplest example of this is of a water droplet floating around. If a small globule of water breaks away from a bigger one, the bigger one becomes spherical quickly; when the seditious droplet joins with another globule, that globule also reestablishes its spherical shape. Thermodynamically speaking, there is mass transfer, but at (almost) 100% efficiency, resulting in no additional degrees of freedom. Also, the force at play that establishes sphericality is surface tension, through which a water body seeks to occupy the shape that has the lowest volume for the correspondingly highest surface area (notice how the shape is incidentally also the one with the most axes of symmetry, or, put another way, no redundant degrees of freedom? Creating such spheres is hard!).

    A godless, omnipotent impetus

    Perhaps the explanation of the roles symmetry assumes seems regressive: every consequence of it is no consequence but itself all over again (self-symmetry – there, it happened again). This only seems like a natural consequence of anything that is… well, naturally conceived. Why would nature deviate from itself? Nature, it seems, isn’t a deity in that it doesn’t create. It only recreates itself with different resources, lending itself and its characteristics to different forms.

    A mountain will be a mountain to its smallest constituents, and an electron will be an electron no matter how many of them you bring together at a location. But put together mountains and you have ranges, sub-surface tectonic consequences, a reshaping of volcanic activity because of changes in the crust’s thickness, and a long-lasting alteration of wind and irrigation patterns. Bring together a unusual number of electrons to make up a high-density charge, and you have a high-temperature, high-voltage volume from which violent, permeating discharges of particles could occur – i.e., lightning. Why should stars, music, light, radioactivity, politics, manufacturing or knowledge be any different?

    With this concludes the introduction to symmetry. Yes, there is more, much more…

    xkcd #849