Skip to main content

What makes numbers beautiful?

This is a chapter from my fourth book called When hunger yearns

It is after 2am in the morning. I decided I wanted to be taken on a random journey somewhere. I decided to count the characters in my last chapter - What makes us beautiful? I got 3769 characters. This turned out to be a prime number. The number 2 numbers before is also prime and so we have twin primes.

Just yesterday I watched this video - Why is this number everywhere?


This is an example of how I find numbers to be beautiful. Pythagoras said, "all is number," and that tells us that everything in the universe depends on numbers. I feel like the number 3769 could take me to a random and beautiful place. I just do not know yet. A few days ago I learnt that the recent Abel prize in Maths winner was Michel Talagrand, a French mathematician. He won the 2024 prize for his work on probability theory and randomness.

Googled "3769 beautiful" and found "Edison matrix 3769. Beautiful Isle of Somewhere / Edison Mixed Quartet ; Frederick J. Wheeler ; John Young".


3769 here is the matrix number used in phonography. It is what is imprinted on that vinyl recording. The link takes me to a recording of "Beautiful Isle of Somewhere". What I learnt from wikipedia was that the song originated from a poem and became popular at funerals. The song is telling us that heaven is beautiful (comparing it to life on an island) and God is alive and heaven is where we will live anew. The Edison Mixed Quartet is a group that performs sacred vocal quartets with orchestra accompaniment.

When I Google "3769 heaven" one of the results is a post by poem heaven on twitter which shows up in Google as having 3769 reposts.


"It is time for people with good hearts to finally win"

And now back to a piece of the song and wow at how they are related.

Somewhere the day is longer,
Somewhere the task is done;
Somewhere the heart is stronger,
Somewhere the prize is won.

I like the numbers 19 and 23. I have been finding these in my writing. Phrases with 19 letters and 4 spaces (quartet) (23 in total) and occurring on page 42 of my books (19+23). 19 by 23 equals 437. 437 can be arranged to give 347. 347 is the 69th prime number. Makes me wonder if things are really random or not? Things like these make me appreciate the beauty of numbers and the beauty of "randomness". Makes me wonder if there is a mathematical code of the universe. According to wikipedia, "In physics and cosmology, the mathematical universe hypothesis (MUH), also known as the ultimate ensemble theory, is a speculative "theory of everything" (TOE) proposed by cosmologist Max Tegmark." It is controversial but is worth my time looking into further. I do not know but I find numbers to be beautiful to me.

*My last book has 37 chapters and in the 37th chapter I talk about my 37 peaces art piece which was also talked about in my first book

*There is us in n(u)mber(s)

Comments

Popular posts from this blog

Hobby project - Store and view exchange rates

The next step in my project was to test out being able store and display the rates in a database. I decided to use nodejs and supabase for this. Everything worked beautifully. Only hickup was the following error due to my package.json not being correct. SyntaxError: Cannot use import statement outside a module Added this to package.json   "type": "module" This works beautifully. Right now I am just testing fragments of what could be part of a bigger system to see what is possible and what works and how easy to code on a mobile. There is no fully functioning integrated end to end system just yet. This is also what I tested. A serverless append-only database using GitHub + Actions + Pages. That’s basically a lightweight backend system. This was the ChatGPT prompt I used. Guide me through each step. This is what I want. A manually run github actions that adds to docs/data.json with the current date and time. docs/index.html displays all the entries in data.json. Make s...

What is important

Every now and again, I get reminded of the why. Why I have handed my life over to God. It is 3:08 p.m. and I have decided to write. Honestly, I feel like I could end this blog post right here. What more is there to say? God above all else. God is our compass on this journey called life. Everything else can become a distraction. Maybe not everything, but certainly many things. You get the point. What is important? What do we prioritise? What do we make time for? The answers look different for everyone. Our lives are different. We are tested differently. We are all products of our circumstances, and those circumstances vary from person to person. Yet God is the common thread across humanity and throughout time. God always was and always will be. One day, we will answer to God. We will give account to God. We cannot live without food, water, and oxygen, but all of those things come from God. So how can we live without God? How timely. I just received a notification from the Quranly app: S...

Running php and apache on termux

This was my experience getting php and apache to run on termux apt update && apt upgrade -y apt install php-apache I was following an old blog post that used php 7 and got these errors Can't locate API module structure `php7_module' in file /data/data/com.termux/files/usr/libexec/apache2/libphp.so: undefined symbol: php7_module Cannot load /data/data/com.termux/files/usr/libexec/apache2/libphp7.so Corrected in apache config file vim $PREFIX/etc/apache2/httpd.conf LoadModule php_module /data/data/com.termux/files/usr/libexec/apache2/libphp.so Apache is running a threaded MPM, but your PHP Module is not compiled to be threadsafe.  You need to recompile PHP. Comment out mpm_worker and use mpm_prefork #LoadModule mpm_worker_module libexec/apache2/mod_mpm_worker.so LoadModule mpm_prefork_module libexec/apache2/mod_mpm_prefork.so This still does not work as apache (httpd) was failing silently. According to Chatty LoadModule php_module ...libphp.so often fails in Termux becau...