Suppose there are $m = 7\times 10^9$ people in the world,
each of whom has the same chance to be struck by a meteor,
and for each individual person the the probability that that person
will be struck by a meteor is $1/n$ where $n = 7\times 10^5$.
Assign a number from $1$ to $m$ to each person, and for each integer $k$
in that interval ($1 \leq k \leq m$)
let $X_k$ be random variable defined so that
$X_k = 1$ if person number $k$ is hit by a meteor, $X_k = 0$ otherwise.
Then by simple calculation, the expected value of $X_k$ is
$$
E(X_k) = 0 \cdot P(X_k = 0) + 1 \cdot P(X_k = 1) = P(X_k = 1) = \frac1n.
$$
The expected value is the probabilistic "average" of a random variable,
and it has the very nice property that for any two random variables
$X$ and $Y$, if expected value is defined for each of those variables
then $E(X + Y) = E(X) + E(Y)$.
This is true even if $X$ and $Y$ are not independent events.
It is also true for sums of more than two variables, as long as only a finite
number of variables is involved.
To find out how many people in the world are struck by a meteor,
we simply go through the entire list of people and add $1$ to
"number of people struck" for each person who is struck, $0$ for anyone else.
That is, we add up the sum
$X_1 + X_2 + X_3 + \ldots + X_m$.
But by the additive property of expected value,
\begin{align}
E(X_1 + X_2 + X_3 + \ldots + X_m)
&= E(X_1) + E(X_2) + E(X_3) + \ldots + E(X_m)\\
&= \overbrace{\frac1n + \frac1n + \ldots + \frac1n}^{\text{$m$ terms}} \\
&= \frac mn
\end{align}
and that is the expected (i.e. average) number of people who
will be struck by meteors.