The Simulation Hypothesis, Religion, Deism, and Time... (Part 3) - How can you tell?

avatar
(Edited)

This is the third part on my Simulation Hypothesis series. You can find Part 1, and Part 2 here.

In this post I am going to explore the same question that eventually lead me to the conclusion that it was indeed very possible we are inside of a simulation. I will cover mostly the same information I did in that post from five years ago but it will also be influenced by my thoughts since then as well as dialogs I've had with other people.

The post from 5 years ago is here: If reality were only a simulation how would WE the simulants be able to know for sure?

DEFINITION:

I was asked today what a "simulant" was. Until I was asked I hadn't really considered that by using this word that I may or may not have made up (I first used it five years ago) that not everyone would understand what I meant by it. Before proceeding with the main thrust of this post I'll tell you what the word SIMULANT means to me.

SIMULANT: Is the things and entities within the simulation that are being simulated. The simulation itself encompasses all. The simulants are parts within that simulation. Depending upon what level you view them they can be as small as atoms, they can be the people, the animals, the plants, the simulated wind, particular rules, or groups of these things. Simulants would refer to anything inside of the simulation that is being simulated. That defines ALMOST everything inside the simulation. There are some cases where it may not apply but those are for another day and another post.

If we were inside of a simulation how could we know?

Five years ago I asked this exact question as I began thinking about it and writing about it. I knew that if we were inside of a simulation then we would be in some form of closed container (my initial concept) and thus unless the simulation was designed in a way to allow things from inside the simulation to see outside of it we would not have the mechanism of detecting such a thing.

If there are no windows to let you see out, then you can't see out.

If there are no communication devices to let you communicate outside then you can't communicate with outside of the simulation.

If there is no feedback within the simulation that is accessible by the simulation to determine how it is operating overall then you wouldn't know.

This is the initial question of mine:

If you are inside of a simulation that is a closed system and has no way to "see" outside of it how would you know you were in a simulation?

My concept of simulation has expanded since then. This will become more clear in some up coming posts. For now this particular post will treat the simulation as though it is closed. By this mechanism I can explain the thoughts that eventually convinced me it is indeed possible.

How can I find out a "How"?

To detect something we need to measure or observe something. How can someone observe something when there is no window or mechanism for observing the thing? This is especially unlikely and seemingly impossible when you consider any tool you develop is also within the same constraints. It does seem impossible.

Until you consider our own simulations. Our simulations began as simple. They have rapidly progressed over time and are becoming closer and closer to approximating a reality all of the time.

image.png
(Source: Unreal 5 Engine)

Sometimes simulations are for modeling scientific concepts, trying to predict weather (we still have trouble there), creating models to maybe explain phenomena that is too large for us to actually build and test experiments (e.g. motions of planets, solar systems, galaxies, etc.) We create simulations to test out our hypothesis about such things. Yet the planet inside of our simulation does not look back at us as it flies by on our computer screen, or in our physical Planetarium.

As I did with the original post I am going to take a journey through the evolution of our simulations. Along the way I will point out some things of interest that ultimately formed the only way I have thought of to know we are in a simulation IF it is a closed simulation with no way to see outside of it. The way we can tell from within it, by observing what we can observe.

What are some things people have observed?

The concept of intelligent design has been popular for a long time. People have been seeking evidence of that intelligence and there are some compelling discoveries. Many books and many studies have been created around them.

The Golden Ratio(1|2|3) is one such observation that has been studied and written about extensively. You can (and should) do your own research on it as it is extremely fascinating. I have shared three links here where I also pulled the following images from.

image.png

image.png

image.png

image.png

The Fibonacci Sequence(1|2|3) is another mathematical sequence that we use for creation of our own models and systems and it repeats often in nature.

image.png

Fractals(1|2) as a field of study was discovered. Of them the Mandelbrot Set (Image below) is probably the most well known. This opened the door for simulating and creating most things in nature within OUR simulations that we create.

image.png

