SACC

// navigation

Introduction
Questions
Answers

// Questions



  1. Reduce the following expressions using K-maps. Show your maps.
    • F(A,B,C)=ABC+ABC+AB+ABC+A B
    • F(A,B,C,D)=A BCD+ A BCD+ ABCD+ ABCD+ ABCD+ ABC D
    • F(A,B)=A B+AB
    • F(A,B,C)=A B C+ABC+ABC+ABC



  2. Use a K-map to derive the simplest expression based on the following table:
    A B C F
    0 0 0 0
    0 0 1 1
    0 1 0 1
    0 1 1 0
    1 0 0 1
    1 0 1 0
    1 1 0 0
    1 1 1 1




  3. Use a K-map to derive the simplest expression based on the following table:
    A B C F
    0 0 0 1
    0 0 1 0
    0 1 0 1
    0 1 1 1
    1 0 0 1
    1 0 1 0
    1 1 0 0
    1 1 1 1




  4. Use a K-map to derive the simplest expression based on the following table:
    A B C D F
    0 0 0 0 1
    0 0 0 1 0
    0 0 1 0 1
    0 0 1 1 0
    0 1 0 0 1
    0 1 0 1 0
    0 1 1 0 0
    0 1 1 1 0
    1 0 0 0 1
    1 0 0 1 0
    1 0 1 0 1
    1 0 1 1 0
    1 1 0 0 0
    1 1 0 1 0
    1 1 1 0 0
    1 1 1 1 0




  5. Use a K-map to derive the simplest expression based on the following table:
    A B C D F
    0 0 0 0 1
    0 0 0 1 0
    0 0 1 0 1
    0 0 1 1 0
    0 1 0 0 1
    0 1 0 1 0
    0 1 1 0 1
    0 1 1 1 1
    1 0 0 0 1
    1 0 0 1 0
    1 0 1 0 1
    1 0 1 1 0
    1 1 0 0 1
    1 1 0 1 0
    1 1 1 0 1
    1 1 1 1 1




  6. Design a combinational circuit that when given a 3-bit binary number as an input will produce a binary number equal to the square of the number as an output. The truth table for such a circuit follows. Find the simplest expressions for the output quantities in SOP form:
    x y z A B C D E F
    0 0 0 0 0 0 0 0 0
    0 0 1 0 0 0 0 0 1
    0 1 0 0 0 0 1 0 0
    0 1 1 0 0 1 0 0 1
    1 0 0 0 1 0 0 0 0
    1 0 1 0 1 1 0 0 1
    1 1 0 1 0 0 1 0 0
    1 1 1 1 1 0 0 0 1






Source: Passafine, John and Michael Douglas, Digital Logic Design