Multiplexers - ch. 6

ucla | CS M51A | 2023-01-24T14:34


Table of Contents

Definitions


Big Ideas


2-input Multiplexers (MUXes)

  • a 2-input multiplexer unit can be described by the switching expression

z=MUX[x1,x0,s]=x1s+x0s¯

  • the set of multiplexers MUX is universal (can be represented as NOT and NAND)
  • an example of implementations of NOT and AND:

$NOT(x)=MUX[0,1,x]=0\cdot x+1\cdot\bar x=\bar x\space$

Shannon’s Decomposition (SD)

$f(x_{n-1},…,x_0)=f(x_{n-1},…,1)\cdot x_0+f(x_{n-1},…,0)\cdot \bar x_0\implies$

  • an example

    z=x3(x2+x0)x1=MUX[x3x1,x3x2x1,x0]

  • you can use SD recursively to obtain a tree of multiplexers

Resources


📌

**SUMMARY
**