0

I want to show that the probability that a random variable $X$ is smaller than a set of variables $C=\{C_1,C_2,...\}$ is equal to $a$. I use notation $X<C$ to show that $X$ is smaller than all $C$s. But set $C$ may be empty. How should I handle situation $P(X<C)$ when $C$ is empty? What is the right notation for it? Can I write $P(X<\emptyset)=1$?

1 Answers1

2

Based on the clarification in the comments:

You compare $X$ to all the elements of $C$, and the event $X<C$ in your notation is actually $X<\inf C$ in the standard one. (you compare random variables with numbers, not sets.)

Thus, if $C=\emptyset$ there is no problem: $\inf \emptyset=\infty$ (explanation) and thus $\Pr(X<\inf \emptyset)=1$. If you want to keep your notation, I guess there is no problem writing $X<\emptyset$ but it should be clearly defined in your text as it is not standard nor common.

YJT
  • 4,621
  • Thank you very much for your clear answer – Optimized Life Apr 24 '21 at 05:30
  • 1
    If $C={0,1}$ then $\inf C=0$ and $\sup C=1$. To be smaller than all the elements, it should be smaller than the $\inf$ (by definition - inf is the highest lower bound). – YJT Apr 24 '21 at 05:37