Suppose we have three vectors on the unit circle. Two of them have an angle $\theta_{1}$ and one has angle $\theta_{2}$. If we add the three vectors, what would be the angle of the resultant? I assumed it would be $$\theta_{tot} = \frac{2\theta_{1}+\theta_{2}}{3} $$ But I was told this was wrong (please see What is the resulting vector's angle if two vectors point in the same direction?)
Can anyone please guide towards the right answer, I mean a general formula for this problem. Any help would be much appreciated. Thank you.
Suppose that $\theta_1 = 0$ to make it easy, and, just to make it even easier, that $\theta_2 = \pi/2$. Then your vectors are $(1, 0), (1, 0),$ and $(0, 1)$. So the sum is $(2, 1)$ and the resulting angle is $$ \arctan (\frac{1}{2}) \approx .46 $$ which is not $\pi/6$. So clearly averaging the angles doesn't cut it.
Now let's work it out in general: you have vectors $$ (\cos \alpha, \sin \alpha) \\ (\cos \beta, \sin \beta) \\ (\cos \gamma, \sin \gamma) $$ Add them up and take the arctangent (or better, $atan2$): $$ \theta = atan2(\cos \alpha + \cos \beta + \cos \gamma, \sin \alpha + \sin \beta + \sin \gamma). $$ That's it. Note that if the three angles are $0, 2\pi/3, 4\pi/3$ (or any rotation of these), then this becomes $$ atan2(0,0) $$ which is undefined; that's appropriate, because the vector sum is the zero-vector, whose angle is undefined.