I'm trying to answer the questions "What is the vector $x ∈ \mathbb{R^3}$ that achieves $max||x||_1$ subject to $||x||_2 = 1$?" and "What is the vector x ∈ $R^3$ that achieves $max||x||_∞$ subject to $||x||_2 = 1$?
I think the first question is asking me to find a vector with three components that will have the maximum $||x||_1$ norm value where $\sqrt{x_1^2 + x_3^2 + x_2^2} = 1$, so $x_1^2 + x_3^2 + x_2^2 = 1$. I know the The L1 norm is just the sum of the absolute values of the vector's components. After trial and error I came up with $x = [\sqrt{\frac{1}{3}}, \sqrt{\frac{1}{3}}, \sqrt{\frac{1}{3}}]$ , but also $[-\sqrt{\frac{1}{3}}, -\sqrt{\frac{1}{3}}, -\sqrt{\frac{1}{3}}]$, and $[-\sqrt{\frac{1}{3}}, \sqrt{\frac{1}{3}}, \sqrt{\frac{1}{3}}]$, etc.
For my the second question, I think I need to find the vector in $\mathbb{R^3}$ that will give me the maximum value of the absolute value of the vector's components given $x_1^2 + x_3^2 + x_2^2 = 1$. I came up with $[1, 0, 0]$, $[0, 1, 0]$ , $[0, 0, 1]$, $[-1, 0, 0]$, $[0, -1, 0]$ , and $[0, 0, -1]$.
Am I correct? Is there a more formal way to figure this out and write my solution?