Octal to Ternary Table

This octal to ternary table will help you convert ternary numbers to binary.

Octal to Ternary Conversion Table

Octal Ternary
0 0
1 1
2 2
3 10
4 11
5 12
6 20
7 21
10 22
11 100
12 101
13 102
14 110
15 111
16 112
17 120
20 121
21 122
22 200
23 201
24 202
25 210
26 211
27 212
30 220
31 221
32 222
33 1000
34 1001
35 1002
36 1010
37 1011
40 1012
41 1020
42 1021
43 1022
44 1100
45 1101
46 1102
47 1110
50 1111
51 1112
52 1120
53 1121
54 1122
55 1200
56 1201
57 1202
60 1210
61 1211
62 1212
63 1220
64 1221
65 1222
66 2000
67 2001
70 2002
71 2010
72 2011
73 2012
74 2020
75 2021
76 2022
77 2100
Octal Ternary
100 2101
101 2102
102 2110
103 2111
104 2112
105 2120
106 2121
107 2122
110 2200
111 2201
112 2202
113 2210
114 2211
115 2212
116 2220
117 2221
120 2222
121 10000
122 10001
123 10002
124 10010
125 10011
126 10012
127 10020
130 10021
131 10022
132 10100
133 10101
134 10102
135 10110
136 10111
137 10112
140 10120
141 10121
142 10122
143 10200
144 10201
145 10202
146 10210
147 10211
150 10212
151 10220
152 10221
153 10222
154 11000
155 11001
156 11002
157 11010
160 11011
161 11012
162 11020
163 11021
164 11022
165 11100
166 11101
167 11102
170 11110
171 11111
172 11112
173 11120
174 11121
175 11122
176 11200
177 11201

What is octal?

Octal is a base-8 number system that has eight digits. Octal is used in older computer systems. Like the decimal system, where each digit represents a power of 10, the octal system (base-8) uses a power of 8. Octal’s advantage over binary is that it simplifies the representation of binary numbers making it easier to read and write large numbers. In more recent computer systems octal has been replaced by hexadecimal.

What does octal mean?

The definition of octal is a base-8 number system. The word “octal” is derived from the Latin word “octo,” which means “eight.”

How to convert octal to ternary?

To convert octal to ternary follow the steps below:

  1. Convert Octal to Decimal. To do this each digit in the octal number is multiplied by 8 raised to the power of its position.
  2. Convert Decimal to Ternary. To do this convert the decimal number obtained in the previous step to ternary. Divide the decimal number by 3 and keep track of the remainder. Once done, write the remainder in reverse order to give the ternary result. This will provide you with your final results.

How is octal similar to ternary

Both octal and ternary are alternative ways of representing numbers and are commonly used in computer systems. One of the key similarities between these alternative number systems us that thee use a limited set of digits: octal uses digits 0 to 7, while ternary uses digits 0 to 2.