• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

logic diagram

Sadaiyappan

Golden Member
Hi, please help me with this problem, I have been trying it for hours now and am getting no where.

Imagine a machine with four inputs and one output that functions as follows: the output is on (1) if exactly two of the inputs are on (1) and off (0) otherwise.
 
ok this is what i get using min terms:

A B C D x

A.B
A.C
A.D
B.C
B.D
C.D

so i get this : (A*B*C'*D') + (A*B'*C*D')+(A*B'*C'*D)+(A'*B*C*D')+(A'*B*C'*D)+(A'*B'*C*D)

now this is confusing me.. am i supposed to draw this out? If i draw it out i will have 16 inputs not 4...
 
Originally posted by: Sadaiyappan
ok this is what i get using min terms:

A B C D x

A.B
A.C
A.D
B.C
B.D
C.D

so i get this : (A*B*C'*D') + (A*B'*C*D')+(A*B'*C'*D)+(A'*B*C*D')+(A'*B*C'*D)+(A'*B'*C*D)

now this is confusing me.. am i supposed to draw this out? If i draw it out i will have 16 inputs not 4...

4 inputs: A, B, C, D
Each input fans out to multiple gates.
 
Edit: You got it.

P.S. I'm curious, are you allowed to use exclusive-or?
 
yes.. well it didn't specify.. i just used six And statements connected to one or statement to create one output at the end..
 
Back
Top