A=diag(9,2) and B=[[1,5],[3,5]]. What is trace(AB)?
A=diag(9,2) और B=[[1,5],[3,5]] हैं। trace(AB) का मान क्या है?
Show answer and explanation
C. 19
ExplanationStep 1: trace is the sum of diagonal elements. Step 2: diagonal elements of AB are 9×1 and 2×5, so trace is 19. Step 3: tip: multiplying by a diagonal matrix scales rows or columns.
Step 1: trace diagonal elements का sum है। Step 2: AB के diagonal elements 9×1 और 2×5 होंगे, इसलिए trace 19 है। Step 3: tip: diagonal matrix multiply करते समय rows scale होती हैं।