edited by
409 views

2 Answers

0 votes
0 votes
x is 1*3 Matrix

x^t is 3*1 matrix

x*x^t=order(1*1)

x^t*x=order(3*3)

hence (A) and (C) are answers
0 votes
0 votes

The matrix multiplication of a square/non-square matrix depends upon the order of the matrix.

Let $A_{m*n}$ and $B_{n*p}$ are two matrix then the order of resultant $[AB]_{m*p}$

now,

$x_{1*3}=\begin{bmatrix}3&1&2 \end{bmatrix}$

$x^T_{3*1}=\begin{bmatrix} 3\\ 1 \\ 2 \end{bmatrix}$

  1.  form option A, [$x^Tx]_{3*3}$ is true.
  2. option B is false because size of $xx^T$ should be $1*1$
  3. option C is true.
  4. option D is false.

$\text{option A,C is correct.}$

 

edited by

Related questions

2 votes
2 votes
1 answer
4
soujanyareddy13 asked Jan 29, 2021
473 views
If $P$ is an invertible matrix and $A=PBP^{-1},$ then which of the following statements are necessarily true?$B=P^{-1}AP$$|A|=|B|$$A$ is invertible if and only if $B$ is ...