D. R. Kaprekar
   HOME

TheInfoList



OR:

Dattatreya Ramchandra Kaprekar ( mr, दत्तात्रेय रामचंद्र कापरेकर; 17 January 1905 – 1986) was an Indian recreational mathematician who described several classes of natural numbers including the Kaprekar, harshad and
self The self is an individual as the object of that individual’s own reflective consciousness. Since the ''self'' is a reference by a subject to the same subject, this reference is necessarily subjective. The sense of having a self—or ''selfhoo ...
numbers and discovered the
Kaprekar's constant In number theory, Kaprekar's routine is an iterative algorithm that, with each iteration, takes a natural number in a given number base, creates two new numbers by sorting the digits of its number by descending and ascending order, and subtracts th ...
, named after him. Despite having no formal postgraduate training and working as a schoolteacher, he published extensively and became well known in recreational mathematics circles.


Biography

Kaprekar received his secondary school education in
Thane Thane (; also known as Thana, the official name until 1996) is a metropolitan city in Maharashtra, India. It is situated in the north-eastern portion of the Salsette Island. Thane city is entirely within Thane taluka, one of the seven taluk ...
and studied at Cotton College in
Guwahati Guwahati (, ; formerly rendered Gauhati, ) is the biggest city of the Indian state of Assam and also the largest metropolis in northeastern India. Dispur, the capital of Assam, is in the circuit city region located within Guwahati and is the ...
. In 1927, he won the Wrangler R. P. Paranjpe Mathematical Prize for an original piece of work in mathematics. He attended the
University of Mumbai The University of Mumbai is a collegiate, state-owned, public research university in Mumbai. The University of Mumbai is one of the largest universities in the world. , the university had 711 affiliated colleges. Ratan Tata is the appointed h ...
, receiving his bachelor's degree in 1929. Having never received any formal postgraduate training, for his entire career (1930–1962) he was a schoolteacher at the government junior school in Devlali Maharashtra, India. Cycling from place to place he also tutored private students with unconventional methods, cheerfully sitting by a river and "thinking of theorems". He published extensively, writing about such topics as
recurring decimal A repeating decimal or recurring decimal is decimal representation of a number whose digits are periodic (repeating its values at regular intervals) and the infinitely repeated portion is not zero. It can be shown that a number is rational if a ...
s, magic squares, and integers with special properties. He is also known as "Ganitanand".


Discoveries

Working largely alone, Kaprekar discovered a number of results in number theory and described various properties of numbers. In addition to the
Kaprekar's constant In number theory, Kaprekar's routine is an iterative algorithm that, with each iteration, takes a natural number in a given number base, creates two new numbers by sorting the digits of its number by descending and ascending order, and subtracts th ...
and the
Kaprekar number In mathematics, a natural number in a given number base is a p-Kaprekar number if the representation of its square in that base can be split into two parts, where the second part has p digits, that add up to the original number. The numbers are n ...
s which were named after him, he also described
self number In number theory, a self number or Devlali number in a given number base b is a natural number that cannot be written as the sum of any other natural number n and the individual digits of n. 20 is a self number (in base 10), because no such combina ...
s or ''Devlali numbers'', the harshad numbers and
Demlo number In recreational mathematics, a repunit is a number like 11, 111, or 1111 that contains only the digit 1 — a more specific type of repdigit. The term stands for repeated unit and was coined in 1966 by Albert H. Beiler in his book ''Recreat ...
s. He also constructed certain types of magic squares related to the Copernicus magic square. Initially his ideas were not taken seriously by Indian mathematicians, and his results were published largely in low-level mathematics journals or privately published, but international fame arrived when
Martin Gardner Martin Gardner (October 21, 1914May 22, 2010) was an American popular mathematics and popular science writer with interests also encompassing scientific skepticism, micromagic, philosophy, religion, and literatureespecially the writings of Lew ...
wrote about Kaprekar in his March 1975 column of ''Mathematical Games'' for ''
Scientific American ''Scientific American'', informally abbreviated ''SciAm'' or sometimes ''SA'', is an American popular science magazine. Many famous scientists, including Albert Einstein and Nikola Tesla, have contributed articles to it. In print since 1845, it ...
''. Today his name is well-known and many other mathematicians have pursued the study of the properties he discovered.


Kaprekar's constant

