Difference between revisions of "Digital Electronics"

From ACSL Category Descriptions
Jump to navigation Jump to search
Line 100: Line 100:
!<math>4</math>
!<math>4</math>
!<math>5</math>
!<math>5</math>
|-
|-
|-
|0
|0
Line 111: Line 110:
|1
|1
|0
|0
|-
|-
|-
|0
|0
Line 122: Line 120:
|1
|1
|1
|1
|-
|-
|-
|0
|0
Line 133: Line 130:
|1
|1
|1
|1
|-
|-
|-
|0
|0
Line 144: Line 140:
|1
|1
|1
|1
|-
|-
|-
|0
|0
Line 155: Line 150:
|0
|0
|1
|1
|-
|-
|-
|0
|0
Line 166: Line 160:
|1
|1
|1
|1
|-
|-
|-
|0
|0
Line 177: Line 170:
|1
|1
|1
|1
|-
|-
|-
|0
|0
Line 188: Line 180:
|1
|1
|1
|1
|-
|-
|-
|1
|1
Line 199: Line 190:
|1
|1
|0
|0
|-
|-
|-
|1
|1
Line 210: Line 200:
|1
|1
|1
|1
|-
|-
|-
|1
|1
Line 221: Line 210:
|1
|1
|1
|1
|-
|-
|-
|1
|1
Line 232: Line 220:
|1
|1
|1
|1
|-
|-
|-
|1
|1
Line 243: Line 230:
|1
|1
|0
|0
|-
|-
|-
|1
|1
Line 254: Line 240:
|0
|0
|0
|0
|-
|-
|-
|1
|1
Line 265: Line 250:
|0
|0
|0
|0
|-
|-
|-
|1
|1
Line 276: Line 260:
|0
|0
|0
|0
|-
|}
 
}|


== Sample Problem 2 ==
== Sample Problem 2 ==
Line 297: Line 279:
= Video Resources =
= Video Resources =


 
The following YouTube videos show ACSL students and advisors working out some ACSL problems that have appeared in previous contests. Some of the videos contain ads; ACSL is not responsible for the ads and does not receive compensation in any form for those ads.





Revision as of 04:24, 19 August 2018

This topic is an extension of the topic of Boolean Algebra which includes a more thorough description of the category in terms of determining whether a circuit results in a TRUE or FALSE value using truth tables or how to simplify a circuit to as few gates as possible. Electrical engineers use the following symbols to design electrical circuits that are used inside the computer’s hardware. The following table illustrates the equivalent Boolean algebra expression and truth table for each gate.

Definitions

NAME GRAPHICAL SYMBOL ALGEBRAIC EXPRESSION TRUTH TABLE
BUFFER Symbol X = A truth table
NOT Symbol X = [math]\overline{A}[/math] ! A X 0 1 1 0
AND Symbol X = [math]AB[/math] or [math]A*B[/math] A B X 0 0 0 0 1 0 1 0 0 1 1 1
NAND Symbol X = [math]\overline{AB}[/math] or [math]\overline{A*B}[/math] A B X 0 0 1 0 1 1 1 0 1 1 1 0
OR Symbol X = [math]A+B[/math] A B X 0 0 0 0 1 1 1 0 1 1 1 1
NOR Symbol X = [math]\overline{A+B}[/math] A B X 0 0 1 0 1 0 1 0 0 1 1 0
XOR Symbol X = [math]A \oplus B[/math] A B X 0 0 0 0 1 1 1 0 1 1 1 0
XNOR Symbol X = [math]\overline{A \oplus B}[/math] A B X 0 0 1 0 1 0 1 0 0 1 1 1

Sample Problems

Sample Problem 1

Find all ordered 4-tuples (A, B, C, D), which make the following circuit FALSE:

"f:\ACSl Category Descriptions\Pictures\de s1.png

Solution: This circuit diagram translates to: [math](\overline{C+D}+B) \oplus (\overline{A}B) \oplus (\overline{C+D})[/math]. The table has the following headings: 1=[math]\overline{C+D}[/math], 2=[math]1+\overline{B}[/math], 3=[math]\overline{A}B[/math], 4=[math]A \oplus B[/math], and 5=[math]4 \oplus 1[/math]. Thus, the 4-tuples (0,0,0,0), (1,0,0,0), (1,1,0,0), (1,1,0,1), (1,1,1,0), and (1,1,1,1) all make the circuit FALSE.

[math]A[/math] [math]B[/math] [math]C[/math] [math]D[/math] [math]1[/math] [math]2[/math] [math]3[/math] [math]4[/math] [math]5[/math]
0 0 0 0 1 1 0 1 0
0 0 0 1 0 1 0 1 1
0 0 1 0 0 1 0 1 1
0 0 1 1 0 1 0 1 1
0 1 0 0 1 1 1 0 1
0 1 0 1 0 0 1 1 1
0 1 1 0 0 1 1 1 1
0 1 1 1 0 0 1 1 1
1 0 0 0 1 1 0 1 0
1 0 0 1 0 1 0 1 1
1 0 1 0 0 1 0 1 1
1 0 1 1 0 1 0 1 1
1 1 0 0 1 1 0 1 0
1 1 0 1 0 0 0 0 0
1 1 1 0 0 0 0 0 0
1 1 1 1 0 0 0 0 0

Sample Problem 2

Find all ordered triplets (A, B, C) which make the following circuit FALSE:

Solution: The circuit translates to the Boolean expression [math]\overline{AB}+C[/math]. To find when this is FALSE we can equivalently find when the [math]\overline{\overline{AB}+C}[/math] is TRUE. We can simplify this by applying DeMorgan’s Law and cancelling the double not over AB to yield [math]AB\overline{C}[/math] . This is TRUE when for (1,1,0) only.

Sample Problem 3

Simplify the following digital circuit as a Boolean algebra expression using the fewest gates possible:

Solution: This translates to: [math]\overline{A*B+\overline{C}*D}[/math] . Simplify: [math]\overline{(A*B+\overline{C})*D}=\overline{AB+\overline{C}}+\overline{D}[/math] [math]=\overline{AB}*\overline{\overline{C}}+\overline{D}=(\overline{A}+B)C+\overline{D}[/math] This has 5 gates and [math]\overline{A}C+BC+\overline{D}[/math] has 6 so the above expression is best.

Video Resources

The following YouTube videos show ACSL students and advisors working out some ACSL problems that have appeared in previous contests. Some of the videos contain ads; ACSL is not responsible for the ads and does not receive compensation in any form for those ads.