for std of {a, b, c} to be greater than {|a|, |b|, |c|}, the first set should have both negative and positive values. If it has only non negative values or only non positive values, then both sets will be equal.
Let a be the smallest and c be the largest. Range is 4. To have a negative and positive value, they need to cross over the origin. So potential options
{-3, -2 , 1}
{-3, -1, 1}
{-3, 0, 1}
{-2, -1, 2}
{-2, 0, 2}
{-2, 1, 2}
{-1, 0, 3}
{-1, 1, 3}
{-1, 2, 3}
Notice that (set 1, set 9), (set 2, set 8), (set 3, set 7), (set 4, set 6) differ by multiplication of -1. Why this matters ?
if a set has std = d, then set *k has std of d *|k|. So in this case all those similar sets will have same std.
Overall we need to check,
1. {-3, -2, 1}
2. {-3, -1, 1}
3. {-3, 0, 1}
4. {-2, -1, 2}
we need to ensure std of {a,b,c} > {|a|, |b|, |c|}
std{-3, -2, 1} => mean is -1.667, diffs = {-1.33, 0.33, 2.666}, squares = {~1, 0 , ~4} => sum = ~5
std{|-3|, |-2|, |1|} => mean is 2, diffs = {1, 0, -1}, squares = {1, 0, 1} => sum = 2
this works and so does the symmetric one {-1, 2, 3}
check {-3, -1, 1}
mean is -1, diffs = {-2, 0, 2}, squares = {4, 0, 4} => sum = 8
for {|-3|, |-1|, |1|} => means is 5/3 =1.667, diffs = {1.33, -0.66, -0.66}, squares = {} it will be less than 8
this works and so does the symmetric one {-1, 1, 3}
check for {-3, 0, 1}
mean is -0.66, diffs = {2.333, 0.66, 1.66}, squares = {~4, 0, ~1} => sum = ~5
for {|-3|, |0|, |1|} => mean is 1.66, diffs = {1.33, -1.66, -0.66}, squares = {~1, ~1, ~0} => sum = ~2
Actually, I just got an idea that, we can just check the ranges to see
{-3, -2, 1} => range = 4
{|-3|, |-2|, |1|} => range = 2
so yes.
based on the principle that both measure spreads and so if range{set A} > range{set B}, then std{set A} > std{setB}
So all the sets actually work.
Now
1. Possible. Take set 1 => {-3, -2, 1}
2. Possible. Take set 2 => {-3, -1, 1}
3. Possible. Take set 2 => mode of {|-3|, |-1|, |1|} is 1
Ans: E