In physics, energy is that which is causally invariant or symmetric with respect to time. Said differently, energy is never created or destroyed, it is conserved in the universe.

Now there is a question about information. Is information causally invariant? Does information remain the same with respect to time? To understand this, let's first understand what energy is, then attempt to understand what information is.
The strange thing about energy is that it is this universal currency that seems to be interchangeable between the different forces in nature (i.e. electromagnetic, strong, weak and gravity). It is that thing that makes change possible.
Now let's assume that the universe is computational in nature. That is, anything we see in nature is a consequence of computation. That is, there is computation underneath the physics that is driving the universe to change.
What does it mean then that information is conserved in this computational universe? Also, how is energy conservation related to information conservation?
Information conservation implies that it is that thing that does not change in time. That there is this bit that can't be changed. This is different from energy in that it is not an agent of change. Energy can be transformed, it's just the overall quantity remains the same.
Energy is what we would call a value and not something with an identity. When we speak however of information, that is of a bit, do we also imply an identity? That one bit over here is different from another bit elsewhere?
Are we speaking of the difference between a fermion (that has identity) and a boson (one that does not). A fermion is that elementary particle that is uniquely defined by its quantum features. The universe has a rule that fermions are unique (hence identity).
So when we speak about information, are we referring to uniqueness? If so, then information is different from energy. Energy is to bosons as information is to fermions.
How do fermions change their identity (i.e. change their quantum state)? Through energy that comes from the force carriers (i.e. bosons).
So to conclude, when you use the word conservation you imply a value, that is a quantity. When you speak of information, you imply a unique state.
That unique state is not time-invariant. It is incorrect to say that information is conserved. It's more apt to say that information is 'reconfigured'.
Now it takes exchange of energy to get to a specific quantum state. An atom can receive a photon or release a photon, this happens when its quantum state changes. There is no reconfiguration of information without an exchange of energy.
In a digital computer, we typically don't concern ourselves with the energy cost of transforming from one information state into another state. It is of course always present. Information in a computer always requires energy to change.
We also never care to use energy conservation rules to analyze the mechanisms of an algorithm. A computer is not a closed system. It draws energy from the wall that it is plugged into. (note: Wall is connected to the grid)
But here's the rub. A biological brain cares about energy conservation. A biological brain cares about where it's going to get its next meal. A biological brain isn't plugged into the wall that gets a steady influx of energy. (note: plants get it from the sun)
A biological brain cares about information about sources of energy. Information that is relevant for a brain is not the same as the information that is relevant to physics. Although both are related to energy.
A brain cares about information about energy. In physics, information is configured because of energy. These are just two different things. One is about energy and the other is the effect of energy. Let's not confuse the utterly obvious!
@threadreaderapp unroll

More from Carlos E. Perez

More from Society

You May Also Like

A brief analysis and comparison of the CSS for Twitter's PWA vs Twitter's legacy desktop website. The difference is dramatic and I'll touch on some reasons why.

Legacy site *downloads* ~630 KB CSS per theme and writing direction.

6,769 rules
9,252 selectors
16.7k declarations
3,370 unique declarations
44 media queries
36 unique colors
50 unique background colors
46 unique font sizes
39 unique z-indices

https://t.co/qyl4Bt1i5x


PWA *incrementally generates* ~30 KB CSS that handles all themes and writing directions.

735 rules
740 selectors
757 declarations
730 unique declarations
0 media queries
11 unique colors
32 unique background colors
15 unique font sizes
7 unique z-indices

https://t.co/w7oNG5KUkJ


The legacy site's CSS is what happens when hundreds of people directly write CSS over many years. Specificity wars, redundancy, a house of cards that can't be fixed. The result is extremely inefficient and error-prone styling that punishes users and developers.

The PWA's CSS is generated on-demand by a JS framework that manages styles and outputs "atomic CSS". The framework can enforce strict constraints and perform optimisations, which is why the CSS is so much smaller and safer. Style conflicts and unbounded CSS growth are avoided.