Skip to main content

Naming Polygons

What do you call an 11-sided polygon? A 14-sided polygon? Can you give me a list of names of polygons?This answer represents excerpts from contributions made by Prof. John Conway of Princeton University to the geometry.college and geometry.pre-college newsgroups. For an etymological discussion in the Dr. Math archive, see "Naming Polygons."
When naming polygons, for the "numerical" part of the name, we use the Greek prefixes: mono, di, tri, tetra, penta, hexa, hepta, octa, ennea,
1 2 3 4 5 6 7 8 9
deca, hendeca, dodeca, triskaideca, tetrakaideca, ..., enneakaideca,
10 11 12 13 14 19

icosa, icosikaihena, icosikaidi, icosikaitri, ..., icosikaiennea,
20 21 22 23 29
triaconta, triacontakaihena, ..., triacontakaiennea, tetraconta, ...,
30 31 39 40

pentaconta, hexaconta, heptaconta, octaconta, enneaconta, hecta
50 60 70 80 90 100
Prof. Conway writes:
Antreas Hatzipolakis and I worked out a complete system up to the millions from which this is taken, and which has also been "vetted" by several other scholars. The most important of the reasons which make me prefer the "kai" forms is that they permit these prefixes to be unambiguously parsed even when concatenated, as they are in Kepler's names for certain polyhedra; for example, the icosidodecahedron or (20,12)-hedron, so called because it has 20 faces of one type and 12 of another. Kepler said "this particular triacontakaidihedron I call the icosidodecahedron", a remark showing that he also preferred the kai forms.
John Conway
Names of Polygons 1 monogon (Monogon and digon can only
2 digon be used in rather special
3 trigon, triangle circumstances. Trigon and
4 tetragon, quadrilateral tetragon are alternatives to
5 pentagon triangle and quadrilateral;
6 hexagon the adjectival forms trigonal
7 heptagon and tetragonal are more common.)
8 octagon
9 enneagon
10 decagon
11 hendecagon
12 dodecagon
13 triskaidecagon
14 tetrakaidecagon, tetradecagon
15 pentakaidecagon, pentadecagon
16 hexakaidecagon, hexadecagon
17 heptakaidecagon
18 octakaidecagon
19 enneakaidecagon
20 icosagon
21 icosikaihenagon, icosihenagon
22 icosikaidigon
23 icosikaitrigon
24 icosikaitetragon
25 icosikaipentagon
26 icosikaihexagon
27 icosikaiheptagon
28 icosikaioctagon
29 icosikaienneagon
30 triacontagon
31 triacontakaihenagon
32 triacontakaidigon
33 triacontakaitrigon
34 triacontakaitetragon
35 triacontakaipentagon
36 triacontakaihexagon
37 triacontakaiheptagon
38 triacontakaioctagon
39 triacontakaienneagon
40 tetracontagon
41 tetracontakaihenagon
42 tetracontakaidigon
43 tetracontakaitrigon
44 tetracontakaitetragon
45 tetracontakaipentagon
46 tetracontakaihexagon
47 tetracontakaiheptagon
48 tetracontakaioctagon
49 tetracontakaienneagon
50 pentacontagon ...
60 hexacontagon ...
70 heptacontagon ...
80 octacontagon ...
90 enneacontagon ...
100 hectogon, hecatontagon
1000 chiliagon
10000 myriagon
The "gon" has an interesting etymology: it is ultimately derived from the Greek word "gonu" for "knee", which they transferred to "angle". This word goes straight back to the Indo-European, and is essentially the same in lots of languages: gonu (Greek)
genu (Latin)
k nee (English)

French is similar to Latin here, and German to English (except that the "K" is still pronounced.

Comments

Popular posts from this blog

Comma separated list of values of single Database table field

Many times you need to create a comma seperated list of values in a table. Here is a line of T-SQL solution to get comma separated list of values of single field of a database table. DECLARE @commaSeparatedVal AS VARCHAR(MAX); SELECT @commaSeparatedVal = ISNULL(@commaSeparatedVal +',','') + CONVERT(VARCHAR,[SKU]) FROM PRODUCT PRINT @commaSeparatedVal

Why SharePoint 2007?

It is rare for a technology product to attract as much attention as SharePoint has in recent years. The industry has historically paid little attention to new product suites, particularly those related to web design. SharePoint products and technologies, however, have managed to excite and rejuvenate industry followers, causing them to take notice of the ease of use, scalability, flexibility, and powerful document management capabilities within the product. A number of organizational needs have spurred the adoption of SharePoint technologies. Some of the most commonly mentioned requirements include the following: A need for better document management than the file system can offer —This includes document versioning, check-out and check-in features, adding metadata to documents, and better control of document access (by using groups and granular security). The high-level need is simply to make it easier for users to find the latest version of the document or documents they need to do th

Creating Custom SharePoint Timer Jobs

In previous versions of SharePoint (or other platforms), if you had some task you wanted to perform on a scheduled basis, you'd have to either create a console EXE and schedule it to run via Windows Task Scheduler (ala AT.EXE) or create a Windows Service that went to sleep for a period of time. In order to install (and maintain) these tasks, you had to have console access to your production SharePoint (or other app) servers... something IT or admins wouldn't easily hand out. Addressing this issue, Microsoft has added something called timer jobs to Microsoft Office SharePoint Server (MOSS) 2007. Microsoft uses timer jobs to do things like dead web cleanup (purging unused sites from site collections) among others. To see what other timer jobs are out there, from Central Administration , click Operations and then Timer Job Definitions . Not only does Microsoft use timer jobs in MOSS, but you can create your own custom timer jobs to do your own scheduled tasks. What's nice a