Building Your First Circuit in Logisim Evolution
Experiment: Two-Input AND Gate
Section titled “Experiment: Two-Input AND Gate”Objectives
Section titled “Objectives”- Become familiar with basic Logisim Evolution operations.
- Learn how to use input pins, logic gates, and output pins.
Principles
Section titled “Principles”A two-input AND gate is one of the most basic combinational logic devices. Its behavior is:
- The output is 1 if and only if all inputs are 1.
Let inputs be A and B, and output be Y. The logic expression is:
Task: Build and verify a two-input AND gate
Section titled “Task: Build and verify a two-input AND gate”- Prepare input and output pins
- In the Wiring category, place two Pin components. In the properties panel (or using the text tool), name them A and B.
- Place one more Pin, name it Y, and set its Type to Output in the properties panel.
- Place the AND gate
- In the Gates category, place one AND gate.
- Wire the circuit
- Connect inputs A and B to the two inputs of the AND gate.
- Connect the AND gate output to Y.
- Verify functionality
- Click pins A and B to cycle through input combinations: (A,B) = 00, 01, 10, 11.
- Observe how output Y changes.
Results
Section titled “Results”- A full screenshot of your completed AND-gate circuit.
- Complete the experiment record table below.
| A | B | Y |
|---|---|---|
| 0 | 0 | |
| 0 | 1 | |
| 1 | 0 | |
| 1 | 1 |
Table 1.1: Two-input AND gate truth table (fill in Y during the experiment).
Questions
Section titled “Questions”- If you replace the AND gate with an OR gate, how does the output logic change?
- Does this circuit have “memory” (i.e., can it keep a previous output state after the inputs change)? Why?