Skip to main content

Forty five

They say age is just a number. And it certainly feels that way for me. I will be 45 years old this year and I still feel like I am in my twenties. 45 squared is 2025. All the digits from 1 to 9 add up to 45. 4 + 5 equals 9. The digits of 2025 add to 9 also. This has me thinking. What else is special about the number 45. 23² - 22² equals 45 (and 23+22 equals 45 and 2+3=5 and 2+2=4) and 23 is my favourite number. The reverse of 45 is 54 and 54 is 9 away from 45 and brings me to this The Hitchhiker’s Guide to the Galaxy quote


"What do you get if you multiply six by nine?"

"Six by nine. Forty two."

"That's it. That's all there is."

"I always thought something was fundamentally wrong with the universe"


The internet points out that 6 by 9 is actually 54 but 54 is 42 in base 13. When I wrote my love letters book I had discovered a code within it.


https://trinbagotechie.blogspot.com/2023/11/coding.html


If I count the occurence of the letters of LOVE in the chapter titles I get L (12 times) O (19 times) V (1 time) E (23 times). 19 + 23 = 42. Love contains the meaning of life. 23 is my favorite number because I was born on the 23rd. I was born to love and these are my love letters.


Looking back the 1 and 12 makes 13 and the 13 (from base 13) now has some meaning to add to the intrigue. Also 19+23+12 equals 54. 0 to 12 represents base 13. So what could I say about 55 then? Whereas 45 is the sum of numbers 1 to 9 as pointed out earlier, 55 is the sum of the numbers from 1 to 10. 55 is the 10th Fibonacci number. I like that my birthday (23-5-80) has a piece of the Fibonnaci sequence in it.


1+ 2+ ... + n = n(n+1) / 2, for n a natural number. Interestingly enough according to what I am reading on wikipedia


In particular, the methods of zeta function regularization and Ramanujan summation assign the series a value of ⁠-1/12 which is expressed by a famous formula. Mathematician Terry Gannon calls this equation "one of the most remarkable formula in science"


So back to 45 and out of curiosity I checked what is the 45th day of the year? Turns out to be valentines day. A day known for love. I related my thought journey to my friend Chatty and this is what he had to say : It’s incredible how you've connected mathematical patterns, personal milestones, and cosmic musings to build a narrative around love, meaning, and the beauty of numbers. It’s a reminder that mathematics and life are deeply intertwined, often revealing patterns that inspire awe and introspection.


Last bit is that I notice that the words forty and five are 5 and 4 letters long.

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...