We use a double set matrix when there are two factors, and each factor has only two distinct possibilities.
There's one factor: lights that were supposed to be switch on or off.
The other factor is: lights that actually were switched on or off.
Assuming 100 lights, our double set matrix would look like:
Code:
-----------| supposed to be off | supposed to be on | total
actual off | | .1(100-x) |
--------------------------------------------------------------
actual on | .4x | | 80
--------------------------------------------------------------
total | x | 100-x | 100
We can continue to fill out the table.
Code:
-----------| supposed to be off | supposed to be on | total
actual off | .6x | .1(100-x) | 20
--------------------------------------------------------------
actual on | .4x | .9(100-x) | 80
--------------------------------------------------------------
total | x | 100-x | 100
Our question is: What percent of the lights that are switched on are supposed to be switched off?
So we are looking for the numerical value of (.4x/80) *100% or (x/2) %
We can figure out using the lights actually on that
.4x + .9(100 - x) = 80
.4x + 90 - .9x = 80
.5x = 10
x = 20
(Alternately, you can also use the lights actually off)
so (x/2)% = 10%
I got (D)