If matrices
A =
1 5 3
2 5 7
B=
1
3
and C = [1 2].
compute AtB, AC BtA + CB, whenever defined. If you think any of these are not defined, give your reasons for saying so.
#"A^T=\\begin{pmatrix}\n1 & 2 \\\\\n5 & 5 \\\\\n3 & 7 \n\\end{pmatrix}"
"B=\\begin{pmatrix}\n1 \\\\\n3 \\\\ \n\\end{pmatrix}"
"A^TB=\\begin{pmatrix}\n1+6 \\\\\n5 +15 \\\\\n3 +21 \n\\end{pmatrix}\n=\n\\begin{pmatrix}\n7 \\\\\n20 \\\\\n24 \n\\end{pmatrix}"
So it exists
# Product of AC will no exist.As In order for matrix multiplication to be defined, the number of columns in the first matrix must be equal to the number of rows in the second matrix and which is not satisfied here.
# "B^T=[1 ,3]"
"A=" "\\begin{pmatrix}\n1 & 5 & 3 \\\\\n2 & 5 &7 \\\\\n \n\\end{pmatrix}"
"B^T A= [1+6,5+15,3+21]=[7,20,24]"
"CB=[1+6]=[7]"
Now the order of "B^TA=1 \\times3"
the order of "CB=1 \\times 1"
Both orders are not same so we can not add both of them.
Comments
Leave a comment