Question

In: Computer Science

Add in Octal

Add in Octal

Solutions

Expert Solution

In octal number system we have numbers from 0 to 7. A octal number is denoted by base 8. The addition of octal numbers is similar to addition of decimal numbers. But the only difference is, in decimal system we have numbers from 0 to 9, So while adding to numbers the sum can go upto 9. Where as in octal the sum of any two numbers can go only upto 8 and the remaining is considered as carry.

Let us understand this with an example.Consider two octal numbers 162 and 537 with bases 8 since we are dealing with octal numbers.

Method 1)

The addition is very similar to normal decimal addition. But after two numbers are added, the sum we get is decimal. So if the sum is greater than 8 we have to convert it into octal(base 8) by dividing the sum with 8. I have shown this process in step one.

Method 2 ) We can add octal numbers using octal additiont table.

Observe the above table. When you are adding two octal numbers, see the first number in the first row and second number in the first column. The number pointing that pair is the sum of those two numbers in octal. If the sum is in two digits, then first digit is sum and the second digit is carry.

Note : In the octal addition table you wont find numbers greater than 7. i.e 8,9. There will be only octal numbers in octal addition table. ( i.e 0,1,2,3,4,5,6,7) .

However I prefer Method 1 over method 2 since we do not carry this table with use every time nor we can draw one whenever we need it.

Hope this answer helps you.

Thank you :)


Related Solutions

Convert 7A216 to octal
Convert 7A216 to octal
Convert Octal A09sixteen
Convert Octal A09sixteen
Convert 9F.216 to octal
Convert 9F.216 to octal
Convert CC53 (hexidecimal) to the octal equivalent
Convert CC53 (hexidecimal) to the octal equivalent
How many zeros are there at the end of 2019! in octal notation ?
How many zeros are there at the end of 2019! in octal notation ?
Write an application that prints a table of the binary and octal equivalent of the decimal...
Write an application that prints a table of the binary and octal equivalent of the decimal numbers in the range 1 through 256. **Write in JAVA**
Design a transducer to convert a binary string into octal. For example the bit string 001101110...
Design a transducer to convert a binary string into octal. For example the bit string 001101110 should produce 156. Please complete the code to account for the 7 cases of 3 digit binary strings. //Function binaryToOctal takes a char array digits of length 3 //Pre: digits contains 3 binary digits. //Post: function returns the octal number equivalent to the 3 binary digits int binaryToOctal( char digits[], int 3){ int number; if(digits[0]=='0') if (digits[1]=='1') if (digits[2]=='0') return 2;//found "010" else return...
Any integer can be represented in binary, octal, decimal, and hexadecimal. What are the limits on...
Any integer can be represented in binary, octal, decimal, and hexadecimal. What are the limits on representing integers using unary or only having the 1 digit?
What is the unsigned hexadecimal equivalent of the following unsigned octal value? Do NOT include in...
What is the unsigned hexadecimal equivalent of the following unsigned octal value? Do NOT include in your answer ANY insignificant zeros. 107655.643 What is the binary equivalent (in signed-magnitude binary representation) of the following signed decimal value? Represent the integer part of the binary value in 8 bits. -116.6875
ARITHMETIC INSTRUCTIONS a) ADD with register/memory       ADD r [or] ADD M b) ADD immediate.      ...
ARITHMETIC INSTRUCTIONS a) ADD with register/memory       ADD r [or] ADD M b) ADD immediate.       ADI 8 bit data c) ADD with carry       ADC r [or] ADC M Exercise 1: Write Assembly Language Program to add any 3 numbers. Exercise 2: Write Assembly Language Program to add the value 05H with value stored in register C.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT