Level/Second Tick: Difference between revisions

From Turing Complete
m (Gelthor moved page Turing Complete/Second Tick to Level/Second Tick without leaving a redirect)
m (Use ON & OFF in truth table)
Line 1: Line 1:
{{Header Nav|game=Turing Complete}}
{{Header Nav|game=Turing Complete}}


This level has you construct a non standard gate where the output is only true when input one is true and input two is false.
This level has you construct a non standard gate where the output is only true when input 1 is true and input 2 is false.


{| {{Prettytable}}
{| {{TruthTable}}
|+ Special Gate Truth Table
|+ Level Truth Table
|-
|-
! Input One !! Input Two !! Output
! Input 1 !! Input 2 !! Output
|-
|-
| {{No}}|| {{No}}|| {{No}}
| {{Off t}}|| {{Off t}}|| {{Off t}}
|-
|-
| {{No}}|| {{Yes}}|| {{Yes}}
| {{Off t}}|| {{On t}}|| {{On t}}
|-
|-
| {{Yes}}|| {{No}}|| {{No}}
| {{On t}}|| {{Off t}}|| {{Off t}}
|-
|-
| {{Yes}}|| {{Yes}}|| {{No}}
| {{On t}}|| {{On t}}|| {{Off t}}
|}
|}


The simplest solution to this level is to place one AND Gate and invert the second input.
The simplest solution to this level is to invert the second input and connect that and first input into one AND Gate.


{{Footer Nav|game=Turing Complete|prevpage=Always On|nextpage=XOR Gate}}
{{Footer Nav|game=Turing Complete|prevpage=Always On|nextpage=XOR Gate}}

Revision as of 23:29, 1 September 2024

This level has you construct a non standard gate where the output is only true when input 1 is true and input 2 is false.

Level Truth Table
Input 1 Input 2 Output
0 0 0
0 1 1
1 0 0
1 1 0

The simplest solution to this level is to invert the second input and connect that and first input into one AND Gate.