1.
- X = A · B
- 3.
A | B | X |
---|---|---|
0 | 0 | 0 |
1 | 0 | 0 |
0 | 1 | 0 |
1 | 1 | 1 |
AND means that it will output 1 only two input are both 1.
2.
- X = A⊕B
- 3.
A | B | X |
---|---|---|
0 | 0 | 1 |
1 | 0 | 0 |
0 | 1 | 0 |
1 | 1 | 1 |
XOR means that it will output 0 only two input is equal.
3.
4.
A | B | Output |
---|---|---|
0 | 0 | 1 |
1 | 0 | 0 |
0 | 1 | 1 |
1 | 1 | 1 |
5.
In electrical engineering and science, an equivalent circuit refers to a theoretical circuit that retains all of the electrical characteristics of a given circuit. Often, an equivalent circuit is sought that simplifies calculation, and more broadly, that is a simplest form of a more complex circuit in order to aid analysis.
A | B | AB | (AB)’ |
---|---|---|---|
0 | 0 | 0 | 1 |
1 | 0 | 0 | 1 |
0 | 1 | 0 | 1 |
1 | 1 | 1 | 0 |
A | B | A’ | B’ | A’+B’ |
---|---|---|---|---|
0 | 0 | 1 | 1 | 1 |
1 | 0 | 0 | 1 | 1 |
0 | 1 | 1 | 0 | 1 |
1 | 1 | 0 | 0 | 0 |
So they are equal.
6.
7.
-
(
X
8
X
7
X
6
X
5
1111
)
2
-
(
X
8
X
7
X
6
X
5
(
X
4
+
1
)
(
X
3
+
1
)
(
X
2
+
1
)
(
X
1
+
1
)
)
2
-
(
X
8
X
7
X
6
X
5
(
X
4
+
1
)
(
X
3
+
1
)
(
X
2
+
1
)
(
X
1
+
1
)
)
2
版权声明:本文为panyang970422原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。