BreakPoint

cancel
Showing results for 
Search instead for 
Did you mean: 

Invert three signals with only two NOT gates

Few days ago I've seen nice "breakfast exercise" for the brain in one forum.

You have three separate booleans, which needs to be inverted, and you have the only two "NOT" primitives available. Also you can use any suitable amount of the "AND" and "OR" logic, but no "XOR" (and bundling into clusters or arrays also not allowed, of course). Start point:

Screenshot 2017-07-12 13.21.17.png

This funny task coming from old school electronic, when engineers trying to use as less inverters as possible. You can easily found an answer in the Internet, but it is quite interesting to solve it (at least was for me).

 

Good luck!

Message 1 of 17
(12,942 Views)

Playing with NXG it seems!

Putnam
Certified LabVIEW Developer

Senior Test Engineer North Shore Technology, Inc.
Currently using LV 2012-LabVIEW 2018, RT8.5


LabVIEW Champion



Message 2 of 17
(12,915 Views)

@Andrey_Dmitriev wrote:

This funny task coming from old school electronic, when engineers trying to use as less inverters as possible.


Roy Scheider would have just said "We're gonna need a bigger FPGA". 😄

0 Kudos
Message 3 of 17
(12,910 Views)

I think one is enough 😄

 

 InvertEm

0 Kudos
Message 4 of 17
(12,900 Views)

@altenbach wrote:

I think one is enough 😄

 


No, it is still equivalent with three gates (also same with cluster).

Lets go back to 1952 and build computer.

This is your "AND":
AND.png

This is "OR":

OR.png

But this is "NOT":

NOT.png

So, you should spare one expensive triode and replace it with couple of cheap diodes.

0 Kudos
Message 5 of 17
(12,891 Views)

I only go back half that far but there is some faint memory that tells me that NOR and NAND gates were used because they were cheaper than the AND and OR gates by a factor of an inverter at the output.

 

But I would think that in the spirit of the question you would want rule using NAND and NOR gates as well?

 

Ben

Retired Senior Automation Systems Architect with Data Science Automation LabVIEW Champion Knight of NI and Prepper LinkedIn Profile YouTube Channel
0 Kudos
Message 6 of 17
(12,879 Views)

@Ben wrote:

But I would think that in the spirit of the question you would want rule using NAND and NOR gates as well?


A NOR A = NOT(A + A) = NOT(A)

 

That was simple!


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
0 Kudos
Message 7 of 17
(12,872 Views)

@crossrulz wrote:

@Ben wrote:

But I would think that in the spirit of the question you would want rule using NAND and NOR gates as well?


A NOR A = NOT(A + A) = NOT(A)

 

That was simple!


Yes, it is. With NAND it will looks trivial like this:

Screenshot 2017-07-12 18.17.58.png

Technically Ben is perfectly right, in the former time AND/OR/NAND/NOR was implemented like this - inversion is just resistors placement:

Screenshot 2017-07-12 18.16.29.png

So, adding inversion to the AND or OR will spare one tube for dedicated inverter. But with Diode logic it was possible to replace tubes with diodes, but not for inversion - here you still need active element (tube or transistor). And our manager said - "save a money - the only two allowed".

0 Kudos
Message 8 of 17
(12,863 Views)

And of course you can use unlimited amount of the compound arithmetic with three or more inputs:

Allowed.png

But if you would like to invert input or output, then the only two inversions allowed::

Not1.png

or

Not2.png

 

0 Kudos
Message 9 of 17
(12,850 Views)

I Cheated.... sorta

 

While I never had to trouble shoot logic gates made from pentodes, I did have to fix ones built from discrete diodes and transistors. That is when I asked "why NOR instead of OR?" which seemed much more simple to understand.

 

Forgive me if I am wrong but the answer using just two "NOT" and a mix of ANDs and ORs has not been answered?

 

If I had time I would draw up the Venn diagrams but I have to get in the truck and start a road trip.

 

Have fun!

 

Ben

Retired Senior Automation Systems Architect with Data Science Automation LabVIEW Champion Knight of NI and Prepper LinkedIn Profile YouTube Channel
0 Kudos
Message 10 of 17
(12,839 Views)