WHAT we do: count rows, then columns. WHY: order is always rows-first.
P has 2 rows and 3 columns, so its order is 2×3.
The entry p23 sits in row 2, column 3. Walking to row 2 gives [5,3,7]; its 3rd number is 7.
order 2×3,p23=7
Recall Solution
Rule used: for a product the inner dimensions must agree (m×p)(p×n); for a sum the orders must be identical.
AB: (2×3)(3×4) → inner 3=3 ✅ → order 2×4.
BA: (3×4)(2×3) → inner 4=2 ❌ does not exist.
AC: (2×3)(2×3) → inner 3=2 ❌ does not exist.
A+C: both 2×3 ✅ → order 2×3.
Recall Solution
Compare each with its transpose (and recall diagonal = off-diagonal entries all zero, from the reminders above).
[0−220]⊤=[02−20]=−A → skew-symmetric (note the zero diagonal, as forced by aii=−aii).
[1005]: both off-diagonal entries are 0, so nonzero numbers sit only where i=j → diagonal (and since A⊤=A, also symmetric).
WHAT: each output entry (i,j) = row i of A · column j of B. WHY: that is the definition forced by composition, (AB)x=A(Bx).
AB=[1⋅0+2⋅(−1)3⋅0+4⋅(−1)1⋅1+2⋅23⋅1+4⋅2]=[−2−4511]
Recall Solution
BA=[0⋅1+1⋅3−1⋅1+2⋅30⋅2+1⋅4−1⋅2+2⋅4]=[3546]
Since [−2−4511]=[3546], indeed AB=BA. Order of actions matters.
Recall Solution
WHY S is guaranteed symmetric. Transpose it and use two facts — transpose distributes over addition, (X+Y)⊤=X⊤+Y⊤, and (A⊤)⊤=A:
S⊤=(21(A+A⊤))⊤=21(A⊤+(A⊤)⊤)=21(A⊤+A)=S.
Since S⊤=S, Sis symmetric — no matter what A was.
WHY K is guaranteed skew. Same move, watching the sign:
K⊤=(21(A−A⊤))⊤=21(A⊤−A)=−21(A−A⊤)=−K.
Since K⊤=−K, Kis skew-symmetric (and so its diagonal must be zero, since kii=−kii).
Now the numbers.A⊤=[4268].
S=21[88816]=[4448],K=21[04−40]=[02−20]
Check: S+K=[4628]=A ✅, and K has zero diagonal ✅ (exactly as the proof predicted).
Recall Solution
(AB)⊤=[−25−411].
B⊤=[01−12],A⊤=[1234], so
B⊤A⊤=[0⋅1+(−1)⋅21⋅1+2⋅20⋅3+(−1)⋅41⋅3+2⋅4]=[−25−411]
Matches (AB)⊤. The order reversed — socks-and-shoes.
Part 1. Take A=[1000],B=[0001]. Using (AB)ij=∑kaikbkj (row i of A dotted with column j of B, legal since inner dims 2=2):
AB=[1⋅0+0⋅00⋅0+0⋅01⋅0+0⋅10⋅0+0⋅1]=[0000]
Yet neither A nor B is the zero matrix — zero divisors exist. (Here BA also happens to be 0, so this pair does not proveBA can be nonzero.)
Part 2 — the edge case. Take A=[0010],B=[1000].
WHY these:A kills the first column and shifts the second up; B keeps only the first column. Computing entry by entry with the same summation rule (AB)ij=∑kaikbkj:
AB=[0⋅1+1⋅00⋅1+0⋅00⋅0+1⋅00⋅0+0⋅0]=[0000]
But swapping the order, again by (BA)ij=∑kbikakj:
BA=[1⋅0+0⋅00⋅0+0⋅01⋅1+0⋅00⋅1+0⋅0]=[0010]=0
So AB=0 definitely does not force BA=0. The single fact you may conclude from AB=0 is: nothing about A or B individually being zero.
Recall Solution
N2=[0⋅0+1⋅000⋅1+1⋅00]=[0000]
As a linear map, N sends the y-axis onto the x-axis and the x-axis to 0. Apply it twice: everything first lands on the x-axis, then the x-axis is squashed to 0 — that is exactly nilpotency with k=2.
Reading the figure below (caption: "N=[[0,1],[0,0]] is nilpotent: N2=0"). The horizontal line is the x-axis, the vertical line is the y-axis (both drawn in navy). The orange arrow is e1=[10], the unit vector pointing along the x-axis; the violet arrow is e2=[01], the unit vector pointing up the y-axis. The magenta arrow shows the imageNe2: it lies flat along the x-axis and lands exactly on e1, because N[01]=[10]. The lone navy dot at the origin marks Ne1=[00] — the x-axis vector is crushed to the origin. So one application flattens the whole plane onto the x-axis, and a second application collapses that line to 0: the picture is the statement N2=0.
Recall Solution
Orthogonal means Q⊤Q=I. Here Q⊤=21[1−111], so
Q⊤Q=21[1−111][11−11]=21[2002]=[1001]=I
✅ orthogonal. Its columns are unit length and perpendicular; it is a rotation by 45∘ (it preserves lengths and angles). See the parent's link to Eigenvalues and Eigenvectors for why such matrices are special.
WHAT: strip variables — the matrix is the system (parent's core idea).
A=[2113],b=[510].
For a 2×2, A−1=detA1[d−c−ba] (from Determinant and Inverse of a Matrix). Here detA=2⋅3−1⋅1=5=0, so A is non-singular.
A−1=51[3−1−12],x=51[3−1−12][510]=51[515]=[13]
So x=1,y=3. Check: 2(1)+3=5 ✅, 1+3(3)=10 ✅. Links to Systems of Linear Equations.
Recall Solution
v is 2×1, v⊤ is 1×2.
v⊤v: (1×2)(2×1)=1×1 — a single number, the dot product12+22=5 (squared length).
vv⊤: (2×1)(1×2)=2×2 — a full matrix:
vv⊤=[12][12]=[1224]
This is symmetric (as vv⊤ always is, since (vv⊤)⊤=vv⊤). Note it is not a projection here: a projector P must satisfy P2=P, but (vv⊤)2=(v⊤v)vv⊤=5vv⊤=vv⊤. Only after dividing by v⊤v — i.e. v⊤vvv⊤, which uses a unit direction — do you get a genuine projection onto the line through v.
Recall Solution
Proof: group ABC=(AB)C. Then (ABC)⊤=((AB)C)⊤=C⊤(AB)⊤=C⊤B⊤A⊤, applying the reversal law twice.
Check.AB=[1213], ABC=[2413], so (ABC)⊤=[2143].
C⊤B⊤A⊤=[2001][1101][1021]=[2101][1021]=[2143] ✅
Let M=A⊤A. Take its transpose and use the reversal law:
M⊤=(A⊤A)⊤=A⊤(A⊤)⊤=A⊤A=M.
Since M⊤=M, M is symmetric — no matter what A was. (We used (A⊤)⊤=A.)
Recall Solution
Step 1 — write the trace as a double sum. By definition the diagonal entry (AB)ii is row i of A dotted with column i of B, i.e. (AB)ii=∑kaikbki. Summing over the diagonal:
tr(AB)=∑i(AB)ii=∑i∑kaikbki.Step 2 — swap the order of the two sums. Both i and k run over the same finite index set, and each term aikbki is just an ordinary number; a finite sum of numbers may be added in any order (this is why the interchange is legal — no limits, no convergence worries). So
∑i∑kaikbki=∑k∑iaikbki.Step 3 — rename and recognise BA. Since numbers commute, aikbki=bkiaik. Reading the inner sum over i: ∑ibkiaik is exactly row k of B dotted with column k of A, i.e. (BA)kk. Hence
∑k∑ibkiaik=∑k(BA)kk=tr(BA).
Chaining Steps 1–3 gives tr(AB)=tr(BA).
Check.AB=[1⋅0+2⋅13⋅0+4⋅11⋅1+2⋅03⋅1+4⋅0]=[2413], so tr(AB)=2+3=5.
BA=[0⋅1+1⋅31⋅1+0⋅30⋅2+1⋅41⋅2+0⋅4]=[3142], so tr(BA)=3+2=5 ✅. (Note AB=BA, yet the traces agree — as proved.)
Recall Solution
Transpose A=S+K: A⊤=S⊤+K⊤=S−K (using S⊤=S, K⊤=−K).
Now we have two equations:
A=S+K,A⊤=S−K.
Add them: A+A⊤=2S⇒S=21(A+A⊤). Subtract: A−A⊤=2K⇒K=21(A−A⊤).
The split is forced — there is exactly one symmetric+skew decomposition.
Recall Solution
(Qx)⊤(Qy)=x⊤Q⊤Qy=x⊤Iy=x⊤y.
Since the dot product encodes lengths and angles, Q leaves both unchanged: orthogonal maps are exactly the rigid rotations/reflections. Setting y=x shows lengths are preserved.