| Regular Number |
Article Index for Regular |
Website Links For Regular |
Information AboutRegular Number |
| CATEGORIES ABOUT REGULAR NUMBER | |
| babylonian mathematics | |
| integer sequences | |
| functional programming | |
| mathematics of music | |
|
In the study of Babylonian Mathematics , a regular number or '''regular sexagesimal number''' is a Whole Number which divides a power of 60. In Number Theory , these numbers are called '''5-smooth''', because they can be characterized as having only 2, 3, or 5 as Prime Factor s. They are a specific case of what are called ''k''- Smooth Number s, those sets of numbers that have no Prime Factor s greater than ''k''. In Music Theory , regular numbers occur in the ratios of tones in Just Intonation , also called 5-limit Tuning for this reason. In Computer Science , regular numbers are often called Hamming numbers, after Richard Hamming , who first considered computer Algorithm s for generating these numbers in order.However, see Gingerich (1965) for an early description of computer code that generates these numbers out of order and then sorts them. NUMBER THEORY Formally, a regular number is an Integer of the form 2''i''·3''j''·5''k'', for nonnegative integers ''i'', ''j'', and ''k''. Such a number is a divisor of . The regular numbers are also called 5- Smooth , indicating that their greatest Prime Factor is at most 5. The first few regular numbers are :1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, 16, 18, 20, 24, 25, 27, 30, 32, 36, 40, 45, 48, 50, 54, 60, ... . Several other sequences at OEIS have definitions involving 5-smooth numbers. OEIS search for sequences involving 5-smoothness . Although the regular numbers appear dense within the range from 1 to 60, they are quite sparse among the larger integers. A regular number ''n'' = 2''i''·3''j''·5''k'' is less than or equal to ''N'' if and only if the point (''i'',''j'',''k'') belongs to the Tetrahedron bounded by the coordinate planes and the plane , so the number of regular numbers that are at most ''N'' can be estimated as the Volume of this tetrahedron, A more precise version of this formula, accurate to within of the exact cardinality, appears on OEIS attributed to Benoit Cloitre. BABYLONIAN MATHEMATICS In the Babylonian Sexagesimal notation, the Reciprocal of a regular number has a finite representation, thus being easy to divide by. Specifically, if ''n'' divides 60k, then the sexagesimal representation of 1/''n'' is just that for 60k/''n'', shifted by some number of places. For instance, suppose we wish to divide by the regular number 54 = 2133. 54 is a divisor of 603, and 603/54 = 4000, so dividing by 54 in sexagesimal can be accomplished by multiplying by 4000 and shifting three places. In sexagesimal 4000 = 1×3600 + 6×60 + 40×1, or (as listed by Joyce) 1:6:40. Thus, 1/54, in sexagesimal, is 1/60 + 6/602 + 40/603, also denoted 1:6:40 as Babylonian notational conventions did not specify the power of the starting digit. Conversely 1/4000 = 54/603, so division by 1:6:40 = 4000 can be accomplished by instead multiplying by 54 and shifting three sexagesimal places. The Babylonians used tables of reciprocals of regular numbers, some of which still survive (Sachs, 1947). These tables existed relatively unchanged throughout Babylonian times (Aaboe, 1965). Although the primary reason for preferring regular numbers to other numbers involves the finiteness of their reciprocals, some Babylonian calculations other than reciprocals also involved regular numbers. For instance, tables of regular squares have been found (Aaboe, 1965) and the broken Cuneiform Tablet Plimpton 322 has been interpreted by Neugebauer as listing Pythagorean Triple s generated by ''p'', ''q'' both regular and less than 60.See Conway and Guy (1996) for a popular treatment of this interpretation. Plimpton 322 has other interpretations, for which see its article, but all involve regular numbers. MUSIC THEORY In in a single Octave of this scale have frequencies proportional to the numbers in the sequence 24, 27, 30, 32, 36, 40, 45, 48 of nearly-consecutive regular numbers. Thus, for an instrument with this tuning, all pitches are regular-number Harmonic s of a single Fundamental Frequency . This scale is called a 5- Limit tuning, meaning that the Interval between any two pitches can be described as a product 2i3j5k of powers of the prime numbers up to 5, or equivalently as a ratio of regular numbers. 5-limit musical scales other than the familiar diatonic scale of Western music have also been used, both in traditional musics of other cultures and in modern experimental music: Honing and Bod (2005) list 31 different 5-limit scales, drawn from a larger database of musical scales. Each of these 31 scales shares with diatonic just intonation the property that all intervals are ratios of regular numbers. Euler 's Tonnetz provides a convenient graphical representation of the pitches in any 5-limit tuning, by factoring out the Octave relationships (powers of two) so that the remaining values form a planar Grid . Some music theorists have stated more generally that regular numbers are fundamental to tonal music itself, and that pitch ratios based on primes larger than 5 cannot be Consonant .Asmussen (2001), for instance, states that "within any piece of tonal music" all intervals must be ratios of regular numbers, echoing similar statements by much earlier writers such as Habens (1889). In the modern music theory literature this assertion is often attributed to Longuet-Higgins (1962), who used a graphical arrangement closely related to the Tonnetz to organize 5-limit pitches. However the Equal Temperament of modern pianos is not a 5-limit tuning, and some modern composers have experimented with tunings based on primes larger than five. In connection with the application of regular numbers to music theory, it is of interest to find pairs of regular numbers that differ by one. There are exactly ten such pairs (''x'', ''x''+1)Halsey and Hewitt (1972) note that this follows from More General Results Of Størmer (1897), and provide a proof for this case; see also Silver (1971). and each such pair defines a Superparticular Ratio (''x'' + 1)/''x'' that is meaningful as a musical interval. These intervals are 2/1 (the Octave ), 3/2 (the Perfect Fifth ), 4/3 (the Perfect Fourth ), 5/4 (the Just Major Third ), 6/5 (the Just Minor Third ), 9/8 (the Just Major Tone ), 10/9 (the Just Minor Tone ), 16/15 (the Just Diatonic Semitone ), 25/24 (the Just Chromatic Semitone ), and 81/80 (the Syntonic Comma ). COMPUTATION OF REGULAR NUMBERS Algorithms for calculating the regular numbers in ascending order were popularized by Edsger Dijkstra . Dijkstra (1981) attributes to Hamming the problem of building the infinite ascending sequence of all 5-smooth numbers; this problem is now known as Hamming's problem, and the numbers so generated are also called the '''Hamming numbers'''. Dijkstra's ideas to compute these numbers are the following:
This algorithm is often used to demonstrate the power of a Lazy Functional Programming Language , because this algorithm can be implemented as described above, using a constant number of arithmetic operations per generated value, while a similarly efficient implementation for a strict functional or Imperative Programming Language is non-trivial.See, e.g., Hemmendinger (1988) or Yuen (1992). In the Python Programming Language , lazy functional code for generating regular numbers is used as one of the built-in tests for correctness of the language's implementation.Function m235 in test_generators.py . OTHER APPLICATIONS Heninger, Rains, and Sloane (2005) show that, when ''n'' is a regular number and is divisible by 8, the generating function of an ''n''-dimensional extremal even Unimodular Lattice is an ''n''th power of a polynomial. As with other classes of Smooth Number s, regular numbers are important as problem sizes in Fast Fourier Transform codes. For instance, the method of Temperton (1992) requires that the transform length be a regular number. Book VIII of Plato 's Republic involves an allegory of marriage centered around the highly regular number 604 = 12,960,000 and its divisors. Later scholars have invoked both Babylonian mathematics and music theory in an attempt to explain this passage.Barton (1908); McClain (1974). NOTES REFERENCES |
|
|