I'm studying random variables right now and trying to wrap my head around the idea of $\mathbb P(X>x)$. I understand the idea that $\mathbb P(X=x)$ is the probability of our random variable equalling some outcome, but I'm having a little trouble grasping the inequality version. If someone could maybe provide an example/help me with some intuition that would be fantastic.
Thanks!
$\mathbb P(X > x)$ is simply the probability of the random variable $X$ being larger than some value $x$. For example, suppose a random variable $X$ can take the values $1$, $2$, $3$, or $4$ with the following probabilities: \begin{matrix} \text{Outcome}&1&2&3&4\\ \text{Probability}&0.1&0.3&0.4&0.2 \end{matrix} What is $\mathbb P(X > 2)$? It is simply the sum of probabilities of all values greater than $2$, i.e., $$\mathbb P(X > 2) = \mathbb P(X = 3) + \mathbb P(X = 4) = 0.4 + 0.2 = 0.6$$ Notice that an alternative way to find $\mathbb P(X > x)$ is $$\mathbb P(X > x) = 1 - \mathbb P(X \leq x)$$ So, now, we can find $\mathbb P(X > 2)$ as $$\mathbb P(X > 2) = 1 - \mathbb P(X \leq 2) = 1 - \left[\mathbb P(X = 1) + \mathbb P(X = 2)\right] = 1 - [0.1 + 0.3] = 1 - 0.4 = 0.6$$ Notice that in both methods, the answer is the same. However, the method you choose may vary depending on the type of problem you are trying to solve.