

InterviewSolution
Saved Bookmarks
1. |
let us define , the length of a vector as `|a| + |b| +|c| `. this definition coincides with the usual definition of the length of a vector `ahati + bhatj + chatk ` ifA. `a= b= c=0`B. any two of a, b and c are zeroC. any one of a, b and c is zeroD. `a+ b+ c=0` |
Answer» Correct Answer - B `|a| + |b| + |c| = sqrt(a^(2) + b^(2) + c^(2))` `hArr 2 |ab|+ 2|bc| + 2|ca|=0` `hArr ab = bc =ca =0 hArr ` any two of a, b and c are zero. |
|