These things are often pointed out as evidence of intelligent design. Interestingly enough they are also exactly what you might expect to see inside of a simulation that is using a term known as procedural generation. This is an important concept and will be touched upon in more detail in this post.

Bits, and Bytes

This section on bits and bytes is going to be likely a little dull and uninteresting. Understanding it is the key later on to the how...

Our computer simulations operate within a binary system. In this system the smallest unit is a bit. It is often considered simply much like an on/off, true/false, or 0/1 switch. It can have a value of 0 or 1. It has two possible states. We found out we could represent numbers by stringing these bits together. We have a unit known as a BYTE that is 8 bits. Each bit value much like the digits in money has an increasing power of 2 value. We represent them usually by their largest value. They will always be considered worth either 0 or that larger value. Thus they only have 2 states still.

BIT 1 = 1 (0 or 1)
BIT 2 = 2 (0 or 2)
BIT 3 = 4 (0 or 4)
BIT 4 = 8 (0 or 8)
BIT 5 = 16 (0 or 16)
BIT 6 = 32 (0 or 32)
BIT 7 = 64 (0 or 64)
BIT 8 = 128 (0 or 128)

As you turn those bits on you total their value to get your number. A byte therefore can store a value from 0 to 255. This means the byte has 256 possible states. 256 is actually the same value as if you had taken the above BIT progression and done BIT 9 = 256 (0 or 256). You can thus find out what the absolute possible number of states are for all the previous bits in any number of bits by taking the next power of two value that would proceed. Total States = (N+1) to the power of 2 (aka (N+1)^2).

We then proceeded to do all kinds of things with this process. We found that if we did 16 bits we could store 65536 different states. On 16 bit computers we would call this a WORD. In some programming languages a word is always 16 bits. Yet as far as computer central processing units (CPUs) are concerned a word is always the amount of bits the processor natively handles in things known as registers, accumulators, stores, etc. When we hear about 32 bit computers their word size was 32 bits. When we hear about 64 bit computers their word size is 64 bits.

This is important due to the number of states they can handle. Addresses for memory are tracked in this fashion. Let's talk about memory for a moment:

K (Kilobyte) = 1024 bytes
M (Megabyte) = 1024 Kilobytes
G (Gigabyte) = 1024 Megabytes
T (Terabyte) = 1024 Gigabytes

You likely have seen these terms and are familiar with them. I am sharing them for those that may not be and also so those of your that are familiar with them will be thinking about them.

With a 16 bit WORD an address could be 0-65535. That means you could at most have a 64K computer. Your RAM memory could not exceed 64K without some tricky additional registers and such added to the CPU. We did in fact add tricky registers and techniques to CPUs to compensate for this occasionally. They were not always the most ideal or performant way to handle things.

With a 32 bit WORD we suddenly had access to up to 4G (4 Gigabytes) of RAM. Certainly that should be the most we ever need right? Wrong. Within a short period of time this barrier became a huge issue. The introduction of 64 bit CPUs with a 64 bit word significantly increased the amount of addresses that could be referenced. Will we go beyond 64 bit in the future? It is very possible. If history is any indicator then YES.

That was a primer on bits, bytes, and memory. These things will be revisited later and I'll also introduce you to some other nifty types. Most specifically something known as a floating point number because it is immensely important to explaining the how.

Games, Games, oh you wonderful games...

In history as we know it we have created games. We create a play area and define rules that must be followed to PLAY the game. We extend this to other disciplines as well. When I was studying a variation of Pencak Silat (martial arts) they didn't say "Let's spar", "Let's fight", they would say "Let's play" when they were practicing with each other in freeform combat. Other styles I studied did not do this, but the "Play" aspect stuck with me. "We've taught you the rules, let's play".

image.png

We have chess with it's 8x8 two colored play area, and 16 pieces for each side with very specific rules. Every card game has a fixed number of cards and rules for how we interact with them.

image.png

