I think that Plex is scientific philosophy that aims to understand our understanding of nature, rather than nature itself. It emphasizes that our understanding of nature determines our role in the scheme of things.
In simpler terms, Plex is about how we perceive and interact with the world around us. It's not about the actual nature of things, but about how we understand and interpret them.
For example, if a being could only perceive magnetic fields, then anything non-magnetic would be invisible or non-existent to it. That's its understanding of nature, and it would behave accordingly.
The text also mentions that Plex doesn't have axioms, which are fundamental truths or principles that are accepted without proof. Instead, it only has definitions. This means that Plex doesn't assume anything to be true without defining it first.
The author also challenges the concept of a "big bang" or a beginning of time, stating that this idea is an artifact of our current scientific understanding, and that Plex offers proofs that there was no beginning.
Here's a Python analogy to help understand this concept:
```python
class Being:
def init(self, understanding):
self.understanding = understanding
def perceive(self, nature):
return self.understanding(nature)
def magnetic_understanding(nature):
return 'magnetic' in nature
def non_magnetic_understanding(nature):
return 'non-magnetic' in nature
magnetic_being = Being(magnetic_understanding)
non_magnetic_being = Being(non_magnetic_understanding)
nature = ['magnetic', 'non-magnetic']
print(magnetic_being.perceive(nature)) # True
print(non_magnetic_being.perceive(nature)) # True
```
In this example, Being
represents a being in Plex. Each being has an understanding of nature, which is a function that takes nature as input and returns a perception. The magnetic_understanding
and non_magnetic_understanding
functions represent different ways of understanding nature. When a being perceives nature, it uses its understanding to interpret it. The magnetic being can perceive magnetic things in nature, while the non-magnetic being can perceive non-magnetic things.