I am assuming that for $b)$ you mean:
Prove that for $0 < p < 1,\,$ $d_2(x,y) = \left(|x_1 - y_1| + |x_2 - y_2|\right)^p$ is a metric on $\mathbb{R}^2$.
There are two things you need here:
- $|x - y| \leq |x| + |y|$.
- $(a + b)^p \leq a^p + b^p$, for $a,b \geq 0$
This first one is the standard triangle inequality that you are most likely familiar with. To prove the second, you can take the fact that the function $f(x) = x^p$ is convex. What properties you need are:
- $f(0) = 0$
- $f'(x) \geq 0$
- $f''(x) \leq 0$
The first and third of these properties will give you a triangle like inequality:
$$f(a + b) \leq f(a) + f(b).$$
What is this true? Take the difference:
$$
g(x) = f(x + a) - f(x) - f(a)
$$
Note that $g'(x) = f'(x + a) - f'(x)$. Since $f''(x) \leq 0$ you must have that $f'$ is decreasing and so $g'(x) \leq 0$. Now take a look at $g(0) = f(a) - f(0) - f(a) = f(0) = 0$. So what you get is $g(x) \leq 0$ for all $x \geq 0$. That is:
$$f(a + b) \leq f(a) + f(b).$$
Now to prove your propositon given these two triangle inequalities is not hard anymore:
Show: $d(x,z) \leq d(x,y) + d(y,z)$. First note that since $f'(x) \geq 0$ you have $f(x) \leq f(y)$ for $x \leq y$. We need this for $(*)$ in the inequality chain. Now get:
$$
\begin{align}
d(x,z) & = \left(|x_1 - z_1| + |x_2 - z_2|\right)^p \\
& = \left(|x_1 - y_1 + y_1 - z_1| + |x_2 - y_2 + y_2 - z_2|\right)^p \\
& \leq \left(|x_1 - y_1| + |x_2 - y_2| + |y_1 - z_1| + |y_2 - z_2|\right)^p (*)\\
& \leq \left(|x_1 - y_1| + |x_2 - y_2|\right)^p + \left(|y_1 - z_1| + |y_2 - z_2|\right)^p\\
& = d(x,y) + d(y,z)
\end{align}
$$
And you are done.