I am trying to solve: Let, $$\vec a, \vec b ∈ \mathbb{R}^2 $$ $$\vec a = (a_1, a_2), \vec b = (b_1, b_2)$$ $$\vec c = \vec a + \vec b $$ Find vectors a, b, so that: $$ \vert \vec c \vert = \vert \vec a \vert + \vert \vec b \vert $$ $$ \sqrt {(a_1 + b_1)^2 + (a_2+b_2)^2} = \sqrt {a_1^2+a_2^2} + \sqrt {b_1^2+b_2^2} \text{ (1)}$$ Solving it, I get $$ (a_2*b_1 - a_1*b_2)^2 = 0$$ $$ a_2*b_1 = a_1*b_2 $$
$$\text{When I pick } a = [7, 1], b=[-1, x],$$ $$ \text{I get } a = [7, 1], b = [-1, -\frac{1}{7}]$$ Substituting these values back in (1) does not give an equality. I can see that b is a vector in the opposite direction of a, so it sort of makes sense intuitively why the sum of a and b doesn't have the same magnitude as |a| + |b|. However, since solving the equation gives me the value for b2, I am confused about the result and why aren't both sides of (1) equal. Could someone please offer an explanation?