Live data from Hacker News

Egyptian Fractions (2006)

blog.plover.com

11–20 of 27 posts

Re: Egyptian Fractions (2006)

#13

We’ve grown used to a full-decimal system, but all kinds of weird stuff has existed in the past. Telugu (a language of southern India) has an interesting traditional numeric system: base ten for integers, and base four for fractions. U+0C78 "౸" TELUGU FRACTION DIGIT ZERO FOR ODD POWERS OF FOUR U+0C79 "౹" TELUGU FRACTION DIGIT ONE FOR ODD POWERS OF FOUR U+0C7A "౺" TELUGU FRACTION DIGIT TWO FOR ODD POWERS OF FOUR U+0C7…

> Telugu (a language of southern India) has an interesting traditional numeric system: base ten for integers, and base four for fractions.

If they do consistently that is not too bad. Compare that with imperial units, which, depending on the quantity and sometimes its magnitude, uses

- base 10 for integers and base 12 for fractions (lengths in feet and inches). Alternatively, base 10 for mikes, base 5,280 for feet’s in a mile, base 12 for inches in a foot.

- base 10 for integers and base 14 for fractions (weights in stone and pound). Alternatively, there’s a base 112 when measuring in long tons and stones or 1,016 when using long tons and pounds)

- base 10 for integers and base 4 for fractions (lengths in miles and quarter/half miles)

And that’s ignoring specific units for weighing gold, diamonds, etc.

Re: Egyptian Fractions (2006)

#14
post #5

We’ve grown used to a full-decimal system, but all kinds of weird stuff has existed in the past. Telugu (a language of southern India) has an interesting traditional numeric system: base ten for integers, and base four for fractions. U+0C78 "౸" TELUGU FRACTION DIGIT ZERO FOR ODD POWERS OF FOUR U+0C79 "౹" TELUGU FRACTION DIGIT ONE FOR ODD POWERS OF FOUR U+0C7A "౺" TELUGU FRACTION DIGIT TWO FOR ODD POWERS OF FOUR U+0C7…

> One tid-bit: NYSE used a similar decimal/quaternary system until early 2001. Prior to decimal pricing, us exchanges priced in eighths. An article [1] I found from a source I don't recognize says that there was briefly trading in sixteenths, but I guess I wasn't following the stock markets that closely then and I missed it. https://tontinecoffeehouse.com/2018/11/05/pricing-in-eighths...

Heh. I've seen the code in the codebase at my previous work that supported not only 1/8 and 1/16 price scales, but all the way up to 1/256... but I don't think I've ever seen a ticker with such price scale outside of unit tests.

Re: Egyptian Fractions (2006)

#15

We’ve grown used to a full-decimal system, but all kinds of weird stuff has existed in the past. Telugu (a language of southern India) has an interesting traditional numeric system: base ten for integers, and base four for fractions. U+0C78 "౸" TELUGU FRACTION DIGIT ZERO FOR ODD POWERS OF FOUR U+0C79 "౹" TELUGU FRACTION DIGIT ONE FOR ODD POWERS OF FOUR U+0C7A "౺" TELUGU FRACTION DIGIT TWO FOR ODD POWERS OF FOUR U+0C7…

Mind blown, I had no idea about this, thx for sharing

Re: Egyptian Fractions (2006)

#16

> so 6/7=[2,4,14,28]. Whether this is optimal or not is open to argument. It's longer than [2,3,42], but on the other hand the denominators are smaller. Also 6/7 = [2,7,7,14]

That's not an Egyptian fraction decomposition because there are 2 sevens.

Re: Egyptian Fractions (2006)

#17
I remember reading a hypothesis that Egyptian fractions were (are?) easier for innumerate people to reason about intuitively. That is, the division of N into M equal parts is easier if everyone gets the same pieces.

For example, if I divide three gold bars between seven people naively, some of them get bars that are 3/7 long and some get three small pieces of 1/7 the amount. If instead I give everyone a 1/4 bar, a 1/7 bar and a 1/28 bar, this is trivially obvious to be fair.

Re: Egyptian Fractions (2006)

#18
There’s several interesting papers on the subject of Egyptian mathematics in the book “From Five Finger to Infinity”.

“The volume of a truncated pyramid in ancient Egyptian papyri”

“Sources of information on Ancient Egyptian mathematics”

“Problems 1-6 of the Rhind mathematical papyrus” (Includes a description of the math for dividing bread rations)

https://archive.org/details/fromfivefingerst0000unse_s0p6

Re: Egyptian Fractions (2006)

#19

We’ve grown used to a full-decimal system, but all kinds of weird stuff has existed in the past. Telugu (a language of southern India) has an interesting traditional numeric system: base ten for integers, and base four for fractions. U+0C78 "౸" TELUGU FRACTION DIGIT ZERO FOR ODD POWERS OF FOUR U+0C79 "౹" TELUGU FRACTION DIGIT ONE FOR ODD POWERS OF FOUR U+0C7A "౺" TELUGU FRACTION DIGIT TWO FOR ODD POWERS OF FOUR U+0C7…

I actually made an app a few years ago that converts to the traditional Telugu style of decimals. Its interesting how the fractions in spoken Telugu are based around 1/4ths but few people know about the same applying for the written expression as you mentioned.

https://play.google.com/store/apps/details?id=com.telugu_num...

Re: Egyptian Fractions (2006)

#20
post #9

Very interesting! One thing I don't understand is: doesn't this assume that they could do the calculations to get the coefficients... Using decimal notation? How could they for example know that 18/20 = 9/10? This is straightforward in decimal, but in their notation... Not really? So I am not super convinced this is the actual algorithm they used. Or am I missing something?

they did count in tens, as most civilizations did, though not exactly in "decimal". so 2345 would be either written out as MMCCCXXXXIIIII (but replace the letters with hieroglyphs), or sometimes spelled out phonetically. they had words for twenty, thirty and so on. so obviously they can factor numbers and they know eighteen is 2*9 and twenty is 2*10 and that they can simplify when dividing 18 by 20, it's just that th…

I see! Thanks!
Post reply on HN