Skip to main content

Continuous versus discrete

I was watching that video and it led me to a realisation that my friend Chatty put nicely for me

The mystery of 0.577 - https://youtu.be/4k1jegU4Wb4

All real physical measurements are fundamentally discrete—we only sample the world in finite steps, with finite precision—while continuous mathematics is an idealized limit we use because it is simpler, more powerful, and often extraordinarily accurate. Every smooth concept in math—derivatives, integrals, π, e, γ—arises as the limit of increasingly fine discrete approximations: polygons approach a circle to produce π, discrete compounding approaches e, and the mismatch between discrete harmonic sums and continuous logarithms produces γ. These constants are the “fingerprints” left behind when the discrete world is modeled by continuous mathematics.

Which led me to this question. Is the world and reality, discrete or continuous?

My friend Chatty tells me that modern physics does not give a final answer, but evidence increasingly suggests that reality is fundamentally discrete at extremely small scales: matter and energy are quantized, spacetime may come in tiny units near the Planck length, and the universe appears to contain only finite information. Continuous mathematics remains incredibly useful because these discrete building blocks are so small that the world looks smooth at human scales.

In my mind it boils down to if there is a smallest particle. If there is a smallest particle, then the world is discrete. If there is no smallest particle then reality cannot exist because you cannot build anything.

My friend Chatty tells me that my intuition is powerful: true discreteness implies smallest building blocks. But even if reality were continuous with no smallest particle, it could still exist — the problem is not existence but the mathematical infinities that come with infinitely divisible physics.

Now I am thinking. Does it make sense to say that you can create finite from the infinite but you cannot create the infinite from finite. Infinity is the source. Infinity is what God is. God is everything.

My last thought for this blog post is that, can we say that just like something cannot exist without nothing (think light without darkness), the finite cannot exist without the infinite. On the other hand, we can say that darkness does not exist, it is just the absence of light and only light exists. Humans only exist because God exists.

I like how my exploration after watching that video brought some clarity to my thoughts on the infinite while at the same time opening up a whole new world of questions and thoughts.

*I like how 5+7+7 = 19 ( 1 is smallest digit and 9 is largest digit )

Comments

Popular posts from this blog

Stuck running sftp server on termux alpine for multi-user setup

The below is my journey trying to get multi-user sftp working using alpine on termux pkg update && pkg upgrade pkg install proot-distro openssh proot-distro install alpine proot-distro login alpine apk update apk upgrade apk add openssh shadow sudo apk add vim vim /etc/ssh/sshd_config Port 8022 PermitRootLogin no PasswordAuthentication yes Subsystem sftp internal-sftp Match Group sftpusers     ChrootDirectory /sftp/%u     ForceCommand internal-sftp     X11Forwarding no     AllowTcpForwarding no addgroup sftpusers adduser user1 adduser user1 sftpusers mkdir -p /sftp/user1/upload chown root:root /sftp/user1 chmod 755 /sftp/user1 chown user1:sftpusers /sftp/user1/upload How I run my server each time pkill sshd rm -f /etc/ssh/ssh_host_* ssh-keygen -A /usr/sbin/sshd -D -d -d -d From another termux session sftp -P 8022 user1@127.0.0.1 Connection reset by 127.0.0.1 port 8022 Connection closed Some troubleshooting steps mkdir -p /run/sshd chmod 75...

Recursion example with SQL

I asked my friend Chatty, can you use recursion in SQL? For example I have a table (ID, value) ordered by increasing ID. Can you guide me through using recursion to select all the rows of consecutive repeated values using and creating an SQLite database. Provide the small sample data. Is there a better way to do this? A More Modern Alternative (Window Functions) In real-world SQL, this problem is usually solved more efficiently using window functions like: LAG() ROW_NUMBER() SUM() OVER But recursion is excellent for learning traversal logic and hierarchical thinking. Recursion example using sqlite on termux DROP TABLE IF EXISTS sample; CREATE TABLE sample (     id INTEGER PRIMARY KEY,     value TEXT ); INSERT INTO sample (id, value) VALUES (1, 'A'), (2, 'A'), (3, 'A'), (4, 'B'), (5, 'B'), (6, 'C'), (7, 'A'), (8, 'A'), (9, 'D'), (10, 'D'), (11, 'D'), (12, 'D'); WITH RECURSIVE grouped AS (    ...

Installing mysql and phpmyadmin on termux

ChatGPT prompt - Guide me through installing mysql and phpmyadmin on termux Because official MySQL packages are not maintained for Termux, the easiest and most stable setup is MariaDB (drop-in MySQL replacement) Set the root password Create an admin user for phpmyadmin \e for long queries in editor ; At first I got the following error trying to log into phpmyadmin mysqli::real_connect(): (HY000/2002): No such file or directory Turns out phpMyAdmin is trying to use “localhost socket” instead of TCP vim phpmyadmin/config.inc.php change $cfg['Servers'][$i]['host'] = 'localhost'; to $cfg['Servers'][$i]['host'] = '127.0.0.1'; Restart everything. This forces TCP instead of socket. Now that I have a beautiful LAMP stack setup I could try to install wordpress locally on termux.