Sale!

CGS 3269 Assignment 2 solution

Original price was: $35.00.Current price is: $28.00. $23.80

Category:

Description

5/5 - (1 vote)

Precedence

  1. NOT has precedence over AND
  2. AND has precedence over OR
  3. When computing an expression
  4. Parentheses
  5. Compute NOTs
  6. Compute ANDs
  7. Compute ORs

 

Example

                                                                  

  1. Given Boolean function F = x + y’z
    1. Transform from an algebraic expression into a logic diagram

x

 

 

 

y                                                                                                                         F

 

 

z

 

  1. Create the truth table for each computational step based on precedence

 

x Y z y’ y’z x + y’z (F)
0 0 0 1 0 0
0 0 1 1 1 1
0 1 0 0 0 0
0 1 1 0 0 0
1 0 0 1 0 1
1 0 1 1 1 1
1 1 0 0 0 1
1 1 1 0 0 1

Assignment

 

  1. Given Boolean function F1 = xyz’
    1. Transform from an algebraic expression into a logic diagram
    2. Create the truth table for each computational step based on precedence

 

  1. Given Boolean function F2 = xy’ + z
    1. Transform from an algebraic expression into a logic diagram
    2. Create the truth table for each computational step based on precedence

 

  1. Given Boolean function F3 = xy’ + x’z
    1. Transform from an algebraic expression into a logic diagram
    2. Create the truth table for each computational step based on precedence

 

  1. Given Boolean function F4 = x’y’z + x’yz + xy’
    1. Transform from an algebraic expression into a logic diagram
    2. Create the truth table for each computational step based on precedence