A school selects 4 teachers from 8 to teach in 4 remote areas at the same time (one person per area), where A and B cannot go together, and A and C can only go together or not go at all. The total number of different dispatch plans is \_\_\_\_\_\_ (answer in numbers).
Problem 106
Official solution
The solution can be divided into two steps:
First step, select four teachers, which can be further divided into two categories:
- First category, if A goes, then C must go, and B must not go. There are different ways to choose.
- Second category, if A does not go, then C must not go, and B may or may not go. There are different ways to choose.
Therefore, there are different ways to choose the teachers.
Second step, the four selected teachers go to 4 remote areas, which can be arranged in ways.
Finally, multiplying the number of methods in the two steps, we get .
Hence, the answer is .