How do I solve $\sin{a} + \sin{b} + \sin{c} = 2 \land \cos{a} + \cos{b} + \cos{c} = 2 $?
I tried the following in Mathematica, but it did not give any solutions. I would appreciate an analytical solution (or the proof that no solutions exist).
Solve[{
Sin[a] + Sin[b] + Sin[c] == 2,
Cos[a] + Cos[b] + Cos[c] == 2},
{a, b, c}]





What it looks to me is that you want to make $(2,2)=\vec{a}+\vec{b}+\vec{c}$ where $\vec{a}, \vec{b}, \vec{c}$ are unit vectors in the Euclidean plane. Here is a way to do it geometrically:
(a) Draw a circle around $O=(0,0)$ with radius $1$ and a circle around $C=(2,2)$ with radius $2$. They will intersect in two points $X,Y$. Take a point $A$ anywhere on the smaller arc $\overset{\frown}{XY}$, and let $\vec{a}=\vec{OA}$. $\vec{a}$ will be a unit vector.
(b) Now make two circles of radius $1$ centered in $A$ and $C$. They will intersect in one or two points: take any of them (call it $B$) and now both $\vec{b}=\vec{AB}$ and $\vec{c}=\vec{BC}$ will be unit vectors, and $\vec{a}+\vec{b}+\vec{c}=\vec{OC}=(2,2)$.