Questions tagged [decimal]

11 questions
10
votes
2 answers

What is smallest addressable value in an octal number called?

In a binary number, the smallest addressable value is called as a bit. In a decimal number, the smallest addressable value is called as a digit. In an octal number, what is the smallest addressable value called as?
4
votes
4 answers

Confused with the effect number of decimals at the output of transducer

There is an ultrasonic device which measures and outputs both wind speed and direction and has a very long manual. But to keep it short and summarize, the accuracy and the resolution for the wind direction is given in the following table: As…
ty_1917
  • 949
  • 1
  • 5
  • 20
2
votes
1 answer

How do computers understand decimal numbers?

Computers calculate numbers in 0s and 1s. A bit can be either but not in between. So if you enter 3/2 into a calculator, it should return either 1 or 2, right? Wrong! It gives you 1.5, the correct answer. Even on problems with more complexity, the…
Nip Dip
  • 281
  • 2
  • 10
1
vote
0 answers

Can BCD and binary multipliers share circuitry?

Suppose you are implementing a BCD multiplier. Google says there are reasonably efficient known circuits for this. Say 8x8 -> 16 digits, and trying for a reasonable compromise between speed and number of logic gates. And suppose the CPU in which…
rwallace
  • 559
  • 3
  • 11
1
vote
0 answers

Decimal addition using a different BCD WEIGHTED CODING

The problem that I'm having trouble in understanding is how the addition of two decimal numbers such as 17 + 4 can be represented using the weighted BCD CODE, [7 4 -2 -1] and binary addition techniques. From what I have understood when doing BCD…
Clive E
  • 11
  • 1
1
vote
1 answer

VHDL initialize vector using readable integers not long binary string

So I am only starting out my VHDL journey. One thing I am finding a bit of a nuisance is the following format: signal sig_A : unsigned (3 downto 0) := "0101"; being that "0101" is just a string which somewhere down the line gets converted to bits.…
Edwin Fairchild
  • 871
  • 13
  • 22
0
votes
2 answers

The minimum (negative) value of the exponent in decimal

I am learning computer architecture and organization. I am stuck in the following question. Can someone please help me? For a floating-point representation with 35 bits in the mantissa and 15 bits in the exponent, the number of significant digits…
0
votes
5 answers

32 bit to 7 segment display (FPGA)

After some research, I think I have quite a problem on my hands. I have a project on an FPGA where I store a 32 bit binary value in a 32 bit memory register. The stored value ranges from 0 to 4000 in decimal. I would like to display this decimal…
David777
  • 1,548
  • 12
  • 29
0
votes
0 answers

How many logic gates does it take to implement base-100 addition?

I'm curious about the trade-offs that have been made in implementing different kinds of arithmetic in different models of computers, to which I'm trying to understand what the costs of various options would be. Say you want to implement base-100,…
rwallace
  • 559
  • 3
  • 11
0
votes
1 answer

Binary Data encoding and decoding format

I am trying to understand what is the meaning of this data coding format as shown in the following image. It is not simple binary to decimal conversion. Can anyone tell how this conversion formula works?
homecloud
  • 139
  • 8
0
votes
1 answer

Is it possible to make a circuit that can convert binary to decimal?

I know that computers use binary to calculate instructions and perform tasks. But essentially no one I know can convert binary to decimal. I am working on a calculator project currently, and the problem I have is converting binary to decimal for…
Trevor Mershon
  • 368
  • 2
  • 11