physicsfinale
physicsfinale
AND gate is the fundamental logic gate that executes the logical multiplication of binary input.
The AND operation is carried out in the same way as standard multiplications of 1s and 0s. An
AND gate is a logic circuit that performs AND operations on the input of the circuit. When all
the inputs are 1, the AND Gate outputs 1, otherwise it outputs 0. A dot (.) denotes the AND
operation.
OR gate is the type of Logic Gate. Let’s suppose in binary numbers 0 and 1, 0 is low and 1 is high.
So when at least one of the provided inputs is high then the output is high otherwise it’s low.
Returns 1, if all the inputs are 0 or alternative (meaning one is 0, and the other is 1 or vice versa).
0 0 0 1 (A)’.(B)’.(C)’
0 0 1 0
0 1 0 0
0 1 1 1 (A)’.B.C
1 0 0 0
1 0 1 1 A.(B)’.C
1 1 0 1 A.B.(C)’
1 1 1 0
1. For each row which has 1 as final output, we write complement of the element if it is 0, if it
is one we don’t make any changes.
2. input all the values into and gate.
3. Then input all the values we get after step 2 into or gates.
The resultant circuit:
BIBLIOGRAPHY