tags:
- ece230
- bsu
- school
- digital-systems
- electronics
- lecture
- notes
- fall-2024
source: https://boisestatecanvas.instructure.com/courses/34549/files?preview=16593849
created: 2024-09-09
What are digits?
Digits are the different unique values of a number system.
What are numbers?
Numbers are combinations of digits.
What is a number system?
A number system is a set of rules for forming numbers using a set of digits.
How many unique digits are in the binary number system?
There are 2 unique digits in the binary number system.How many unique digits are in the octal number system?
There are 8 unique digits in the octal number system.How many unique digits are in the decimal number system?
There are 10 unique digits in the decimal number system.How many unique digits are in the hexadecimal number system?
There are 16 unique digits in the hexadecimal number system.
What is positional encoding?
Positional encoding is the method of forming a number from digits based on the relative position of each digit.
What value does each number system have?
Each number system has a base value.
Typically, what does the base value of a number system match?
The base value of a number system matches the number of unique digits.
What is each digit in a number multiplied by?
Each digit in a number is multiplied by integer exponents of the base depending on its relative position.
What is the rightmost digit multiplied by?
The rightmost digit is multiplied by. What is the second rightmost digit multiplied by?
The second rightmost digit is multiplied by.
After the digits of a number are multiplied by the integer exponent of the base depending on their relative positions, how is the value of the number determined?
After the digits of a number are multiplied by the integer exponent of the base depending on their relative positions, the value of the number is determined by adding them together.
...
What is a bit?
A bit is a binary digit.
How many bits are represented by one hexadecimal digit?
One hexadecimal digit represents four bits.
...
Which bit is the Least Significant Bit (LSB)?
The LSB is the rightmost bit.
Which bit is the Most Significant Bit (MSB)?
The MSB is the leftmost bit.
What is the sign of a binary number if the sign digit is 0?
The sign of a number if the sign digit is 0 is positive.
What is the sign of a binary number if the sign digit is 1?
The sign of a number if the sign digit is 1 is negative.
What is the position of the sign digit in a binary number?
The position of the sign digit in a binary number is left of the MSB.
What digits represent the number in a signed binary number of
The digits that represent the number in a signed binary number is
In what two ways are binary addition and decimal addition similar?
Binary addition is similar to decimal addition in that:
What happens to the carry digit in binary addition?
In binary addition, the carry digit is propagated from the LSB to the MSB.
...
What does a half adder take as input?
A half adder takes two inputs,
What is the truth table for the half adder?
The truth table for the half adder is:
Sum ( |
Carry | ||
---|---|---|---|
0 | 0 | 0 | 0 |
0 | 1 | 1 | 0 |
1 | 0 | 1 | 0 |
1 | 1 | 0 | 1 |
What is the circuit diagram for the half adder?
The circuit diagram for the half adder is:
What does a full adder take as input?
A full adder takes three digits,
What is the difference between the half adder and the full adder?
The difference between the half adder and the full adder is that the full adder takes the carry out from another adder while the half adder doesn't.
What does a full adder output?
A full adder outputs a sum
How can you create a multi-bit adder?
You can create a multi-bit adder by cascading full adders.
How many full adders do you need to chain together in order to add a pair of
To add a pair of
What is a ripple carry adder?
A ripple carry adder is a logic circuit that adds
Which adder do you need to use for the Least Significant Bit (LSB) of a binary number?
The adder you need to use for the LSB of a binary number is a half adder.
...
This section has a Karnaugh map for a full adder's sum
What is the Boolean equation for the sum
The Boolean equation for the sum (
What is the Boolean equation for the carry out
The Boolean equation for the carry out (
What is the circuit diagram for the full adder?
The circuit diagram for the full adder is: