answersLogoWhite

0

is it possible to apply CSD to bough wooley multiplier

User Avatar

Wiki User

12y ago

Still curious? Ask our experts.

Chat with our AI personalities

CoachCoach
Success isn't just about winning—it's about vision, patience, and playing the long game.
Chat with Coach
BlakeBlake
As your older brother, I've been where you are—maybe not exactly, but close enough.
Chat with Blake
BeauBeau
You're doing better than you think!
Chat with Beau

Add your answer:

Earn +20 pts
Q: Canonical signed digit number representation of a binary number?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is the lowest value 6 bit number you can have in binary?

000000 is the lowest number in a 6 bit unsigned binary number (meaning the high order bit is not the sign bit). If it is a signed number then the lowest number would be represented by 100000 which is equivalent to -32 in decimal. Highest unsigned number in 6 bits is decimal 63. Highest signed number in 6 bits is decimal 31.


What is the larest binary number a nibble can hold?

A nibble is 4 bits, so the largest unsigned number is 1111, or 15. Also, the largest signed number is 0111, or 7.


What is the highest decimal number that can be represent by 8 binary bits?

The highest unsigned integer is 255; The highest signed integer is 127.


What numbers can be stored using 32-bit binary?

A 32 binary number is a number stored by a computer in 32 bits. it can represent: 1) An unsigned number in the range 0 to 4,294,967,295 2) A signed number in the range -2,147,483,648 to 2,147,483,647 3) A single precision IEEE floating point number with 1 sign bit, 8 exponent bits and 23 mantissa bits give an accuracy of about 7.2 decimal digits and a range of ± 10^-38 to 10^38


The binary number 11 would have a decimel equivelent of?

It depends. If you are using unsigned numbers, then the following assumption is made: 0b11 = 0b00000011, in which case the answer is; 2^1 + 2^0 = 2 + 1 = 3 If you are using signed numbers, than a binary number in the form 0b11 would be interpreted as negative because the leading bit is equal to 1. For signed numbers, the '1' in the leading bit is extended, thus: 0b11 = 0b11111111 In order to interpret this number, negate the number by flipping the bits and adding 1: 0b11111111 0b00000000 (bits flipped) 0b00000001 (added one) The positive representation of 0b11111111 is equal to 0b00000001, which is equal to 1, thus 0b11 = 0b11111111 = -1