octal

Share on Facebook Share on Twitter Email
(ŏk'təl) pronunciation
adj.
Of, relating to, or based on the number eight: an octal number system.


With divisor/multiplier steps of 8 = 23, in contrast with the steps of 2 for binary, 10 for decimal, 16 for hexadecimal, etc.

A numbering system that uses eight digits. It is used as a shorthand method for representing binary characters that use six-bits. Each three bits (half a character) is converted into a single octal digit. Okta is Greek for 8.

      Decimal  Binary   Octal
      0        000      0
      1        001      1
      2        010      2
      3        011      3
      4        100      4
      5        101      5
      6        110      6
      7        111      7

Download Computer Desktop Encyclopedia to your PC, iPhone or Android.

Random House Word Menu:

categories related to 'octal'

Top
Random House Word Menu by Stephen Glazier
For a list of words related to octal, see:
  • General Technology - octal: (adj) of or pertaining to an eight-base number system, sometimes used to encode data, employing numerals 0 through 7


Numeral systems by culture
Hindu-Arabic numerals
Western Arabic (Hindu numerals)
Eastern Arabic
Indian family
Tamil
Burmese
Khmer
Lao
Mongolian
Thai
East Asian numerals
Chinese
Japanese
Suzhou
Korean
Vietnamese
Counting rods
Alphabetic numerals
Abjad
Armenian
Āryabhaṭa
Cyrillic
Ge'ez
Greek
Georgian
Hebrew
other historical systems
Aegean
Attic
Babylonian
Brahmi
Egyptian
Etruscan
Inuit
Kharosthi
Mayan
Quipu
Roman
Positional systems by base
Decimal (10)
2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 20, 24, 27, 30, 36, 60, 64
Balanced ternary
Non-positional system
Unary numeral system (Base 1)
List of numeral systems

The octal numeral system, or oct for short, is the base-8 number system, and uses the digits 0 to 7. Numerals can be made from binary numerals by grouping consecutive binary digits into groups of three (starting from the right). For example, the binary representation for decimal 74 is 1001010, which can be grouped into (00)1 001 010 – so the octal representation is 112.

In decimal systems each decimal place is a base of 10. For example:

\mathbf{74}_{10} = \mathbf{7} \times 10^1 + \mathbf{4} \times  10^0

In octal numerals each place is a power with base 8. For example:

\mathbf{112}_8 = \mathbf{1} \times  8^2 + \mathbf{1} \times  8^1 + \mathbf{2} \times  8^0

By performing the calculation above in the familiar decimal system we see why 112 in octal is equal to 64+8+2 = 74 in decimal.

Octal is sometimes used in computing instead of hexadecimal.

Contents

Usage

By Native Americans

The Yuki language in California and the Pamean languages[1] in Mexico have octal systems because the speakers count using the spaces between their fingers rather than the fingers themselves.[2]

By Europeans

  • In 1716 King Charles XII of Sweden asked Emanuel Swedenborg to elaborate a number system based on 64 instead of 10. Swedenborg however argued that for people with less intelligence than the king such a big base would be too difficult and instead proposed 8 as the base. In 1718 Swedenborg wrote (but did not publish) a manuscript: "En ny räknekonst som omväxlas vid talet 8 istället för det vanliga vid talet 10" ("A new arithmetic (or art of counting) which changes at the Number 8 instead of the usual at the Number 10"). The numbers 1-7 are there denoted by the consonants l, s, n, m, t, f, u (v) and zero by the vowel o. Thus 8 = "lo", 16 = "so", 24 = "no", 64 = "loo", 512 = "looo" etc. Numbers with consecutive consonants are pronounced with vowel sounds between in accordance with a special rule.[3]
  • Writing under the pseudonym "Hirossa Ap-Iccim" in The Gentleman's Magazine, (London) July 1745, Hugh Jones proposed an octal system for British coins, weights and measures. "Whereas reason and convenience indicate to us an uniform standard for all quantities; which I shall call the Georigan standard; and that is only to divide every integer in each species into eight equal parts, and every part again into 8 real or imaginary particles, as far as is necessary. For tho' all nations count universally by tens (originally occasioned by the number of digits on both hands) yet 8 is a far more complete and commodious number; since it is divisible into halves, quarters, and half quarters (or units) without a fraction, of which subdivision ten is uncapable...." In a later treatise on Octave computation (1753) Jones concluded: "Arithmetic by Octaves seems most agreeable to the Nature of Things, and therefore may be called Natural Arithmetic in Opposition to that now in Use, by Decades; which may be esteemed Artificial Arithmetic."[4]
  • In 1801, James Anderson criticized the French for basing the Metric system on decimal arithmetic. He suggested base 8 for which he coined the term octal. His work was intended as recreational mathematics, but he suggested a purely octal system of weights and measures and observed that the existing system of English units was already, to a remarkable extent, an octal system.[5]
  • In the mid 19th century, Alfred B. Taylor concluded that "Our octonary [base 8] radix is, therefore, beyond all comparison the "best possible one" for an arithmetical system." The proposal included a graphical notation for the digits and new names for the numbers, suggesting that we should count "un, du, the, fo, pa, se, ki, unty, unty-un, unty-du" and so on, with successive multiples of eight named "unty, duty, thety, foty, paty, sety, kity and under." So, for example, the number 65 would be spoken in octonary as under-un.[6][7] Taylor also republished some of Swedenborg's work on octonary as an appendix to the above-cited publications.

In computers

Octal is sometimes used in computing instead of hexadecimal, perhaps most often in modern times in conjunction with file permissions under Unix systems (see chmod). It has the advantage of not requiring any extra symbols as digits (the hexadecimal system is base-16 and therefore needs six additional symbols beyond 0–9). It is also used for digital displays.

At the time when octal originally became widely used in computing, systems such as the PDP-8, ICL 1900 and IBM mainframes employed 12-bit, 24-bit or 36-bit words. Octal was an ideal abbreviation of binary for these machines because eight (or twelve) digits could concisely display an entire machine word (each octal digit covering three binary digits). It also cut costs by allowing Nixie tubes, seven-segment displays, and calculators to be used for the operator consoles, where binary displays were too complex to use, decimal displays needed complex hardware to convert radices, and hexadecimal displays needed to display more numerals.

All modern computing platforms, however, use 16-, 32-, or 64-bit words, further divided into eight-bit bytes. On such systems three octal digits per byte would be required, with the most significant octal digit representing two binary digits (plus one bit of the next significant byte, if any). Octal representation of a 16-bit word requires 6 digits, but the most significant octal digit represents (quite inelegantly) only one bit (0 or 1). This representation offers no way to easily read the most significant byte, because it's smeared over four octal digits. Therefore, hexadecimal is more commonly used in programming languages today, since two hexadecimal digits exactly specify one byte. Some platforms with a power-of-two word size still have instruction subwords that are more easily understood if displayed in octal; this includes the PDP-11 and Motorola 68000 family. The modern-day ubiquitous x86 architecture belongs to this category as well, but octal is rarely used on this platform.

In programming languages, octal literals are typically identified with a variety of prefixes, including the digit 0, the letters o or q, or the digit–letter combination 0o. For example, the literal 73 (base 8) might be represented as 073, o73, q73, or 0o73 in various languages. Newer languages have been abandoning the prefix 0, as decimal numbers are often represented with leading zeroes. The prefix q was introduced to avoid the prefix o being mistaken for a zero, while the prefix 0o was introduced to avoid starting a numerical literal with an alphabetic character (like o or q), since these might cause the literal to be confused with a variable name. The prefix 0o also follows the model set by the prefix 0x used for hexadecimal literals in the C language.[8][9][10]

Octal numbers that are used in some programming languages (C, Perl, PostScript…) for textual/graphical representations of byte strings when some byte values (unrepresented in a code page, non-graphical, having special meaning in current context or otherwise undesired) have to be to escaped as \nnn. Octal representation of non-ASCII bytes may be particularly handy with UTF-8, where any start byte has octal value \3nn and any continuation byte has octal value \2nn.

Conversion between bases

Decimal to octal conversion

Method of successive division by 8

To convert integer decimals to octal, divide the original number by the largest possible power of 8 and successively divide the remainders by successively smaller powers of 8 until the power is 1. The octal representation is formed by the quotients, written in the order generated by the algorithm.

For example, to convert 12510 to octal:

125 / 82 = 1
125 − 82 × 1 = 61
61 / 81 = 7
61 − 81 × 7 = 5

Therefore, 12510 = 1758.

Another example:

900 / 83 = 1
900 − 83 × 1 = 388
388 / 82 = 6
388 − 82 × 6 = 4
4 / 81 = 0
4 − 81 × 0 = 4
4 / 80 = 4

Therefore, 90010 = 16048.

Method of successive multiplication by 8

To convert a decimal fraction to octal, multiply by 8; the integer part of the result is the first digit of the octal fraction. Repeat the process with the fractional part of the result, until it is null or within acceptable error bounds.

Example: Convert 0.1640625 to octal:

0.1640625 × 8 = 1.3125 = 1 + 0.3125
0.3125 × 8 = 2.5 = 2 + 0.5
0.5 × 8 = 4.0 = 4 + 0

Therefore, 0.164062510 = 0.1248.

These two methods can be combined to handle decimal numbers with both integer and fractional parts, using the first on the integer part and the second on the fractional part.

Octal to decimal conversion

To convert a number k to decimal, use the formula that defines its base-8 representation:

k = \sum_{i=0}^n \left( a_i\times 8^i \right)

In this formula, ai is an individual octal digit being converted, where i is the position of the digit (counting from 0 for the right-most digit).

Example: Convert 7648 to decimal:

7648 = 7 × 82 + 6 × 81 + 4 × 80 = 448 + 48 + 4 = 50010

For double-digit octal numbers this method amounts to multiplying the lead digit by 8 and adding the second digit to get the total.

Example: 658 = 6 × 8 + 5 = 5310

Octal to binary conversion

To convert octal to binary, replace each octal digit by its binary representation.

Example: Convert 518 to binary:

58 = 1012
18 = 0012

Therefore, 518 = 101 0012.

Binary to octal conversion

The process is the reverse of the previous algorithm. The binary digits are grouped by threes, starting from the least significant bit and proceeding to the left and to the right. Add leading 0s (or trailing zeros to the right of decimal point) to fill out the last group of three if necessary. Then replace each trio with the equivalent octal digit.

For instance, convert binary 1010111100 to octal:

001 010 111 100
1 2 7 4

Therefore, 10101111002 = 12748.

Convert binary 11100.01001 to octal:

011 100  .  010 010
3 4  .  2 2

Therefore, 11100.010012 = 34.228.

Octal to hexadecimal conversion

The conversion is made in two steps using binary as an intermediate base. Octal is converted to binary and then binary to hexadecimal, grouping digits by fours, which correspond each to a hexadecimal digit.

For instance, convert octal 1057 to hexadecimal:

To binary:
1 0 5 7
001 000 101 111
then to hexadecimal:
0010 0010 1111
2 2 F

Therefore, 10578 = 22F16.

Hexadecimal to octal conversion

Hexadecimal to octal conversion proceeds by first converting the hexadecimal digits to 4-bit binary values, then regrouping the binary bits into 3-bit octal digits.

For example, to convert 3FA516:

To binary:
3 F A 5
0011 1111 1010 0101
then to octal:
0 011 111 110 100 101
0 3 7 6 4 5

Therefore, 3FA516 = 376458.

See also

References

  1. ^ Avelino, Heriberto (2006). "The typology of Pame number systems and the limits of Mesoamerica as a linguistic area". Linguistic Typology 10 (1): 41–60. doi:10.1515/LINGTY.2006.002. http://linguistics.berkeley.edu/~avelino/Avelino_2006.pdf 
  2. ^ Marcia Ascher. "Ethnomathematics: A Multicultural View of Mathematical Ideas". The College Mathematics Journal. http://links.jstor.org/sici?sici=0746-8342%28199209%2923%3A4%3C353%3AEAMVOM%3E2.0.CO%3B2-%23&size=LARGE. Retrieved 2007-04-13. 
  3. ^ Donald Knuth, The Art of Computer Programming
  4. ^ See H.R. Phalen, "Hugh Jones and Octave Computation," The American Mathematical Monthly 56 (August–September 1949): 461-65.
  5. ^ James Anderson, On Octal Arithmetic [title appears only in page headers], Recreations in Agriculture, Natural-History, Arts, and Miscellaneous Literature, Vol. IV, No. 6 (Feb. 1801), T. Bensley, London; pages 437-448.
  6. ^ A.B. Taylor, Report on Weights and Measures, Pharmaceutical Association, 8th Annual Session, Boston, Sept. 15, 1859. See pages and 48 and 53.
  7. ^ Alfred B. Taylor, Octonary numeration and its application to a system of weights and measures, Proc. Amer. Phil. Soc. Vol XXIV, Philadelphia, 1887; pages 296-366. See pages 327 and 330.
  8. ^ ECMAScript 5th Edition: http://www.ecma-international.org/publications/files/drafts/tc39-2009-025.pdf
  9. ^ Perl 6: http://svn.pugscode.org/pugs/docs/Perl6/Spec/S02-bits.pod
  10. ^ Python 3: http://docs.python.org/3.1/reference/lexical_analysis.html#literals

External links


Top

Dansk (Danish)
adj. - tælle med otte ad gangen
n. - talsystem baseret på otte tal

Français (French)
adj. - octal, en base huit
n. - (Comput, Math) système octal

Deutsch (German)
adj. - Acht(er)...
n. - Achtersystem, Achternotierung

Ελληνική (Greek)
adj. - οκταδικός
n. - οκταδικό σύστημα

Español (Spanish)
adj. - octal
n. - octal

Svenska (Swedish)
adj. - tillhörande ett talsystem med åtta som bas
n. - oktal

中文(简体)(Chinese (Simplified))
八进制的, 八行诗

中文(繁體)(Chinese (Traditional))
adj. - 八進制的
n. - 八行詩

한국어 (Korean)
adj. - 8진법의, 8극의
n. - 8극, 8진법

العربيه (Arabic)
‏(صفه) ثماني (الاسم) عدد أسه الرقم ثمانيه‏

עברית (Hebrew)
adj. - ‮מחושב כל שמונה, מחולק לשמונה‬
n. - ‮שמיניה, בית-שיר בן שמונה שורות‬


Best of Web:

octal

Top
Some good "octal" pages on the web:

Math
mathworld.wolfram.com

Post a question - any question - to the WikiAnswers community:

Copyrights:

Mentioned in

binary coded octal system (computer science)
numeric coding (computer science)
bantam tube (electronics)
binary conversion (computer science)
octal debugger (computer science)