Ten chairs are arranged in a circle. Find the number of subsets of this set of chairs that contain at least three adjacent chairs.
Attempt: I counted as "the method where all three chairs must be lined up next to each other", "the method where all four chairs must be lined up next to each other"...and so on. But there are many situations where there can be three adjacent chairs in the "four adjacent chairs". Because the inside can be exchanged at will...? Can I solve it that way?
It sounds like what you're doing might work. Here's an approach similar to yours, which takes care of the overcounting you mentioned through the "principle of inclusion-exclusion"
However, using "complementary counting" will be much, much easier, especially for this problem. Find the number of subsets of chairs that do not contain at least $3$ adjacent chairs, then subtract this from the total number of subsets.