I am wondering if someone could help me shed light on why the following bound doesn't work.
Suppose that $X_1, \ldots, X_n \sim N(0,1)$ are independent random variables. I am interested in finding a constant C that satisfies:
$$ E\left[\max_{1\leq i\leq n}|X_i|\right] \leq C \sqrt{log\ n} $$
My Method:
Let $Y = \max_{1\leq i\leq n}|X_i|$
$$ \begin{align} E\left[Y\right] & = \int_{0}^{\infty}P(Y >y)dy \\ &\leq\int_{0}^{\infty}\frac{1}{y^2}\sum_{i=1}^{n}Var(X_i) dy \\ & \leq \int_{0}^{\infty}\frac{n}{y^2}dy \\ \end{align} $$
I used Kolmogorov's inequality in the second step above, but don't know the exact mechanics of why this fails and am unsure why my integral in the end doesn't converge. Is there a specific reason this bounding doesn't work? Am I failing to take into account tail activity? thanks.