0

So this is the truth table:

In_1  In_2  In_3  Out
0      0    0      1
0      0    1      1
0      1    0      1
0      1    1      1
1      0    0      1
1      0    1      1
1      1    0      1
1      1    1      1

How do I create a circuit that matches this truth table?

Here is what I have tried, but this did not work: attempt

Please help would be appreciated.

randomUser786
  • 1,527
  • 3
  • 13
  • 25

2 Answers2

1

You just need to connect the output to a constant logic 1, which is usually just the power supply voltage. This is a trivial logic function and requires no gates to implement.

Elliot Alderson
  • 638
  • 4
  • 8
  • Thank you very much for your reply. so I just have to connect the inputs directly to the output? – randomUser786 Dec 18 '22 at 16:12
  • No, you can completely ignore the inputs...you don't need to connect them to anything. The output is always the same, and is always 1, regardless of the input values. So, just connect the "output" signal to logic 1 (the power supply) and you are done. – Elliot Alderson Dec 18 '22 at 18:44
0

The solution is to apply Kmap. We will be ending up with an equation that will be similar to

enter image description here

but this is not the reduced form. If we try to reduce this equation we will end up with 1.

Check this tool for better understanding. https://www.boolean-algebra.com/kmap/

Nr Parthu
  • 11
  • 3