R2 Normed Space 532089
1. **Problem statement:** Show that $X=\mathbb{R}^2$ is a normed linear space with a given norm.
2. **Definition:** A normed linear space is a vector space $X$ equipped with a norm $\|\cdot\|$ that satisfies the following properties for all $x,y \in X$ and scalar $\alpha$:
- (Positivity) $\|x\| \geq 0$ and $\|x\|=0$ iff $x=0$
- (Homogeneity) $\|\alpha x\| = |\alpha| \|x\|$
- (Triangle inequality) $\|x+y\| \leq \|x\| + \|y\|$
3. **Vector space:** $\mathbb{R}^2$ is a vector space with usual addition and scalar multiplication.
4. **Norm definition:** Consider the norm $\|x\| = \sqrt{x_1^2 + x_2^2}$ for $x = (x_1,x_2) \in \mathbb{R}^2$.
5. **Check positivity:**
- $\|x\| = \sqrt{x_1^2 + x_2^2} \geq 0$ since squares are non-negative.
- $\|x\|=0$ implies $x_1=0$ and $x_2=0$, so $x=0$.
6. **Check homogeneity:**
- For scalar $\alpha$,
$$\|\alpha x\| = \sqrt{(\alpha x_1)^2 + (\alpha x_2)^2} = \sqrt{\alpha^2 (x_1^2 + x_2^2)} = |\alpha| \sqrt{x_1^2 + x_2^2} = |\alpha| \|x\|.$$
7. **Check triangle inequality:**
- For $x,y \in \mathbb{R}^2$,
$$\|x+y\| = \sqrt{(x_1 + y_1)^2 + (x_2 + y_2)^2} \leq \sqrt{(x_1^2 + x_2^2)} + \sqrt{(y_1^2 + y_2^2)} = \|x\| + \|y\|,$$
by the Minkowski inequality.
8. **Conclusion:** Since all norm properties hold, $\mathbb{R}^2$ with this norm is a normed linear space.