edited by
2,832 views
4 votes
4 votes

A new flipflop with inputs $X$ and $Y$, has the following property

$$\begin{array}{|c|c|c|}\hline \bf{X}&  \bf{Y}&  \bf{Current\ state}&\bf{ Next\ state}  \\\hline  0&0&Q&1 \\ 0&1&Q&\overline{Q}\\    1& 1&Q&0 \\   1&0&Q&Q \\ \hline  \end{array}$$

Which of the following expresses the next state in terms of $X,Y,$ current state?

  1. $(\overline{X}\wedge \overline{Q} )\vee (\overline{Y} \wedge Q)$
  2. $(\overline{X}\wedge Q )\vee (\overline{Y} \wedge \overline{Q})$
  3. $(X\wedge \overline{Q })\vee (Y \wedge Q)$
  4. $(X\wedge \overline{Q })\vee (\overline{Y } \wedge Q)$ 
edited by

1 Answer

3 votes
3 votes
(EDIT: computing on the question in the comment-picture)

The State Table: ($d=$ Don't Care)

\begin{array}{|c|c|c|}\hline
 
\bf{X}&  \bf{Y}&  \bf{Qn}&\bf{ Qn+1}  \\\hline
 
0&0&0&1 \\ 0&0&1&1 \\ 0&1&0&1\\  0&1&1&0 \\  1&0&0&0 \\ 1& 0&1&1 \\  1&1&0&0 \\ 1&1&1&0 \\ \hline  
 
 \end{array}

Karnaugh Map:

\begin{array}{|c|c|c|}\hline
  \bf{}& \bf{}&  \bf{Qn}&  \bf{Qn}&\bf{}  \\\hline
 \bf{}& \bf{}&  \bf{}&  \bf{Y}&\bf{Y}  \\\hline
&1&1&0&1 \\ \bf{X}&0&1&0&0 \ \\ \hline  
 \end{array}

So answer should be (a) $(\bar{X}\wedge \bar{Q})\vee (\bar{Y} \wedge {Q})$
edited by
Answer:

Related questions

24 votes
24 votes
4 answers
1
Arjun asked Sep 22, 2015
3,404 views
Design a $3$-bit counter using D-flip flops such that not more than one flip-flop changes state between any two consecutive states.
20 votes
20 votes
1 answer
2
6 votes
6 votes
3 answers
3
Satbir asked Jan 13, 2020
3,956 views
The following circuit compares two $2$-bit binary numbers, $X$ and $Y$ represented by $X_1X_0$ and $Y_1Y_0$ respectively. ($X_0$ and $Y_0$ represent Least Significant Bit...
8 votes
8 votes
3 answers
4
Satbir asked Jan 13, 2020
3,153 views
If $ABCD$ is a $4$-bit binary number, then what is the code generated by the following circuit?BCD codeGray code$8421$ codeExcess-$3$ code