answersLogoWhite

0


Best Answer

13 complement of 869 base 14 is 1874

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you find the 13's complement of a number?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Other Math

Find the 3's complement of the number 123?

321


The twos complement of 11001101 is?

00110011 is the 2's complement for this unsigned number and 10110011 if this is a signed number


What is the difference between the twos complement representation of a number and the twos complement of a number?

Let's consider any number, for example a byte of data represented as eight bits. The values that this byte can have are 00000000 through 11111111. The easiest way to find the one's complement is to change the zeros to one and the ones to zeros. The limits shown above can be represented as 00 through FF in hexadecimal. Let's consider a number AF which is within this boundary. The easiest way to find the one's complement when numbers are represented in hexadecimal form is to subtract the number from (in this case) FF. You will have more F's depending on the length of the number you want to find the one's complement for. If the number consists of three hex digits then you subtract from FFF, if four then from FFFF and so on. Thus with our example of AF, its one's complement would be FF AF --- 50 --- If you add 1 to this result you will get the two's complement of the number AF. Hence the two's complement of AF is (50 + 1) = 51 in hex. Observe that the process of finding one's complement or two's complement of a number are reversible and the original number is obtained. Thus the one's complement of the one's complement of a number gives the original number. The two's complement of the two's complement of a number gives the original number. Lets consider the hex number FF. Its one's complement is 00 and the two's complement is 01. So far we have talked about two's complement of a number (and in the process the one's complement as well). It is not possible to explain two's complement representation without understanding hardware implementation on a computing device, namely, a computer. Let's consider a byte machine where you can operate only on single bytes. Thus you can add two bytes, subtract a byte from another and so on. If two's complement representation of numbers is not implemented on a machine, then the byte can hold values hex 00 through hex FF which would be 0 through 255 in decimal. If 1 is added to a byte containing FF on this machine, the contents of the byte will change to 0 and the overflow bit in the computer will be set to TRUE. If however, two's complement representation of numbers is implemented on a machine the MSB (most significant bit) in the byte is the sign bit. If it is set then the number is negative and if it is not set then the number is positive. Since one bit of the 8 bits in our byte machine is taken up to represent the sign, only the remaining 7 bits can hold the magnitude of the number. The range of positive number in such a machine is hex 00 through hex 7F which is 0 through 127. If you add 1 to 7F then the contents of the byte would be hex 80. Notice that this is a negative number because the MSB is set. But how negative is this number. Since the machine implements two's complement representation of number on this machine, subtract (hex 80) from hex FF and add 1 to get hex 80 which equals 128. So the byte machine which implements two's complement can represent values from -128 through +127. In general if a machine implements 16, 32, or 64 bit architecture, the numbers that they can hold if they implement two's complement are between -(2*n) through and including +(2*n - 1) where n is 16, 32, or 64. I hope you have a better understanding of the difference between two's complement of a number and its representation (meaning implementation) on a computer.


What is the number 0111111111111111 in twos complement?

100000000000001


What is the complement of a 23 degree angle?

to find the complement, subtract 23 from 90. so the answer is 67 degrees

Related questions

Find the 3's complement of the number 123?

321


What is 13s LCM?

You need at least two numbers to find an LCM.


How do you find the complement and a supplement of a number?

To find the complementary angle, you subtract 90 by the first given complement angle. To find the supplementary angle, you subtract 180 by the first given supplement angle.


What is 1's complement of decimal 10?

The decimal complement of the number 1 is 8. You can find the complement of any digit by subtracting it from the largest single digit value in the base that you're working in.


How to subtract the hexadecimal number 1245 from D257 using two's complement addition method?

You take 1245 and form the two's complement of it then add it to D257. The two's complement of a number is defined as the 1's complement + 1. In signed two's complement arithmetic, the most significant bit is the "sign" bit. 1 indicates a negative number and 0 indicates a positive number. To find the magnitude of a negative number, take it's two's complement (ignoring carry bits). To get the two's complement of 1245, take the 1's complement of 1245 and add 1. In binary 1245 is 0001001001000101. The one's complement is 1110110110111010 (in hex that's EDBA) . Adding 1 to this will give you the two's complement. That is EDBA+0001 (ignore the carry if any), is EDBB. Now you add EDBB to D257 and ignore any carry, so that will be 1C012 (throw away the carry bit), C012. C012 is a negative number (the sign bit, the most significant bit, is 1). To find its magnitude, apply the two's complement algorithm above, and you'll find it to be -16365. Note: D257 is a negative number, and you're subracting a positive number, so you're going to end up with another negative number, i.e. adding the two's complement of a number is the same thing as subtracting the number. You can check your result by doing the math in decimal to see if it adds up. D257 in decimal = -11688 (you apply the two's complement to the number to find the magnitude, and the sign is negative because the sign bit, the most signficant bit is 1). 1245 in decimal = 4677. -11688-4677 = -16365 (which in hex signed two's complement is C012).


How many 13s are in 250?

There are 19 13s in 250. 250/13 =19.23


How do you find eighth complement?

first we should find 7th complement of a no then adding 1 in it..


What differencess between one's complement and two's complement?

one's complement is a bitwise complement of a binary number. (ie, 1 becomes 0 and 0 becomes 1) A one's complement isn't really used as much as a two's complement. A two's complement is used in a system where the larges bit in a binary number represents a negative number. so the bits for a 4 bit number would have the values of (from right to left): -8, 4, 2, 1 this allows you to represent any number from -8 (1000) to positive 7 (0111) To find the two's complement of a number, you take the one's complement, and then add 1. This significant because if a computer wants to subtract two numbers, it simply takes the two's complement of the second number and adds them together. More significance arises in digital circuits when constructing circuits using only nand/nor gates, as these perform slightly faster than and/or gates.


The twos complement of 11001101 is?

00110011 is the 2's complement for this unsigned number and 10110011 if this is a signed number


What is the plural of 13?

The plural for thirteen is thirteens (13s). As in "they are in their thirteens".


What are 1's and 2's complement numbers explain?

1's complement numbers are those numbers which are obtain after converting 1 to 0 and 0 to 1. for e.g. 110010 1's complement of this number is:001101 2's complement is obtain by adding 1 in 1's complement of number. for e.g. 2's complement of above number:001101 + 1 --------------- 001110


Find the complement of 60 degrees?

Since the sum of the two complement angles is 90⁰ , then the complement of a 60⁰ angle is a 30⁰ angle.