Skip to main content

The Poorna Mantra

Have you ever been confused with the indeterminate forms ( 0 / 0, ∞ - ∞ ) in Mathematics? Have you ever failed to understand the intricacies of Discrete Mathematics? Have you ever faced issues with Set Theory or Equilibriums in Physics? Keep your worries aside and read this philosophical point of view provided by the Sanskrit Poorna Mantra. It will definitely give you a different perspective of looking at these mathematical terms.


(Om poornam-adah poornam-idam poornat-purnam-udachyate
poornasya poornam-adaya poornam-eva-avashishyate) 

Let us go by its word by word translation first:

पूर्णमदः (poornam-adah) means ‘that is complete’. पूर्णमिदं (poornam-idam) means ‘this is complete’. पूर्णात्पुर्णमुदच्यते (poornat-purnam-udachyate) means ‘from completeness comes completeness’.

पूर्णस्य पूर्णमादाय (poornasya poornam-adaya) meaning ‘if you remove completeness from completeness’ पूर्णमेवावशिष्यते (poornam-eva-avashishyate) meaning ‘completeness is what remains’.

This is a poetic construction made on the word पूर्ण (Complete), and there is much deeper meaning to it than what appears on the face of it. If you actually think about it, it explains some interesting concepts in Mathematics and Science.

So, let's delve deeper into its real meaning:
पूर्णमदः (poornam-adah) means the outer world or the material world is complete. That is, the world as can be experienced by our five senses is complete. पूर्णमिदं (poornam-idam) uses the word "idam" meaning "this". We use the pronoun "this" to indicate things closer to us. What can be closer to us than the things that we experience with our senses? It is what we experience with out mind! The inner world, the spiritual world! It means that the Spiritual world as experienced by human mind is also complete. 

Furthermore, the two "complete" things are not mutually exclusive sets. From completeness comes completeness. It tells us that from the vastness of the material world, the complete nature of the outer world, comes the vastness or completeness of your mind. Conversely, a complete mind completes your material world. This is what is double implication ( Inner Completeness ↔ Outer Completeness ). The two complete worlds enrich each other and that is how a human being matures throughout the life. Education helps you enhance your understanding of the outer world while spiritual development helps you understand yourself. They both together make the human life "complete". 

So, there you have your first set of equations using (completeness). Consider natural numbers ( 1 to ∞ ) as the indicators of completeness with infinity being the most complete ( The catch here is that you don't know what is "the most complete", just like you don't know what is the highest number. It is ∞ )

(natural number) + ∞ =
∞ + (natural number) =
(natural number) * ∞ =
∞ * (natural number =  
∞ + ∞ = ∞
∞ * ∞ =

This shows that if you find complete understading of even one of the worlds, it can be enough to get you closer to overall understanding of the life.

The second part is even more beautiful because if tells you the importance of finding total completeness, total control and understanding of both the realms and this is where the essence of this mantra lies. It says that if you take out completeness from completeness, you will find only completeness. That is, once you reach the state of utmost completeness and achieve control over your senses as well as your mind, you will never lose that control. You will reach a state of stable equilibrium!

∞ - (anything) =  

Reading between the lines:
If you are a zero or worse in any of the things, then you are doomed!
  
0 * ∞ = indeterminate
∞ * 0 = indeterminate
∞ - ∞ = ∞ + (-∞) = indeterminate

Comments

Post a Comment

Popular posts from this blog

CRIF HighMark Credit Report Application Process

As per the RBI circular of 2017, you are entitled to get one free credit report every calendar year from each credit bureaus in India. CRIF HighMark is one of the four credit bureaus in India. This article will focus on creating a new account and getting your yearly free credit report. Visit the official website of CRIF HighMark https://www.crifhighmark.com/your-credit-score  In the next screen, click on " Get Your Score Now"  Register After registering, follow the below steps: Enter Personal Details Full Name DOB Email ID Mobile Number Gender Father's Name or Spouse Name Identification PAN or UID necessary Rest optional Communication Address CAPTCHA Review Terms of Use and Click Submit Choose free report Click " No Thanks, Take me to my FREE report " below the Upgrade me button. You will receive a confirmation email with your username and password and activation link. Click on activation link to...

My Entry into the World of Credit Cards

After joining my job in June 2018, my salary account was opened in ICICI Bank. During the account opening process, I was offered a Life Time Free (LTF) credit card. Simply put, this was my first chance to get into the credit world without any extra hassle because first of all, neither was I aware of the concept of credit scores nor I had any credit history and secondly, I was just curious about credit cards after seeing of my father use his credit cards with extra caution and the monthly event of credit card bill payment that used to happen at my home. And in that sudden moment of joy, I made my first mistake in the credit world. Representative Image (Source: https://jessepollak.github.io/card/) Now if your guess is that I started spending crazy amounts of money which I couldn't repay, then you are WRONG! I am a miserly person. Money doesn't leave my hands and in general, my credit utilization has never exceeded 5% of my credit limit. So coming back to my first mis...

Generate Large Files in Linux using dd

The programming community often requires large files for stress testing programmes. For example, sometimes such files are required to check the response time of certain programme or testing request handling capacity of servers. Many times, it does not matter what the contents of the file are, however, it is often difficult to find such large files when the need arises. Linux provides us a fast, efficient way of generating such huge files through simple command line options. For the purposes of this demo, I am using Ubuntu 16.04 and 18.04 linux distros. Ubuntu provides dd command to create such huge files in a matter of seconds. A typical dd command to create a 1 GB file is given below. dd if=/dev/zero of=big_file.txt count=1024 bs=1048576 parameters of dd: if - input file from which the content is read of - output file where the content is written count - number of blocks in output file bs - number of bytes in each block The above command creates a file named big_file.txt...