Skip to main content

Aryabhatta didn't invented zero but propagated

A frustrated student asked his Maths teacher, "if Zero was invented by Aryabhatt and he was born in the Kalyug, then in the past in Satyug, who counted 100 Kauravas and Ravana's 10 heads and how?"

Teacher resigned and went back to Vedic education but is still not able to find the answer.

Joke apart but the point needs to noted.

P.S. Got the above message as joke but any reply for that?

An expert's answer:

Let me start with just 1 reference from Vedas and 1 from Puranas (to keep this answer short - we will not have enough space if we want to document all such references).

1. Vedic Reference (Yajur veda)

The Rishi Medhātithi, after preparing bricks for a Vedic ritual, prays to the Lord of fire, Agni.

Imā me Agna istakā dhenava Santvekā ća desa ća satam ća
Sahasram ćāyutam ća niyutam ća Prayutam ćārbudam ća nyarbudam ća
Samudrasća madhyam ćāntasća Parārdhasćaita me agna ishtakā
Dhenavasantvamutrāmushmimlloke .

The mantra recited is in vogue for srivaikhanasa Archakas in Agniprathishta till now, "Ima me agna ishtaka"

Meaning:

Oh Agni! Let these bricks be milk giving cows to me. Please give me one and ten and hundred and thousand. Ten thousand and lakh and ten lakh and One crore and ten crore and hundred crore, A thousand crore and one lakh crore in this world and other worlds too.

For starters, here is the meaning of some of the key words in that sloka:

Sanskrit
Number Figure
Power Notation
Hindi
English
eka
1
100
Ek
One
dasa
10
101
Das
Ten
satam
100
102
Saw
Hundred
sahasram
1000
103
Hazar
Thousand
ayutam
10000
104
Das Hazar
Ten thousand
niyutam
100000
105
Lakh
Hundred thousand
prayutam
1000000
106
Das Lakh
Million
arbudam
10000000
107
Crore
Ten million
nyarbudam
100000000
108
Das Crore
Hundred million
samudram
1000000000
109
Arab
Billion
madhyam
10000000000
1010
Das Arab
Ten billion
antam
100000000000
1011
Kharab
Hundred billion
parardham
1000000000000
1012
Das Kharab
Trillion

2. Reference from Bhagavata Purana

Chapter 3.11 of Srimad Bhagavatam explains the concept of time. It starts from what is now called nano seconds and goes up to trillions of years.

I have just given couple of references (which is just the tip of iceberg). If we read with an open mind we can find many more such references. This clearly shows that ancient Indians knew a lot of mathematics, counting, decimal systems etc. Why are we getting such "Intelligent" questions, when the truth is actually the opposite?
  1. This question arises due to our ignorance. One of the biggest atrocity done by Britishers to India was to eradicate the Guru-Sishya tradition of educating our ancient knowledge and values. We are repeatedly fed nonsense after nonsense about our past, to the extent that we all either feel ashamed to talk about it. Even those who talk, do so with a sense of guilt.
  2. We also blindly vomit (reproduce) the Macaulay based education system that Britishers left us with. One of such nonsense is that Aryabhatta "invented" zero. This is an ambiguous statement, which doesn't give the right perspective to Aryabhatta's contribution. Another such nonsense is that there is Classical Sanskrit (whose grammar was codified by Panini) and then there is Vedic Sanskrit, which is somehow a different language. Absolute nonsense - Panini composed a treatise summarizing the Sanskrit grammar from days of yore - till his time. This doesn't mean that the language itself didn't exist or it existed as a different language.
  3. We also have a screwed up version of "Secularism" and it has become a fad among our generation to post such questions and jokes, which makes us look "cool" (in reality it does make us look stupid).

Summary

Rather than saying that Aryabhatta "Invented zero", I would say that he was the first person to formally define the place value system using Zero. He also elaborated on its mathematical usage. The alternative available was Roman numerals, which is not scalable (to the levels that our Vedas went). Why we refer Aryabhatta and not our Vedic and Puranic texts: Aryabhatta's work was intended to be a Mathematical treatise. His work summarizes the knowledge that was available with us until that time. Our Puranas and Itihasas on other hand, though had several references to larger and smaller numbers, were not Mathematical texts - Maths in them were incidental.

I feel we really have to get our history corrected to become proud of our heritage & culture.

Comments

Popular posts from this blog

Unlock protected blocks in Siemens SIMATIC Step 7

Recently I'd been called by Hindalco's Fabrication Plant division to unlock the protected blocks in Siemens SIMATIC Step 7. They were in need to unlock those blocks since an year because of 1 million Rupees of loss per month. They want to re-program those blocks but it was locked by the man who'd done the setup. From the people working in that department, I came to know that they were trying to call that man (someone from Italy) right here but he's not coming. Actually, what he'd done was that he'd locked some of the blocks and deleted the source file. And Siemens didn't provide any feature to unlock. Department people also told me that even the people working in Siemens don't know how to do it. Being a software engineer I know that any thing can be reverse engineered. So I took up the challenge. How did I unlocked the blocks? The first thing I'd done was searched about this software at Google and read about what is this software all about. Aft...

Launching a Jupyter Notebook with TensorFlow using Docker

This article will walk you through setting up a Jupyter Notebook environment with TensorFlow pre-installed using Docker. Docker allows you to run isolated containerized applications, providing a consistent environment regardless of your underlying operating system. Prerequisites: Docker: Ensure you have Docker installed and running on your system. You can download and install it from the official Docker website ( https://www.docker.com/ ). Steps: Start Docker: Open your Docker application (Docker Desktop for Windows/macOS or the command line if using Linux). Run the Jupyter Notebook container: For macOS/Linux: Open your terminal application and run the following command: docker run -it --rm -p 8888:8888 -v "${PWD}":/home/jovyan/work jupyter/tensorflow-notebook For Windows: Open your Command Prompt application and run the following command: docker run -it --rm -p 8888:8888 -v "%CD%":/home/jovyan/work jupyter/tensorflow-notebook Explanation of the command flags: -...

JS: The complete code example of Crypto.js (DES)

For one of the project I was trying to use crypto.js but I found that the Quick-start Guide have some deficiency in terms of library usage. So I am writing it here as a useful note for memory recap. <script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/tripledes.js"></script> <script> var encrypted = CryptoJS.DES.encrypt("The secret message", "secret_key"); var e_msg = encrypted.toString(); console.log(e_msg); var decrypted = CryptoJS.DES.decrypt(e_msg, "secret_key"); var d_msg = decrypted.toString(CryptoJS.enc.Utf8); console.log(d_msg); </script>