Finding Minimum Value

47 Views Asked by At

The question in the textbook is:

if a,b,c are unit vectors, then $|a-b|^2+|b-c|^2+|c-a|^2$ does not exceed 'x'. Find x, where x is an integer.

On solving we get this expression: $6-2(a.b + b.c + c.a)$

Now, I understand that we can use $|a+b+c|^2 >= 0$ to find the minimum value of the $(a.b + b.c + c.a)$ term which would give us the value for 'x'.


But I was wondering wether it would be possible to find the minimum value of the expanded version of the $(a.b + b.c + c.a)$ term?

$(a.b + b.c + c.a) = cosθ$1 + cosθ2 + cosθ3

Here's what I think, in a normal case where θ1, θ2 and θ3 would be independent, the minimum value would be -3 but the angles θ1, θ2 and θ3 are not really independent but bounded geometrically.

So, is it possible to find the minimum value of cosθ1 + cosθ2 + cosθ3?

EDIT: I'm in High School, forgot to mention that.