Precalculus Flashcards: Using Matrices To Represent Manipulate Data

Study Using Matrices To Represent Manipulate Data in Precalculus with focused flashcards that help you recognize the idea, recall the key rule, and apply it in practice-style prompts.

Precalculus

Using Matrices To Represent Manipulate Data

0 mastered0 still learning

0% Complete

QUESTION
1/ 38

Identify whether ABAB is defined if AA is 2×32\times 3 and BB is 2×22\times 2.

Tap card or press Space to flip

ANSWER

Not defined, since 323\neq 2 for the inner dimensions. Column count of AA doesn't match row count of BB.

How well did you know it?

Card 1 / 38

What this deck covers

This deck focuses on Using Matrices To Represent Manipulate Data, giving you a quick way to review the definitions, rules, and examples that matter most for Precalculus.

How to use these flashcards

Work through these flashcards in short sessions. Try to answer each prompt before flipping the card, then revisit any cards you miss until the explanation feels automatic.

All flashcards

Flashcard 1: Identify whether ABAB is defined if AA is 2×32\times 3 and BB is 2×22\times 2.

Answer: Not defined, since 323\neq 2 for the inner dimensions. Column count of AA doesn't match row count of BB.

Flashcard 2: Compute 2A2A for A=[1305]A=\begin{bmatrix}-1&3\\0&5\end{bmatrix}.

Answer: [26010]\begin{bmatrix}-2&6\\0&10\end{bmatrix}. Multiply each entry by 22: 2(1)=22(-1)=-2, 2(3)=62(3)=6, 2(0)=02(0)=0, 2(5)=102(5)=10.

Flashcard 3: What are the dimensions of ABAB if AA is m×nm \times n and BB is n×pn \times p?

Answer: ABAB is m×pm \times p. Product dimensions: outer dimensions of the factors.

Flashcard 4: What does the incidence matrix entry mean if column ee is edge uvu\to v in a directed graph?

Answer: In column ee: 1-1 at row uu, +1+1 at row vv, and 00 elsewhere. Shows edge direction: 1-1 at source, +1+1 at destination.

Flashcard 5: What is the inverse formula for a 2×22\times 2 matrix A=[abcd]A=\begin{bmatrix}a&b\\c&d\end{bmatrix} when invertible?

Answer: A1=1adbc[dbca]A^{-1}=\frac{1}{ad-bc}\begin{bmatrix}d&-b\\-c&a\end{bmatrix}. Formula uses determinant adbcad-bc and swapped/negated entries.

Flashcard 6: Compute ABAB for A=[1234]A=\begin{bmatrix}1&2\\3&4\end{bmatrix} and B=[21]B=\begin{bmatrix}2\\-1\end{bmatrix}.

Answer: [02]\begin{bmatrix}0\\2\end{bmatrix}. 1(2)+2(1)=01(2)+2(-1)=0 and 3(2)+4(1)=23(2)+4(-1)=2.

Flashcard 7: What do the entries aija_{ij} represent in a data matrix AA (rows and columns)?

Answer: aija_{ij} is the value in row ii and column jj of AA. Standard matrix notation: row index first, column index second.

Flashcard 8: What is the identity matrix InI_n and what key property does it satisfy with An×nA_{n\times n}?

Answer: InI_n has 11 on the diagonal; AIn=InA=AAI_n=I_nA=A. Identity matrix acts as multiplicative identity for square matrices.

Flashcard 9: Identify the meaning of a payoff matrix entry pijp_{ij} in a two-player game.

Answer: pijp_{ij} is the payoff when Player 11 uses strategy ii and Player 22 uses strategy jj. Row player's payoff for their strategy choice against column player's choice.

Flashcard 10: Identify the matrix that leaves any compatible matrix AA unchanged under multiplication.

Answer: The identity matrix II: IA=AIA=A and AI=AAI=A. Identity matrix acts as multiplicative identity element.

Flashcard 11: Compute ABAB for A=[12]A=\begin{bmatrix}1&2\end{bmatrix} and B=[34]B=\begin{bmatrix}3\\4\end{bmatrix}.

Answer: AB=[11]AB=\begin{bmatrix}11\end{bmatrix}. 1×3+2×4=3+8=111 \times 3 + 2 \times 4 = 3 + 8 = 11.

Flashcard 12: What is the entry relationship between AA and its transpose ATA^T?

Answer: (AT)ij=aji(A^T)_{ij}=a_{ji}. Row jj, column ii of AA becomes row ii, column jj of ATA^T.

Flashcard 13: What does the row sum of an adjacency matrix represent in a directed network?

Answer: Row sum of row ii equals the out-degree of node ii. Counts edges leaving node ii.

Flashcard 14: Compute A+BA+B for A=[1234]A=\begin{bmatrix}1&2\\3&4\end{bmatrix} and B=[5678]B=\begin{bmatrix}5&6\\7&8\end{bmatrix}.

Answer: [681012]\begin{bmatrix}6&8\\10&12\end{bmatrix}. Add corresponding entries: 1+5=61+5=6, 2+6=82+6=8, 3+7=103+7=10, 4+8=124+8=12.

Flashcard 15: What is the transpose of a matrix A=[aij]A=[a_{ij}] in terms of entries?

Answer: AT=[aji]A^T=[a_{ji}]. Transpose swaps row and column indices.

Flashcard 16: What does the transpose ATA^T do to the dimensions of Am×nA_{m\times n}?

Answer: It swaps dimensions: ATA^T is n×mn\times m. Rows become columns and columns become rows.