In 1949, Kaprekar discovered an interesting property of the number 6174, which was subsequently named the Kaprekar constant. He showed that 6174 is reached in the end as one repeatedly subtracts the highest and lowest numbers that can be constructed from a set of four digits that are not all identical. Thus, starting with 1234, we have: :4321 − 1234 = 3087, then :8730 − 0378 = 8352, and :8532 − 2358 = 6174. Repeating from this point onward leaves the same number (7641 − 1467 = 6174). In general, when the operation converges it does so in at most seven iterations. A similar constant for 3 digits is 495. However, in base 10 a single such constant only exists for numbers of 3 or 4 digits; for other digit lengths or bases other than 10, the
Kaprekar's routine In number theory, Kaprekar's routine is an iterative algorithm that, with each iteration, takes a natural number in a given number base, creates two new numbers by sorting the digits of its number by descending and ascending order, and subtracts th ...
algorithm described above may in general terminate in multiple different constants or repeated cycles, depending on the starting value. Python Code to test kaprekar's constant: KAPREKAR_CONSTANT = 6174 n = 1234 print(f'n = ') while True: digits = [] for i in range(4): digits.append(n % 10) n //= 10 digits.sort(reverse=True) large = 0 for d in digits: large = large * 10 + d digits.sort() small = 0 for d in digits: small = small * 10 + d n = large - small print(f' - = ') if n

KAPREKAR_CONSTANT: break


Kaprekar number

Another class of numbers Kaprekar described are Kaprekar numbers. A Kaprekar number is a positive integer with the property that if it is squared, then its representation can be partitioned into two positive integer parts whose sum is equal to the original number (e.g. 45, since 452=2025, and 20+25=45, also 9, 55, 99 etc.) However, note the restriction that the two numbers are positive; for example, 100 is not a Kaprekar number even though 1002=10000, and 100+00 = 100. This operation, of taking the rightmost digits of a square, and adding it to the integer formed by the leftmost digits, is known as the Kaprekar operation. Some examples of Kaprekar numbers in base 10, besides the numbers 9, 99, 999, …, are :


Devlali or self number

In 1963, Kaprekar defined the property which has come to be known as self numbers,Kaprekar, D. R. The Mathematics of New Self-Numbers Devalali (1963)nn: 19–20 as the integers that cannot be generated by taking some other number and adding its own digits to it. For example, 21 is not a self number, since it can be generated from 15: 15 + 1 + 5 = 21. But 20 is a self number, since it cannot be generated from any other integer. He also gave a test for verifying this property in any number. These are sometimes referred to as Devlali numbers (after the town where he lived); though this appears to have been his preferred designation, the term "self number" is more widespread. Sometimes these are also designated ''Colombian number''s after a later designation.


Harshad number

Kaprekar also described the harshad numbers which he named harshad, meaning "giving joy" (
Sanskrit Sanskrit (; attributively , ; nominally , , ) is a classical language belonging to the Indo-Aryan branch of the Indo-European languages. It arose in South Asia after its predecessor languages had diffused there from the northwest in the late ...
''harsha'', joy ''+da'' taddhita pratyaya, causative); these are defined by the property that they are divisible by the sum of their digits. Thus 12, which is divisible by 1 + 2 = 3, is a harshad number. These were later also called ''Niven numbers'' after 1977 lecture on these by the Canadian mathematician Ivan M. Niven. Numbers which are harshad in all bases (only 1, 2, 4, and 6) are called ''all-harshad numbers''. Much work has been done on harshad numbers, and their distribution, frequency, etc. are a matter of considerable interest in number theory today.


Demlo number

Kaprekar also studied the
Demlo number In recreational mathematics, a repunit is a number like 11, 111, or 1111 that contains only the digit 1 — a more specific type of repdigit. The term stands for repeated unit and was coined in 1966 by Albert H. Beiler in his book ''Recreat ...
s, named after a train station Demlo (now called Dombivili) 30 miles from Bombay on the then G. I. P. Railway where he had the idea of studying them. The best known of these are the Wonderful Demlo numbers 1, 121, 12321, 1234321, …, which are the squares of the
repunit In recreational mathematics, a repunit is a number like 11, 111, or 1111 that contains only the digit 1 — a more specific type of repdigit. The term stands for repeated unit and was coined in 1966 by Albert H. Beiler in his book ''Recreat ...
s 1, 11, 111,1111, ….


See also

*
Prahalad Chunnilal Vaidya Prahalad Chunnilal Vaidya (P.C.Vaidya; 23 May 1918 – 12 March 2010), was an Indian physicist and mathematician, renowned for his instrumental work in the general theory of relativity. Apart from his scientific career, he was also an education ...


References


External links


"Mysterious number 6174"

Numberphile (Dec 5, 2011) 6174
a YouTube video by
Numberphile ''Numberphile'' is an educational YouTube channel featuring videos that explore topics from a variety of fields of mathematics. In the early days of the channel, each video focused on a specific number, but the channel has since expanded its ...
{{DEFAULTSORT:Kaprekar, D. R. 1905 births 1986 deaths 20th-century Indian mathematicians Indian number theorists Recreational mathematicians Magic squares People from Thane district Scientists from Maharashtra