Algebra · real student question

Given A = [[9,1,1],[1,2,1],[1,18,1]] and B = the 3x2 matrix of all ones, compute AB, and then decide whether A^T B^T is defined.

Question

Let

A=(9111211181),B=(111111)A=\begin{pmatrix}9&1&1\\1&2&1\\1&18&1\end{pmatrix},\qquad B=\begin{pmatrix}1&1\\1&1\\1&1\end{pmatrix}

(a) Compute ABAB.
(b) Is AtBtA^{t}B^{t} defined? If not, what is the correct transpose identity?

Step-by-step solution

  1. Check the shapes before multiplying. AA is 3×33\times 3 and BB is 3×23\times 2. The inner dimensions match (3=33=3), so ABAB exists and has the outer dimensions, 3×23\times 2.

  2. Exploit the structure of B. Every column of BB is (1,1,1)t(1,1,1)^{t}, so each entry of ABAB is just the sum of a row of AA, and both columns of ABAB will be identical.

  3. Compute the three row sums.

    9+1+1=11,1+2+1=4,1+18+1=209+1+1=11,\qquad 1+2+1=4,\qquad 1+18+1=20

    Hence

    AB=(1111442020)AB=\begin{pmatrix}11&11\\4&4\\20&20\end{pmatrix}

  4. (b) Check the shapes for AᵗBᵗ. Transposing swaps dimensions: AtA^{t} is 3×33\times 3 and BtB^{t} is 2×32\times 3. The product AtBtA^{t}B^{t} would need the inner dimensions to agree, i.e. 33 (columns of AtA^t) =2=2 (rows of BtB^t) — and they do not. So

    AtBt is undefined.A^{t}B^{t}\ \textbf{is undefined.}

  5. State the identity that does hold. Transposing a product reverses the order:

    (AB)t=BtAt(AB)^{t}=B^{t}A^{t}

    Here BtB^{t} is 2×32\times 3 and AtA^{t} is 3×33\times 3, so BtAtB^{t}A^{t} is 2×32\times 3 — exactly the shape of (AB)t(AB)^{t}.

  6. Verify the identity numerically.

    BtAt=(1142011420)=(AB)tB^{t}A^{t}=\begin{pmatrix}11&4&20\\11&4&20\end{pmatrix}=(AB)^{t}

    which is indeed the transpose of the ABAB found in part (a). This confirms both the arithmetic and the order-reversal rule.

    AB=(1111442020);AtBt undefined;(AB)t=BtAt\boxed{AB=\begin{pmatrix}11&11\\4&4\\20&20\end{pmatrix};\quad A^{t}B^{t}\text{ undefined};\quad (AB)^{t}=B^{t}A^{t}}

Answer

AB=(1111442020),AtBt is undefined (use (AB)t=BtAt)AB=\begin{pmatrix}11&11\\4&4\\20&20\end{pmatrix},\quad A^{t}B^{t}\text{ is undefined (use }(AB)^{t}=B^{t}A^{t})

Need to solve a different problem like this? Open the solver →