Computer Games are when it becomes truly interesting as we explore the simulation hypothesis because a computer game is nothing more than a simulation that reacts to YOUR input. It is not closed. You are outside of it but you can take actions that send information into the simulation and it reacts. We enjoy watching/observing the reactions.

Our minds have an interesting ability to make other things into extensions of ourselves. As you drive eventually the car becomes an extension of you and you are unconsciously moving that car like you would an arm, or your legs. Your mind adapts and makes it an extension of you. This is similar to the concept of immersion. A well crafted game will enable your mind to for a time forget you are playing a game. You play. It becomes an extension of you.

Over time we demand more and more from our games. This one looks more realistic than that one, this one the computer controlled people (NPCs) in the game have a more life like routine they followed, this one the controls and how you move may be more natural and intuitive, etc. The sounds might get more realistic and 3d. We might introduce something like VR which further removes external stimuli and immerses us more fully in the game.

These are simulations. They are developing and evolving at incredibly rapid pace. They are also what revealed the possible HOW would we know... This post is partially about the journey of answering that. I am stepping through the same steps I went through myself as closely as I can recall. I think it is important. If I just jump to the end it becomes easier to simply dismiss without truly "seeing" and "understanding".

1962

Enter Spacewar!

image.png

Computer games had arrived...

1972

Pong

1977

Atari VCS

image.png

1983

Nintendo NES - There were plenty of other examples too. Mainly showing dates, and evolution of games.

image.png

image.png

image.png

1985

Amiga 1000 - Way ahead of everything else out there at the time

image.png

image.png


I am going to stop with the history of gaming here as I'll run out of space and won't be able to get to what the purpose of this post was. I will revisit games and other simulations on computers in a bit. I mainly wanted to show how rapidly they were progressing in a short amount of time. They are imaginary light years beyond that state today.

Let's get into the how would we know...

Enough already - How would we know?

When we have seen oddities in our own complex simulations they have generally been due to running into barriers in the amount of detail the numbers used in the simulation could express. This is why I bothered explaining how bits and bytes work. You should know by those things that we are limited in how much information we can represent with them.

As we discovered fractals this limitation would also limit how far we could zoom. As we create procedural worlds that are completely generated by math such as Minecraft they actually have a limit on how far you could travel before you started seeing problems.

I call this the bounds of infinity. We know what infinity is supposed to mean. Yet when we try to simulate it within computers and we restrict ourselves limited by numbers the computer handles then we restrict infinity to the bounds/limits that those bits can represent. We experienced it for example when we had the 4 gigabyte memory limit due to WORDS being only 32 bits in length.

These limitations pop up in our simulations and games if you push the boundaries of infinity. In fractals you start to lose the detail and it becomes blockier and blockier and eventually your screen would be just a single solid color. The detail in the fractal itself is still there and could be zoomed inward on infinitely. The problem is that would require more and more decimal places and eventually the number of bits you use ends and that detail becomes lost. When that detail cannot be expressed any further you cannot zoom any further.

In games like Minecraft they use mathematical functions known as noise functions which when fed specific information (coordinates, height, random seed value, etc) they can precisely recreate a procedural area. You can generate a very detailed and unique looking world with just a few numbers as input. There are limits. It too is impacted by the same thing as the fractals. If you were to travel far enough in any direction (it turns out it is quite far) strange things will begin to occur, larger blocks, groups of trees where you'd expect one, and eventually just a big block.

So as we push the boundaries of our own simulations we encounter limitations in the device we are running the simulation on AS WELL as limitations in how the games were coded. We begin to notice odd things.

Now assuming that our vast reality is running in some kind of device. Could it possibly have similar limitations? It need not be binary. Yet if it has limitations isn't it possible we might be able to tell we were in a simulation by doing the same thing that exposes our own simulations problems?

If we push outward or inward towards infinity if we were in a simulation and it was using any technique we are aware of in our own we should begin to see odd things happen. Things that seem out of place, don't look right, or suddenly differ from everything we have observed and can explain.

