I am thinking about p-values correction in case of multiple test.
In general if the complex test 'contain' several simple test then probability of first type error increases. In this case I conclude that complex null hypothesis is rejected if at least one of the simple hyphothesis is rejected. To reduce 1-type error of complex hypotheisis testing due to cumulation of propability of 1-type error several method vere proposed : https://en.wikipedia.org/wiki/Multiple_comparisons_problem
The my question is what if we want to reject complex null hypothesis if all simple hyphothesis can be rejected.
In first case first type error probability can be calculated as: $$ \alpha_{complex} = 1 - (1-\alpha)^k $$ So to have the same $ \alpha $ value corrected p-value by Sidak correction is: $$ p_{corrected,i} = 1 - (1-p_i)^{k} $$
I assume that in case when we want reject null hypothesis if all $ k $ hypothesis are rejected then first type error can be calculated as folow:
$$ \alpha_{complex} = \alpha^k $$
So as well
$$ p_{corrected,i} = p_i^{k} $$
Is my assumption correct?
What do you think about other correction factor :
$$ p_{corrected,i} = \dfrac{p_{i}}{k} $$
I think that this factor can be better in some cases, but this just my 'personal feeling'. I do not have any evidence for that :)
PS. please correct me if I am completly wrong, I've just started my adventure with statistic:)