InterviewSolution
Saved Bookmarks
| 1. |
दो सदिशों `vecA` और `vecB` के योग और अंतर का परिमाण बराबर है | सिद्ध कीजिए कि सदिश `vecA` व `vecB` परस्पर लंबवत है | |
|
Answer» `|vecA + vecB|= |vecA - vecB|` `therefore |vecA + vecB|^(2) = |vecA - vecB|^(2)` `(vecA + vecB) * (vecA + vecB) = (vecA - vecB) * (vecA - vecB)` `A^(2) + b^(2) + 2 AB cos theta = A^(2) + B^(2) - 2AB cos theta ` ` cos theta = 0` `theta = 90^(@)` `therefore A bot B.` |
|