If you do a statistical test that compares groups and find a significant difference between groups, can you then conclude that there is a difference between the "lowest" group and the "highest" group, without doing post-hoc tests?
I read on this site that an Anova can give a significant result when none of the post-hoc tests do. This answer and its comments explained that:
the data can reveal that the true means likely differ but it cannot identify with sufficient confidence which pairs of means differ.
That gave me the impression that it's not that the fact that Anova finds a difference and post-hoc tests do not means that there is no difference between the groups, but that the post-hoc tests just cannot identify this difference.
A comment to that answer has an example in R with a significant Anova result and non-significant Tukey-HSD post-hoc results. That confirmed this impression.
The group means and post-hoc results from that example are:
Group mean
1 0.14
2 3.04
3 3.02
Tukey HSD results
2-1 0.051
3-1 0.053
3-2 0.999
It seemed to me that, if I had not done a post hoc test and concluded, based on the significant Anova and the group means, that at least group 1 and 2 differ, that would be a reasonable conclusion. The fact that the post-hoc test is not significant at a significance level of 0.05 would just mean that the test lacks power to detect the difference, not that the difference doesn't exist.
But then I read this answer that says that it's possible that there is variance between groups whithout any pair of groups being significantly different:
ANOVA tests for significant variance among the set of groups. Significant variance can be present without any pair of groups being significantly different.
The answers that I found about this are about Anova, but my question is not specific to Anova. My question is: if I have a significant test result for a test with three or more groups, can I then conclude that the lowest and highest scoring groups differ, without even doing post-hoc tests? If not: how is that possible? How can there be significant variance between groups when none of the groups differ from each other?