Lahenda matemaatika probleem
Võrrandid, derivaadid, integraalid, maatriksid, kolmnurgad, PRIMES, statistika ~ või sõna probleem juhendaja murrab osad.
[[1,1],[1,2],[1,3]] * [[1],[2]]
\left[\begin{matrix}1 & 1\\1 & 2\\1 & 3\end{matrix}\right] \left[\begin{matrix}1\\2\end{matrix}\right]
Samm-sammult
- \left[\begin{matrix}1 & 1\\1 & 2\\1 & 3\end{matrix}\right] \left[\begin{matrix}1\\2\end{matrix}\right]
A 3×2 times a 2×1 gives a 3×1 matrix. Entry (i, j) is row i of A dotted with column j of B.
- c_{11} = (1)(1) + (1)(2) = 3
- c_{21} = (1)(1) + (2)(2) = 5
- c_{31} = (1)(1) + (3)(2) = 7
- AB = \left[\begin{matrix}3\\5\\7\end{matrix}\right]
Vastuse avalikustamine
AB = \left[\begin{matrix}3\\5\\7\end{matrix}\right]