Chapter 7: Multivariate Regression Flashcards
1
Q
How to think when multiplying two matrices according to the dot product?
A
Each row times each column (corresponding order). Sum all multiplications for each procedure.
2
Q
How to take the inverse of a (2x2) matrix? Describe the procedure using X = [a b, c d]
A
X^(-1) = 1/det(X) [d -b, -c a] = 1/(ad-bc) [d -b, -c a]