While simply seeing these oddities may not mean it is a simulation. They very well could. That is exactly one of the things something inside a closed simulation could intentionally seek out if they thought of it.

With that stated...

As we zoom in more and more on a microscopic level have we seen oddities?

I'd say yes. We also have the odd behavior of quantum particle/waves that seem to respond to the observer. Almost like a simulation responding to an observer and trying to procedurally generate content.

I don't know if we have gone OUTWARD far enough to have witnessed such things. Perhaps we have, because I am not at all up to date on the latest things in that area of study.

How would we know? See what happens as you explore infinity. If you find boundaries in some places that should be infinite then perhaps you are in a simulation.

Floating Point, and our simulations...

I have now shared with you the possible HOW that I came up with five years ago when I asked this question. To me the observations in Quantum mechanics, and the strange things we keep finding in Physics lead me to think it was indeed possible we were in a simulation. I even would go so far as to say I personally think it is likely we are. That is my current opinion and I certainly don't require any of you to agree. You need to make your own choices, and draw your own conclusions. I am not at all dogmatic on this. I'd say I give it a 75% chance in my mind at the moment. I just made that number up as a guess on how I think I view it.

I mentioned some things above that I'd like to now visit in a little more detail for those of you that may be interested.

Most of these simulations use a form of number in computers known as a floating point number. In the earlier examples on bits I demonstrated how numbers from 0-65535 example can be represented by 2 bytes. Those numbers were positive and they had no decimal places. For most complex math involved in fractals, simulations, and procedural generation we need the ability to handle negative numbers and we need the ability to handle decimal points.

To handle a negative number you can use a bit to represent positive or negative. Now those two bytes would represent a number from -32767 to 32767. Though as you can see it actually cut the size of the maximum positive number it could represent in half. It still doesn't have decimal points.

What if we took 5 of the remaining 15 bits and made those the decimal part of the number? That would be 10 bits for the whole number part, and 5 bits for the decimal parts. Well we'd be able to represent a decimal value from 0-31. Not particularly useful. That wouldn't even cover the decimal point in monetary conversions. Yet doesn't it seem like a waste of space to have that exist when there are no decimal places. What if the whole number was simply 1 and the rest should be decimal places, or 3 like PI. If we expressed PI we'd need 2 bits to represent the 3 but wouldn't it be nice to have the remaining bits available so we could express the decimal portion of PI as much as possible?

We come up with the idea of using some of the bits to instead represent the position of the decimal point. Because it can move around we call it a floating point.

When you hear people talk about floating point numbers they are referring to the computer representation of real numbers where the position of the decimal point floats around in terms of bits as needed.

I used 16 bits for my example here which is quite bad for floating point. Most floating point numbers in computers are 4 bytes in length today or 32 bits. There is another form of floating point often called a DOUBLE that is 8 bytes or 64 bits.

Which one the simulation was written to use makes a difference on how far that simulation can go before infinity starts to break down. There are tradeoffs though. Depending upon the CPU and architecture of the computer there can be a pretty big performance hit in terms of speed when using a DOUBLE. Though this may not be that big of a deal if our reality is a simulation. I'll touch more on that in the post about TIME.

This is a new record. Notice they refer to the record because of the infinity boundary. You can make your own math system with a vast amount of digits to generate these things but it is REALLY slow. That is okay though if you save the results as images and build a video afterwards. These things are not generated at real time.

Minecraft has addressed this by adding a hard border. People have made it. It must be there because there is insufficient space in the bits of the numbers for the procedural content to reliably create the world.

This barrier didn't always exist.

Until next time...

Yes it will be on TIME.



0
0
0.000
9 comments
avatar

I posted a reply to Part 2, wherein I explained my view (from a Christian perspective) as to the lack of incompatibility between the Simulation Hypothesis as you've defined it and orthodox Christian theology.

Here, however, I take exception (sort of) to your assessment that we could conceivably know if we are part of a simulation.

