What is I#

Preface#

These are my thoughts on the lecture “Myth of Myself” by Alan Watts.

https://www.youtube.com/watch?v=C48hI9Qb2q4

I’m a big fan of Alan Watts and find his lectures fascinating. What I like most is how he segues from one topic to another, continuously flowing his thoughts.

My take#

I want to combine the philosophy of soul and “I” with software engineering. In particular, with Entity and Value, as they are introduced in Domain-Driven Development.

Entities underscore the essence of identity, and value objects encapsulate immutability and lack of a distinct identity.

For example, nails in a box are represented by their amount. They have attributes such as length and the mark of steel, but these attributes are immutable (for the sake of software modeling). Entities, on the other hand, are unique. For example, users of a web service. They also have attributes, but these attributes can change over time without affecting the user’s identity.

For our purposes, the unique primary key defines the user’s identity. It doesn’t matter whether the key is a sequential integer or a long random string. The main point is that system users never interact with the primary key. They never see it. The primary key is internal to the system and never exposed outside.

Users can change their email, username, password, phone number, or any external attribute. But their identity won’t be affected; it is still their account, even if nothing is the same as a day ago.

Now, let’s leap to philosophy. Let’s say that we (people) are the users, and “I” is this internal primary key that defines our identity but is never exposed to us. We can change our attributes, but our identity remains the same. We can change our views and moods, constantly altering our memories and gaining new knowledge while forgetting things we don’t need. My point is that this is getting pretty close to the common perception of “I” or soul. “I,” which has desires and needs, has body and mind but is not the same as any of them.

I can replace a body part, such as an arm or heart, but I will still be myself. Where it gets confusing is the brain, of course. If someone else replaces my brain, I won’t feel like myself. At the same time, if my brain is transplanted into another body, “I” will move to that body, too.

So, “I” is anchored inside of the brain. This means that its essence lies in how the synapses are interconnected. What if we have surgery and sever part of the connections? If the injury is not severe, it won’t affect my perception of myself. I might lose some knowledge and skills or the ability to feel some emotions. Would I still be me? Or would it be someone else?

What about a patient in a hospital with a dead brain, connected to a machine that pumps blood and oxygen? It’s still the same person; their identity hasn’t disappeared or changed. Their mind is gone, but the internal primary remains.

Conclusion#

I am still determining where I go with this. There’s some overlap between the entity concepts and “myself” (or soul). I like how it’s inaccessible (unobservable) to us, so we can make whatever we want out of it.