0

I understand that the term "disjoint" is ambiguous, so I want to explicitly define the set $A$ in a clear and, especially, concise way:

  • $A = B \cup C \cup D \cup \{e,f\}$
  • $B = \{b_{1}, b_{2}, \dots, b_{n}\}$
  • $C = \{c_{1}, c_{2}, \dots, c_{m}\}$
  • $D = \{d_{1}, d_{2}, \dots, d_{k}\}$

It should be clear that the sets $B, C, D, \{e, f\}$ are pairwise disjoint. What would be the correct and most concise way to explicitly state this property? Probably $B \cap C \cap D \cap \{e, f\} = \emptyset$?

John Doe
  • 135

1 Answers1

1

For any $A_0,\cdots,A_{n-1}$, usually we say $A_0,\cdots,A_{n-1}$ are pairwise disjoint if

\begin{equation} \text{for any }i\neq j<n\text{ we have }A_i\cap A_j=\varnothing;\qquad(*) \end{equation}

and we say $A_0,\cdots,A_{n-1}$ are disjoint if

\begin{equation} A_0\cap\cdots\cap A_n=\varnothing.\qquad(\dagger) \end{equation}

It's not hard to see that $(*)$ implies $(\dagger)$ while the converse doesn't hold. To see the former, without loss of generality suppose $A_0\cap A_1=\varnothing$, then $A_0\cap\cdots\cap A_n=\varnothing$, and to see the latter, setting $A_0=\{0,1\},A_1=\{1,2\},A_2=\{6\}$ we have $A_0\cap A_1\cap A_2=\varnothing$ but $A_0\cap A_1=\{1\}\neq\varnothing$.

M. Logic
  • 1,302