Flashcard 17: What does the column sum of an adjacency matrix represent in a directed network?

Answer: Column sum of column jj equals the in-degree of node jj. Counts edges entering node jj.

Flashcard 18: What is the condition on dimensions for the product ABAB to be defined?

Answer: If AA is m×nm \times n and BB is n×pn \times p. Inner dimensions must match for matrix multiplication.

Flashcard 19: What does the entry aija_{ij} represent in a data matrix AA?

Answer: aija_{ij} is the value in row ii, column jj of AA. Standard notation for matrix entries uses row-column indexing.

Flashcard 20: Find c12c_{12} for A=[2103]A=\begin{bmatrix}2&1\\0&3\end{bmatrix} and B=[1421]B=\begin{bmatrix}1&4\\2&-1\end{bmatrix} where C=ABC=AB.

Answer: c12=7c_{12}=7. Row 1 of AA dot column 2 of BB: 2(4)+1(1)=72(4)+1(-1)=7.

Flashcard 21: Compute the row sums of A=[102314]A=\begin{bmatrix}1&0&2\\3&-1&4\end{bmatrix} using A1A\mathbf{1} with 1=[111]\mathbf{1}=\begin{bmatrix}1\\1\\1\end{bmatrix}.

Answer: A1=[36]A\mathbf{1}=\begin{bmatrix}3\\6\end{bmatrix}. Multiplying by ones vector sums each row.

Flashcard 22: What is the entry formula for matrix addition: (A+B)ij(A+B)_{ij} equals what?

Answer: (A+B)ij=aij+bij(A+B)_{ij}=a_{ij}+b_{ij}. Add corresponding entries from the same position in each matrix.

Flashcard 23: What is the dot-product formula for an entry of a product matrix C=ABC=AB?

Answer: cij=k=1naikbkjc_{ij}=\sum_{k=1}^{n} a_{ik}b_{kj}. Row ii of AA dot column jj of BB gives entry (i,j)(i,j).

Flashcard 24: What scalar makes a 2×22\times 2 matrix A=[abcd]A=\begin{bmatrix}a&b\\c&d\end{bmatrix} non-invertible?

Answer: Non-invertible when adbc=0ad-bc=0. Determinant zero means matrix is singular.

Flashcard 25: For a payoff matrix PP and mixed strategies rr (rows) and cc (columns), what is the expected payoff formula?

Answer: Expected payoff is rTPcr^TPc. Weighted average of payoffs using probability vectors.

Flashcard 26: What does multiplying a payoff matrix PP by a strategy vector xx compute in PxPx?

Answer: PxPx gives expected payoffs for each row strategy (given column mix xx). Weighted average of payoffs based on opponent's strategy probabilities.

Flashcard 27: What is the entry formula for scalar multiplication: (kA)ij(kA)_{ij} equals what?

Answer: (kA)ij=kaij(kA)_{ij}=k\,a_{ij}. Multiply every entry by the scalar kk.

Flashcard 28: Compute ATA^T for A=[120534]A=\begin{bmatrix}1&-2&0\\5&3&4\end{bmatrix}.

Answer: [152304]\begin{bmatrix}1&5\\-2&3\\0&4\end{bmatrix}. Swap rows and columns: first row becomes first column, etc.

Flashcard 29: What is the condition for a square matrix AA to be invertible using A1A^{-1}?

Answer: There exists A1A^{-1} with AA1=IAA^{-1}=I and A1A=IA^{-1}A=I. Inverse undoes multiplication from either side.

Flashcard 30: What are the dimensions of a matrix with mm rows and nn columns?

Answer: Dimensions are m×nm \times n. Matrix size is always expressed as rows × columns.

Flashcard 31: What does the product AxAx represent when AA is a data matrix and xx is a weight vector?

Answer: A weighted combination of columns of AA (a linear combination). Each column is weighted by corresponding entry in xx.

Flashcard 32: What condition must be true about dimensions to add matrices Am×n+Bm×nA_{m\times n}+B_{m\times n}?

Answer: They must have the same dimensions m×nm\times n. Matrix addition requires element-wise operations, so dimensions must match.

Flashcard 33: What does the adjacency matrix entry aija_{ij} mean for a directed network?

Answer: aij=1a_{ij}=1 means an edge from node ii to node jj (else 00). Binary indicator: 11 if directed edge exists, 00 otherwise.

Flashcard 34: In a directed network incidence matrix, what do entries 1-1, +1+1, and 00 mean for a node-edge pair?

Answer: 1-1 leaves node, +1+1 enters node, 00 not incident. Signs indicate edge direction relative to node.

Flashcard 35: What is the entry formula for a product matrix C=ABC=AB, specifically cijc_{ij}?

Answer: cij=k=1naikbkjc_{ij}=\sum_{k=1}^{n} a_{ik}b_{kj}. Dot product of row ii from AA with column jj from BB.

Flashcard 36: In a payoff matrix, what does the entry pijp_{ij} represent for row player strategy ii and column player strategy jj?

Answer: pijp_{ij} is the payoff to the specified player for outcome (i,j)(i,j). Entry shows reward/cost for strategy combination.

Flashcard 37: What dimension condition is required to multiply Am×nBn×pA_{m\times n}B_{n\times p}?

Answer: The inner dimensions must match: AA has nn columns and BB has nn rows. Number of columns in first matrix must equal rows in second.

Flashcard 38: What is the key property of transpose for a product (AB)T(AB)^T?

Answer: (AB)T=BTAT(AB)^T=B^TA^T. Order reverses when transposing a product.