AND gate in redstone

Two torch-towers feeding a shared line — output lights only when both inputs are on. Footprint 3 wide × 5 deep × 2 tall. Build it block by block in Minecraft.

How to build it

The gate is a flat 3-block-wide row with two input torches on the ends and an output torch on the front of the middle block.

  1. Place a 3-block-wide row of solid blocks where the gate will live.
  2. Drop a lever on the ground behind each end block, with a short trail of redstone dust running from the lever to the back of that block.
  3. Stand a redstone torch on top of each end block — those are the input inverters: torch is on when the lever is off.
  4. Run redstone dust across the top of the middle block so the two inverters share one horizontal line.
  5. Mount one more redstone torch on the front face of the middle block. That's the output torch — it lights only when both inverters are off, i.e. when both inputs are on.
  6. Run dust forward (or aim straight at a note block) to pick up the output.

Why it works

It's the classic De Morgan build: A ∧ B = ¬(¬A ∨ ¬B).

Gotchas