recategorized by
7,686 views
25 votes
25 votes

What values of $A, B, C$ and $D$ satisfy the following simultaneous Boolean equations?

$\overline{A} + AB =0, AB=AC, AB+A\overline{C}+CD=\overline{C}D$

  1. $A=1, B=0, C=0, D=1$

  2. $A=1, B=1, C=0, D=0$

  3. $A=1, B=0, C=1, D=1$

  4. $A=1, B=0, C=0, D=0$

recategorized by

4 Answers

Best answer
22 votes
22 votes
$A'+AB=0  \implies A'+B=0$

$\therefore A'=0$ and $B=0$

$A=1$

$AB=AC \implies B=C\implies  C=0$

$AB+AC'+CD=C'D$

$\implies 0+1+0=D$

$\implies D=1$

Correct Answer: $A$
edited by
19 votes
19 votes
Answer is A.

For verification, just put up the values and check for AND, OR operations and their outputs.
4 votes
4 votes
As, A' + AB = 0

A' can't be 1 because if A'=1 this implies 1+AB which is not 1 therefore, A'=0 => A=1

now AB has to be 0 to satisfy the equation, therefore B has to be 0 So , A=1, B=0

Now  AB=AC
as A=1, B=0 So C must be 0 then only AC will be 0. So, C=0

AB+AC'+CD=C'D

now AB=0 as B is 0 then AC'=1 (as A=1 , C'=1) , CD=0 as C is 0
So LHS is 1 now for RHS to be 1, C' and D both have to be 1 therefore D=1

So A=1, B=0, C=0, D=1
option a) is the ans.
2 votes
2 votes

"Options make this question pretty straight forward what we need to do just put the options and see which one satisfy the given condition

What if the same question is given in " Numeric" value where we have to find the value of Boolean variable A, B, C, D or asking to find the value in decimal where A(MsB) & D(Lsb) which make bit "tricky"

Answer:

Related questions

7 votes
7 votes
1 answer
1
go_editor asked Feb 12, 2018
2,560 views
What is the equivalent minimal Boolean expression (in sum of products form) for the Karnaugh map given below?
21 votes
21 votes
2 answers
2
Kathleen asked Oct 8, 2014
5,011 views
Merge sort uses:Divide and conquer strategyBacktracking approachHeuristic searchGreedy approach
26 votes
26 votes
5 answers
3
Kathleen asked Oct 8, 2014
15,878 views
Let $\Sigma=\left\{0,1\right\}, L = \Sigma^*$ and $R=\left\{0^n1^n \mid n 0\right\} $ then the languages $L \cup R$ and $R$ are respectivelyregular, regularnot regular, ...
49 votes
49 votes
7 answers
4
Kathleen asked Oct 8, 2014
38,258 views
The postfix expression for the infix expression $A+B*(C+D)/F+D*E$ is:$AB + CD + *F/D +E*$$ABCD + *F/DE* ++$$A * B + CD/F *DE ++$$A + *BCD/F* DE ++$