If $||x||_2 = 3$ and $||y||_2 = 7$, find the minimum of $\langle x, y\rangle$
My thought process is that it would be 3 since if $||x||_2 = 3$, we can have $|x_1| = 1$, $|x_2| = 1$, $|x_3| = 1$ and every other term can equal $0$. Similarly, if $||y||_2 = 7$ then we can have $||y_1|| = 1$, $||y_2|| = 1$, ... , $||y_7|| = 1$ and every other term can equal $0$. So, we would have that $$\langle x, y\rangle = |x_1| |y|_1 + |x_2| |y|_2 + |x_3| |y|_3 + |x_4| |y|_4 + |x_5| |y|_5 + |x_6| |y|_6 + |x_7| |y|_7 + ... + |x_k| |y|_k\\=(1\times1) + (1\times1) + (1\times1) + (0\times1) + (0\times1) + (0\times1) + (0\times1) + (0\times0) + ... + (0\times0) = 3$$. So our minimum is 3.
Is is train of logic correct?