How Does an AND Gate Determine Its Output?

  • Thread starter ap1993
  • Start date
  • Tags
    Gate
In summary, the conversation discusses the use of an AND gate, specifically one made of diodes, and its limitations in performing logical operations and being cascaded indefinitely. The need for an inverting element and signal degradation correction are also mentioned. The possibility of using a transistor in place of diodes is also brought up.
  • #1
ap1993
4
0
The AND gate

and-gate.jpe


1. When A = 0 and B = 0 both diode D1 and D2 get forward biased and hence conduct. The diodes being ideal, no voltage drop takes place across either diode. Therefore potential difference of 5V takes place across R, with C at zero potential with respect to earth. Thus the output Y is 0 (in level).
2. When A = 0, B = 1, D1 conducts diode D2 will not. Since D1 is ideal, no voltage drop occurs it. Therefore a voltage drop of 5V takes place across R, having D at +5V and C at zero with respect to earth. The output is 0 (in levels).
3. When A = 1, B = 0 for same reason, output is 0.
4.When A = 1, B = 1 none of diodes conduct and so no current flows through R. The potential at C is equal to potential at D which is +5V with respect to earth. Hence output Y is 1.

A B Y
0 0 0
0 1 0
1 0 0
1 1 1
 
Engineering news on Phys.org
  • #2
Ingenious invention. I wonder why nobody ever thought of doing anything like that before. To think, if we put enough of these together, we can make arbitrary computations with these things. We can even construct a telecommunications network where people are free to exchange ideas like that with each other.
 
  • #3
Before CMOS (complemenatry metal oxide semiconductor), there was TTL (transistor transistor logic), DTL (diode transistor logic), RTL (resistor transistor logic), and DL (diode logic). The fundamental flaw in DL logic was that it could not perform the NOT logic operation, like in NAND. Two cross-coupled NAND gates are a simple flip flop.

Bob S
 
  • #4
I ate cornflakes for breakfast.
 
  • #5
What's the point of OP?
 
  • #6
The diode AND gate above lacks two of the fundamental requirements of multistage logic. To complete the set, an inverting element is required. This cannot be done with diodes and resistors alone as Bob has noted. Second, diode AND gates cannot be cascaded indefinitely before the high logic level (in this case) degrades. Signal degradation correction is a global requirement as true for digital logic as it is for digital or analog neuronetworks.
 
  • #7
4.When A = 1, B = 1 none of diodes conduct and so no current flows through R. The potential at C is equal to potential at D which is +5V with respect to earth. Hence output Y is 1.

How?
 
  • #8
My mistake. Not the high level but the low level signal degrades over multiple stages in your design. For an input of zero volts on either input the output is a diode drop above ground. Successively it goes to two, three, and more diode drops until it reaches the logic high level.

Do you think you can come up with a gate using a transistor?
 
  • #9
There is no current through R, so there is no voltage across it.

So, the voltages at each end of the resistor must be the same.

So, if you have 5 volts at one end of the resistor, there must be 5 volts at the other end of the resistor. So the output is 5 volts.
 

Related to How Does an AND Gate Determine Its Output?

1. What is an AND gate?

An AND gate is a logic gate that takes in two inputs, A and B, and produces an output, Y, based on specific logical operations. It is represented by the symbol '&' and is typically used in digital electronics to control the flow of information.

2. How does an AND gate work?

An AND gate works by performing a logical AND operation on its inputs. This means that the output, Y, will only be 'true' if both inputs, A and B, are 'true'. If either or both inputs are 'false', the output will also be 'false'. This is represented by the truth table:

A B Y
0 0 0
0 1 0
1 0 0
1 1 1

3. What are the practical applications of AND gates?

AND gates have many practical applications, such as in digital circuits for computer processors, memory systems, and logic gates. They can also be used in combination with other logic gates to create more complex functions and control electronic devices.

4. How are AND gates different from OR gates?

AND gates and OR gates are both basic logic gates, but they perform different operations. While an AND gate outputs 'true' only when both inputs are 'true', an OR gate outputs 'true' if either or both inputs are 'true'. This can be represented by the truth table for an OR gate:

A B Y
0 0 0
0 1 1
1 0 1
1 1 1

5. Can an AND gate have more than two inputs?

Yes, an AND gate can have more than two inputs. In fact, an AND gate can have any number of inputs, but it must have at least two. The output will only be 'true' if all inputs are 'true', otherwise the output will be 'false'. This is represented by the truth table for an AND gate with three inputs:

Similar threads

  • Electrical Engineering
Replies
14
Views
1K
  • Electrical Engineering
Replies
10
Views
2K
  • Electrical Engineering
Replies
13
Views
4K
Replies
68
Views
4K
  • Electrical Engineering
2
Replies
41
Views
4K
  • Electrical Engineering
Replies
2
Views
7K
  • Electrical Engineering
Replies
4
Views
2K
  • Introductory Physics Homework Help
Replies
3
Views
377
Replies
5
Views
2K
  • Classical Physics
Replies
10
Views
2K
Top
A B C Y
0 0 0 0
0 0 1 0
0 1 0 0
0 1 1 0
1 0 0 0
1 0 1 0