As you know, Student´s t-test is only valid for a pair of variable/experiment. for instance, we can do t-test(A, B).
Now, I need to test whether variables A, B, C, D are close to each other or not.
Should I do $$4Choose2 = 6 $$ That is, do test for 6 times, each time, I would check:
test(A,B), test(B,C), test(C, A).... etc?
Is this approach correct?