This is the same exception I take to Scott Adams' statements about 'The Simulation' (his personal take on the Simulation Hypothesis).

Both you and he are assuming a simulation that is limited or bounded by a creator having finite resources.

The Christian view of the Creator is that He is limitless, that His knowledge and power know no bounds. If this view is correct, then we would most likely never find any 'boundaries' to the simulation (unless He intentionally left them there for us to 'find').

Similarly, there would be no need (or requirement or 'benefit') to the creator for 'reusing code' (a recurring theme within Scott Adams' discussions of 'The Simulation').

So, in summary, although I agree with your notion that finding those boundaries probably represents the only way we could find evidence supporting the Simulation Hypothesis, this assertion only holds if the creator is limited in resources or has at least chosen to limit the resources available for the simulation itself.

A limitless simulation created by a limitless creator would not provide such telltale evidences.


Posted via proofofbrain.io

0
0
0.000
avatar

Both you and he are assuming a simulation that is limited or bounded by a creator having finite resources

Actually. No I do not make that assumption. That is an assumption many make and it is the assumption Scientists on the Panel with Neil DeGrasse Tyson made.

I do not share it. I am well aware of procedural content and procedural generation.

Using that you can make what seems to be boundless.

Also I am not stating WHAT IS. It is humans that tend to do that.

I am only stating possibilities.

There is another interesting boundary that I'll talk about today. That is TIME itself. Time is very, very interesting when you think of it in terms of a simulation hypothesis.

Likewise... In seeking the bounds of infinity in a simulation there is no guarantee we would find them.

You are also presuming the Christian God did not create a Universe with bounds.

How could you possibly know that?

I suspect it is mainly discomfort and a desire to defend that which you don't need to defend.

Christianity as it is defined everywhere I've seen, in fact every other religion as well that has a creator can fit in it without changing a thing.

Whether it is a simulation or not should have zero impact on a Christian.

On the other hand people that don't handle "have faith", or "it just is" type explanations might be more receptive because it adds a fabric that can explain how we could have a creator and potentially justify any of the religions you want without having to blindly trust another human, or a book written (and edited so many times) by humans in human tongue. In language that is not even close to being able to define the scope of reality.

Yet even to people like that. The simulation hypothesis makes it seem possible.

(NOTE: I had paragraphs in this response that I have deleted. I have my knowledge and understanding of Christianity. It's actually more extensive than most people. Yet I don't want ANY of these posts on simulation hypothesis to be about criticizing any faith. Except it does challenge those who don't believe in a creator. With this subject that is unavoidable.)

0
0
0.000
avatar

You are also presuming the Christian God did not create a Universe with bounds.
How could you possibly know that?

I apparently was not clear enough in my reply. I was not implying that I know that, or even that such is the case. I was simply saying that, although you are correct that boundaries in the simulation are possible and that, if they exist, that would be one way to discover evidence in support of the Simulation Hypothesis.

I was pointing out the obvious -- that a creator with infinite resources could (but might not) create a boundary-less simulation, and if that were the case, we would not be able to find such boundaries. And, because I am coming at this from a Christian perspective and because the Christian view encompasses an infinite Creator with infinite resources, I am doubtful that we would ever find any boundaries -- I am convinced (but not dogmatic) that we will continue to find smaller and smaller sub-atomic particles and that the more we peer into space the more expanse we will discover.


I suspect it is mainly discomfort and a desire to defend that which you don't need to defend.

Nope. No discomfort here.

Whether it is a simulation or not should have zero impact on a Christian.

Agreed.


I had paragraphs in this response that I have deleted. ... Yet I don't want ANY of these posts on simulation hypothesis to be about criticizing any faith.

Feel free to DM me via Discord or OpenHive.Chat if you want to discuss specifics privately (so others won't perceive you as criticizing; I won't make that assumption -- and even if you do 'come across as criticizing', that won't bother me at all -- a belief system that can't stand up under scrutiny is not worth having, imho).

0
0
0.000
avatar

Thanks for the thoughtful reply. As to my criticisms. They are largely in relation to the bible and honestly whether I see problems or not I do think Christianity has a pretty strong record of doing more good that harm, and the harm is generally speaking when someone manages to get into a position of authority within the religious hierarchy and then convince people of that faith the do bad things. This is not unique to Christianity. It is just the one I know the most because it is what I was raised as, and when the attacks started coming at me it was from that direction, so in my teens I started researching. That has never stopped but I don't do it that often.

I used to invite the Jehovah's Witnesses into my house (with 3 other college roommates) when I was in college early 90s. I liked messing with their heads. The period where I liked to mess with people's heads was short lived. Lasted probably 5 years tops.

I tend to only attack religion if someone is pushing it upon others or demanding action against others based upon their faith.

I think one of the wisest things the Founding Fathers did was to advocate for freedom of religion.

You can't unify a lot of people if you begin dividing them by their faith. If we were divided we would not have stood a chance against England.

0
0
0.000
avatar

I was pointing out the obvious -- that a creator with infinite resources could (but might not) create a boundary-less simulation, and if that were the case, we would not be able to find such boundaries.

Yes. And thus I'd be able to prove nothing. I instead focus on what might be possible to prove. That doesn't mean it will.

As to the smaller particles and strange things happening...

What we have seen at the quantum level has really messed with physics. There are many different theoretical models people are trying to make to explain things. They haven't proven them yet.

That does not mean will not. The strangeness may at some point not be strange and you could be correct that we'll go beyond that.

I find the aspect of quantum behavior in responding to the observer to be a lot like procedural content being generated as needed to fill a need in a simulation. Does it mean that is what it is? No.

0
0
0.000
avatar

I remember a peculiar glitch in GTA5 online, where when a buddy would leave the server while, say in your car, and their avatar would stay and get hijacked by the artificial general intelligence. So then, if you pull over or come to a stop, it would leave. If you wanted, you could follow that avatar of your friend for quite some time, but the moment you took your eyes off of them even for a hot second, or if they got out of the frame, the avatar would up and vanish. It was a weird thing. Pencak Silat looks pretty badass.

0
0
0.000
avatar

Hah... Lot's of glitches out there in the gaming world. The more complicated our games/simulations get the more interesting things seem to arise.


I actually took Kun Tao Silat which is a combination of Pencak Silat, Indonesia version of Shaolin Kung Fu, some boxing, some fencing, etc. An MMA if you will. It was heavily leaning towards the Silat.

I only took it for a year or so. I've taken quite a number of martial arts though something in life always interrupted my training before I got particularly good.

So I know a little bit of a bunch of different styles. Silat did indeed have some of the most interesting.

It has these moves that look like nothing. Yet if you are on the receiving end they are super powerful and blow your mind. A fellow student gave our training the nick name "covert aggressive" and I think he was a person pretty skilled at Wing Chun.

The most devastating stuff in that style is not flashy at all and would make for a very boring movie. When it used on you though it is a mind opener. It makes you consider a lot of things you probably never considered before.

I kind of remember my thoughts that came rapidly the first time it was demonstrated to me.

"Wow! With just a tiny bit more effort he would have sent me sprawling and my leg would be broken badly."

Yet it didn't look like he did much of anything. Some of the follow thru stuff you could even act like what you did was an accident as you further messed the person up.

I'd taken some White Crane Kung Fu, American Kenpo from two different schools, Tae Kwon Do, Tai Chi Chuan, Qiqong, etc. before I experienced that.

I can say I never experienced anything remotely like it in any of those previous styles. I experienced it within probably 15 minutes of signing up for training in Kun Tao Silat. The moves in question though are common and foundational to Pencak Silat.

I never got as far as all the knife training. I wish I had because that is a big part of that style and could come in handy.

0
0
0.000
avatar
(Edited)

Absolutely amazing, I would have loved taking all those classes!

0
0
0.000