

InterviewSolution
Saved Bookmarks
1. |
দেখুওৱা যে A B = A B যদি আৰু যদিহে A = B |
Answer» <html><body><p>Given:A <a href="https://interviewquestions.tuteehub.com/tag/andb-874946" style="font-weight:bold;" target="_blank" title="Click to know more about ANDB">ANDB</a> are symmetric matrixAT=A,BT=BWe need to <a href="https://interviewquestions.tuteehub.com/tag/show-642916" style="font-weight:bold;" target="_blank" title="Click to know more about SHOW">SHOW</a> <a href="https://interviewquestions.tuteehub.com/tag/ab-360636" style="font-weight:bold;" target="_blank" title="Click to know more about AB">AB</a> is symmetric if and only if A and B commute.and if A and B commute (AB=BA), then AB is symmetric.Part:<a href="https://interviewquestions.tuteehub.com/tag/iif-497931" style="font-weight:bold;" target="_blank" title="Click to know more about IIF">IIF</a> AB is symmetric then A and B commute.Given AB is symmetric⇒(AB)T=AB⇒BTAT=AB <a href="https://interviewquestions.tuteehub.com/tag/using-7379753" style="font-weight:bold;" target="_blank" title="Click to know more about USING">USING</a> the property (AB)T=(BA)T⇒BA=AB (given AT=A and BT=B)Hence A and B commute.Hence proved.Part:IIIf A and B commute, then AB is symmetric.Given A and B commute.i.e., AB=BAWe need to show AB is symmetric.We need to show (AB)T=BTATas(AB)T=BTAT=BA as A=ATand B=BTgiven=AB assumed that AB=BASo, (AB)T=ABHence, AB is symmetric.Hence proved.Hence,AB is symmetric if and only if A and B commute, that is AB=BA</p></body></html> | |