Background
Grimmett & Stirzaker’s Probability and Random Processes (4th ed. 2020), exercise 4.2.5, reads:
Peripheral points. Let $P_i = (X_i, Y_i)$, $1\le i \le n$, be independent, uniformly distributed points in the unit square $[0,1]^2$. A point $P_i$ is called peripheral if, for all $r=1, 2, \dots, n$, either $X_r\le X_i$ or $Y_r\le Y_i$, or both. Show that the mean number of peripheral points is $n\left(\frac{3}{4}\right)^{n-1}$.
The proof they give is easy: Define an indicator function $I_i$ that is 1 if the point $P_i$ is peripheral. Then $\mathbb{E}(I_i) = \mathbb{P}(I_i=1) = \left(\frac{3}{4}\right)^{n-1}$, and setting the number of peripheral points $X:=\sum I_i$, the result follows from the linearity of expectation.
Here is a plot of $\mathbb{E}(X)= n\left(\frac{3}{4}\right)^{n-1}$:
Question
Notably, for $n\ge 9$, we have $\mathbb{E}(X) = n\left(\frac{3}{4}\right)^{n-1} < 1$.
This is a contradiction to the following argument:
- Assume $n$ points placed in the unit square (never mind how they are distributed).
- Since the set of points is finite, there exist at least one point with a maximal X coordinate, and at least one point with a maximal Y coordinate. (These points might be the same.)
- Therefore the number of peripheral points is $X \ge 1$ always, and thus $\mathbb{E}(X)\ge 1$.
Put differently, if for $n\ge 9$ we have $\mathbb{E}(X) < 1$ then there should exist a configuration of points such that no point is peripheral. I can’t see how that is true?
Any help clearing up my confusion would be greatly appreciated, thanks!

The $\left(\frac34\right)^{n-1}$ probability your calculation is wrong as it assumes independence of pairwise orderings. If you were restricted to just looking at the $X_i$s then the same argument would give a probability of $\left(\frac12\right)^{n-1}$ and an expectation of $n\left(\frac12\right)^{n-1}$ when clearly the correct probability is $\frac1n$ and the correct expectation is $1$ peripheral point.
If $n=3$:
the first point is the only peripheral point if $X_1\gt X_2$ and $X_1\gt X_3$ and $Y_1\gt Y_2$ and $Y_1\gt Y_3$, which has probability $\left(\frac{1}{3}\right)^2=\frac19$, so the overall probability there is just one peripheral point is three times this, i.e. $\frac13$
all three points are peripheral if $X_a \le X_b \le X_c$ and $Y_a \ge Y_b \ge Y_c$ for one of the six permutations of $1,2,3$ so has probability $\frac{6}{3!^2}= \frac16$
in any other case there are two peripheral points, with probability $1-\frac13-\frac16=\frac 12$
the expected number of peripheral points is then $1\times \frac13+2 \times \frac12 + 3\times \frac16 = \frac{11}{6} \approx 1.833$, not your $3(\frac34)^2=\frac{27}{16} = 1.6875$.
For a solution for general $n$:
the first point is the $k$th largest ranked on $X$ is $\frac{1}{n}$ since all $n$ positions are equally likely
given it is the $k$th largest ranked on $X$, the first point is peripheral with probability $\frac{1}{k}$ since it has to be ranked higher on $Y$ than the points above it ranked on $X$
so the probability the first point is peripheral is $\sum\limits_{k=1}^n \frac1{nk} = \frac1nH_n$ where $H_n$ is a harmonic number
and thus the expected number of peripheral points is $n$ times that, by linearity of expectation, so is $H_n \approx \log_e(n)+\gamma+ \frac1{2n}$
For $n=3$ this is $\frac11+\frac12+\frac13=\frac{11}{6}$ as before. For $n=9$ it is $\frac{7129}{2520} \approx 2.829$, well above $1$. Perhaps a simulation using R might be persuasive, confirming these results up to the noise of simulation: