In this answer, we are given the solution for calculating the probability of at least of of two events occurring. How can we generalize that for 3 or more events?
For example, what is the probability of at least one of A or B or C occurring? Can I just induct the answer recursively by computing at least one of (A or B) and then using that answer (as shown in the above link) to compute the probability of (A or B) or C? Will this give the correct result and thus provide a pattern for generalizing for any number of options? Can the solution be written more cleanly as some kind of summation or the like with indexed events A sub 1, A sub 2, ... A sub n?
Generally, if we're looking at the probability of at least one of a group of events occurring, $$p(A_1\cup A_2\cup\ldots\cup A_n) $$ We use the fact that the probability of an event $E$ and the probability of its complement $E^c$ add to 1, hence, the above probability is equivalent with $$1-p(A_1\cup A_2\cup\ldots\cup A_n)^c,$$ $$=1-p(A_1^c\cap A_2^c\cap\ldots\cap A_n^c),$$ by De Morgan's Law. That way, instead of having to calculate all possible ways of at least one event occurring, we can find the single probability of no event occurring and subtract that from 1.