You have an unlimited pile of bars which are slightly arrow-shaped and have four lights in a row. When on, the lights can either be green or red, but currently all the lights are off.
You are then given two bars that are turned on. On one bar the first two lights are green but the last two lights are red, and on the other bar the first and third lights are green but the second and fourth lights are red.
You may then do the following steps in any order and as many times as you like:
Starting with the two given bars and using the above given steps, is it possible to make all 16 possible green and red color combination of the four lights on each bar?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
The bars are similar to columns of a logical truth table , where the green light is true and the red light is false, where the second step is negation ( ∼ p ) and the third step is conjunction ( p ∧ q ). Therefore, we are trying to see if we can obtain all 1 6 possible true and false combinations with just p , q , negation ( ∼ ), and conjuction ( ∧ ).
Below is a table of all 1 6 possible true and false combinations. Starting with the original two lighted bars, which we will call p and q respectively, we have T T F F and T F T F . By Step 3 , touching these two bars to a bar that is off will give us T F F F , the logical equivalent to p ∧ q .
Cloning these bars by Step 1 and negating them by Step 2 , we get ∼ p (which is F F T T ), ∼ q (which is F T F T ) and ∼ ( p ∧ q ) (which is F T T T ).
Using different variations of p , ∼ p , q , and ∼ q with conjunction, we have p ∧ ∼ p (which is F F F F ), p ∧ ∼ q (which is F T F F ), ∼ p ∧ q (which is F F T F ), and ∼ p ∧ ∼ q (which is F F F T ), and their negations ∼ ( p ∧ ∼ p ) (which is T T T T ), ∼ ( p ∧ ∼ q ) (which is T F T T ), ∼ ( ∼ p ∧ q ) (which is T T F T ), and ∼ ( ∼ p ∧ ∼ q ) (which is T T T F ).
This leaves two left, which can be obtained by ∼ ( ∼ p ∧ q ) ∧ ∼ ( p ∧ ∼ q ) (which is T F F T ) and its negation ∼ ( ∼ ( ∼ p ∧ q ) ∧ ∼ ( p ∧ ∼ q ) ) (which is F T T F ).
Therefore, it is possible to make all 1 6 possible green and red color combination of the four lights on each bar.