Have to deal with several conversions between Octal and Quinary numeral systems? Then this site is made for you! Use our super handy online tool to convert your data.Welcome!

Octal to Quinary converter

How to convert Octal to Quinary

The octal numeral system, or oct for short, is the base-8 number system, and uses the digits 0 to 7. Octal is sometimes used in computing instead of hexadecimal, perhaps most often in modern times in conjunction with file permissions under Unix systems. It has the advantage of not requiring any extra symbols as digits. It is also used for digital displays.

Quinary is a numeral system with five as the base. A possible origination of a quinary system is that there are five fingers on either hand. In the quinary place system, five numerals, from 0 to 4, are used to represent any real number. According to this method, five is written as 10, twenty-five is written as 100 and sixty is written as 220.

Formula

Follow these steps to convert a octal number into quinary form:

The simplest way is to convert the octal number into decimal, then the decimal into quinary form.
  1. Write the powers of 8 (1, 8, 64, 512, 4096, and so on) beside the octal digits from bottom to top.
  2. Multiply each digit by it's power.
  3. Add up the answers. This is the decimal solution.
  4. Divide the decimal number by 5.
  5. Get the integer quotient for the next iteration (if the number will not divide equally by 5, then round down the result to the nearest whole number).
  6. Keep a note of the remainder, it should be between 0 and 4.
  7. Repeat the steps from step 4. until the quotient is equal to 0.
  8. Write out all the remainders, from bottom to top. This is the quinary solution.
For example if the given octal number is 4032:
DigitPowerMultiplication
45122048
0640
3824
212
Then the decimal solution (2048 + 24 + 2) is: 2074
DivisionQuotientRemainder
2074 / 54144
414 / 5824
82 / 5162
16 / 531
3 / 503
Finally the quinary solution is: 31244
Switch to desktop version