The image below shows $A\cup C$.
How could I plot the inverse, that is how would one fill the part of B not in A or C $B - (A\cup C)$, and leave A and C with no fill?
In case it's helpful, here is the code for making the picture shown:
\begin{tikzpicture}
\filldraw[fill=lightgray] (0, 0) circle (1) {};
\filldraw[fill=lightgray] (3.2, 0) circle (1) {};
\draw (1.6, 0) circle (1) {};
\node at (0, 0) {A};
\node at (1.6, 0) {B};
\node at (3.2, 0) {C};
\end{tikzpicture}





circle[radius=1]and the empty group{}isn't needed as it doesn't do anything. – Andrew Stacey Apr 24 '22 at 17:09