Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
You can deduce the circuit that you need for the first output in a quite literal way (expressing 'off' as 'NOT on'):
"Output1 is on when Input1 is NOT on, AND Input2 is not on, AND input3 is NOT on".
Solution: You to need a NOT for each input and plug that into a 3-way AND.
Lets do an example for wire number 7. That wire should be on when the inputs form a binary 6, which is 110. So you do the same thing again: "The output should be on, when Input1 is NOT on AND Input2 is on, AND Input3 is on" So another 3-way AND in with a NOT for Input1 and normal wires for Input 2 and 3.
That should be enough to solve the 3-Bit Decoder. But in later levels, you can expand that literal approach when ORs come into play. You just build the curcuit as you would describe it in words (using NOT, AND, OR) and focussing only on the "on's".
Okey, I was way off track! I'll have a crack at it and thank you oh so much!!!