recategorized by
4,135 views
12 12 votes

   

The Karnaugh map of a function of $(A, B, C)$ is shown on the left hand side of the above figure.

The reduced form of the same map is shown on the right hand side, in which the variable $C$ is entered in the map itself. Discuss,

  1. The methodology by which the reduced map has been derived and
  2. the rules (or steps) by which the boolean function can be derived from the entries in the reduced map.

4 Answers

Best answer
26 26 votes

We can get the truth table as $$\begin{array}{|c|c|c|c|}\hline
A&B&C&F\\\hline
0&0&0&1\\
0&0&1&0\\
0&1&0&1\\
0&1&1&1\\
1&0&0&0\\
1&0&1&1\\
1&1&0&0\\
1&1&1&1\\ \hline
\end{array}$$ Now, to reduce the K-map to a Variable Entrant Map we can write the function $F$ in terms of $C$. i.e., wherever $F$ is becoming $1$ dependent on $C$ (i.e. when $C$ complements $F$ must become $0)$, we replace $1$ with $C$ or $\bar C$ based on whichever is giving output $1.$ So, we can rewrite the truth table as $$\begin{array}{|c|c|c|c|}\hline
A&B&F\\\hline
0&0&\bar C\\
0&1&1\\
1&0&C\\
1&1&C\\
 \hline
\end{array}$$ In the above truth table $F=1$ for second row, because when $A = 0,B=1, F= 1$ for both $C$ and $\bar C$ making $F$ independent of $C.$ Now, if we draw the $K$-map for the above truth table we get the reduced Variant Entrant map given.

edited by
5 5 votes

 

$f(A,B,C)$ = $\overline{A}\overline{C} + BC + AC + \overline{A}B$

********This method is known as variable entrant map*******

Step 1:

SOP= $\overline{A}B$

Step 2:  $"\overline{C}"$

SOP = $\overline{A} = \overline{A}\overline{C}$

Step 3: "C"

SOP = B + A  = BC + AC

Merge all these terms $F(A,B,C) =    \overline{A}\overline{C} + AC + BC +\overline{A}B$

 

 

lemme me know if i m wrong...

edited by
1 1 vote
On solving the first k-map we get the following expression:
AC+A'C'+BC

in the reduced k-map:
 

if C=1, we get,  AC+BC

if C=0, we get, A'C'

on combining both we get AC+A'C'+BC
0 0 votes

The question is different but the concept is similar . 

step 4 ) SOP of VEM is obtained by ORing the previous SOP expressions .

 

Position:
Show:

Related questions

20 20 votes
2 answers 2 answers
7.2k
7.2k views
go_editor asked Dec 19, 2016
7,249 views
Using binary full adders and other logic gates (if necessary), design an adder for adding $4$-bit number (including sign) in $2’s$ complement notation.
26 26 votes
2 answers 2 answers
5.1k
5.1k views
go_editor asked Dec 11, 2016
5,137 views
Define the value of $r$ in the following: $\sqrt {(41)_{r}} = (7)_{10}$
24 24 votes
2 answers 2 answers
4.8k
4.8k views
go_editor asked Dec 11, 2016
4,817 views
Three switching functions $f_1, \: f_2 \:$ and $f_3$ are expressed below as sum of minterms.$f_1 (w, x, y, z) = \sum \: 0, 1, 2, 3, 5, 12$$f_2 (w, x, y, z) = \sum \: 0, 1...
32 32 votes
3 answers 3 answers
4.3k
4.3k views
go_editor asked Dec 11, 2016
4,302 views
Let $*$ be defined as a Boolean operation given as $x*y = \overline{x}\;\;\overline{y}+xy$ and let $C=A*B$. If $C=1$ then prove that $A=B$.