Life started simple
We look everywhere. Everything seems so complex, so magical, so beautiful. For sure there must be some intelligent mind behind all of this.
Maybe there is, maybe there isn’t. Who knows?
Let’s assume for a moment that there isn’t.
All of this complexity sprung from a simple thing, a single condensed point and then, after many iterations known as years, we arrived at what we have today.
Seems impossible, doesn’t it?
When we think about these subjects we grow compassion for the early societies that attributed everything that they didn’t know to the gods. It sure does look like it was made by them (maybe it was).
What we know with some level of sureness is that we all came from basic enough substances and here we are.
All of us. All of everything.
If you keep looking down and down and down we are all made of the same construction elements. Basic things.
I love this video. It shows how everything goes from a simple thing up to the whole Universe.

Nature teaches us humility. Nature shows us how everything works. We just have to learn how to look.
Mathematical beauties
We evolved and with that our understanding of the Universe (there are controversies). There are some beautiful mathematical equations that show us exactly what this “from simple to complex” really means.
Game of Life
“Can something with really simple rules and an initial state become something very complex just by letting it rip?”.
The answer is yes and we can see it in action by checking Conway’s Game of Life.
It has simple rules:
- Any live cell with fewer than two live neighbors dies, as if by underpopulation;
- Any live cell with two or three live neighbors lives on to the next generation;
- Any live cell with more than three live neighbors dies, as if by overpopulation;
- Any dead cell with exactly three live neighbors becomes a live cell, as if by reproduction.
With these rules and a random initial state it can turn into complex and beautiful patterns, most of them looking very lively.
It is as if we were actually observing a real (🔵🐇🔴) Universe running.
You can play with it at my Conway’s Game of Life implementation.
Some pictures of some patterns:


Take this, for example. It is a simple random initial state. At this point, it is static - meaning it is not moving, it’s stale, the population is not growing nor dying, even after infinity iterations.

Then, after adding just ONE alive cell in a random place and waiting for some iterations, look where it led us.

Look at the scale. Look at how far away those cells on the bottom are from the “source”. One simple alive cell did it. That’s entropy, that’s “butterfly wings in Brazil creating hurricanes in Florida” effect in action.
And it keeps going when you hit play.
It will keep moving forevermore, creating more and more outliers in the process, in all directions, just like probes going into the unknown space searching for meaning; searching for something, anything.
The sad thing is that, in this little Universe, I am the Architect and I know there’s nothing out there because I didn’t put it.
How sadder would it be if we found out that this is exactly what the Architect of our Universe would say looking at us exploring space.

Mandelbrot and Julia sets
You probably heard about fractals once in your life. Those beautiful abstract images that keep repeating the same pattern wherever you look into the image.
Mandelbrot and Julia sets are yet another example of a simple thing converting into a complex structure.
The “rules” are simple:
- Start with an initial state:
z
for Mandelbrot,c
for Julia, both complex numbers (a + bi
); - If
|z|
or|c|
is greater than 2, it is not part of the sets; - Respect this equation:
z = z^2 + c
for each iteration while the value of|z|
is not greater than 2; - Based on the information of how many iterations it took to break out of the bounds of the set, attribute a color.
So, the basic difference between both sets is that Mandelbrot fixes the initial z
and Julia fixes the c
value while iterating the loop.
You can check a simple implementation of these sets in this repository.
This is the End
“My only friend, the end”.
They use to say that people around the world that have had psychedelic experiences tend to experience fractal patterns. What does that teach us?
Well, for a starter, it shows that we are all part of the same being, we are all connected in some way and that we all function in very similar ways.
Another thing that you could take from the statement is that we may be experiencing what the world really is. Maybe we are all inside one of those sets. A simulated reality. Although frightening, it doesn’t change anything as that’s the only universe we know of, even if it is simulated.
The conclusions I take from this is that there are a lot of things that we still don’t know and we are basically trying to mimic nature in some ways, hoping that we may one day find out. It’s a great direction and a great start, but we’re still in embryonic phase.
One day we will get there, maybe.
License
This post is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International.