Advertisement
Guest User

Untitled

a guest
Sep 26th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. ##### 4. [2 + 1 + 1 = 4 marks] Given the following expression:
  2.  
  3. `𝐸 = π‘₯𝑦′(π‘₯+𝑦)`
  4.  
  5. Notes:
  6. `Lec3 slide 24 sum/products`
  7. `Lec3 slide 28 simplify`
  8.  
  9. `In the sum-of-products form, ANDed variables are ORed together. eg.`
  10. `F(x,y,z) = xy + xz + yz`
  11. `In the product-of-sums form, ORed variables are ANDed together. eg `
  12. `F(x,y,z) = (x+y)(x+z)(y+z)`
  13.  
  14. - a) ⭐ Draw the circuit that represents this expression as is.
  15. ![](q4a.png)
  16. `E = xy'(x+y)`
  17.  
  18. b) ⭐ The expression can be simplified to sum of products using one rule: which rule is it?
  19.  
  20. a = x
  21. b = ~y
  22. c = (x+y)
  23.  
  24. (a * b) * c = a * (b * c) (associative law)
  25.  
  26. (x * ~y) * (x + y) (associative law)
  27. = x * (~y * (x + y)) (involution law)
  28. = x * (x~y) (idempotent law)
  29. = x * ~y
  30.  
  31. c) ⭐ Draw the circuit that represents the simplified expression.
  32. ![](q4c.png)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement