Mathfolis

Matrices Modeling Contexts

Unit 4 · Functions Involving Parameters, Vectors, and Matrices

What AP Precalc asks here

Matrices show up in three modeling settings: encoding linear systems as Ax=bA \vec x = \vec b (solve via x=A1b\vec x = A^{-1} \vec b); two-state transition processes where a stochastic matrix maps the current distribution to the next; and 2D transformations on points (rotations, reflections, scalings) in coordinate-driven contexts like robotics or game programming.

Matrix modeling forms

Linear system
Ax=b    x=A1b (if invertible)A \vec x = \vec b \;\Rightarrow\; \vec x = A^{-1} \vec b \text{ (if invertible)}
Transition matrix step
sn+1=Tsn\vec s_{n+1} = T \vec s_n
AP Tip: A stochastic transition matrix has columns that each sum to 1 — the probabilities of arriving in each state from a single starting state.
Type 1

Linear system as a matrix equation

Write the system as Ax=bA \vec x = \vec b, then solve with x=A1b\vec x = A^{-1} \vec b.

Example 1
Solve {2x+3y=8x+2y=5\begin{cases} 2x + 3y = 8 \\ x + 2y = 5 \end{cases} using the inverse of the coefficient matrix. (A) (x,y)=(1,2)(x, y) = (1, 2) (B) (x,y)=(2,1)(x, y) = (2, 1) (C) (x,y)=(3,1)(x, y) = (3, 1) (D) (x,y)=(1,3)(x, y) = (1, 3)

Practice more of this type— AI-generated · always-new problems

Generate Problems →
Type 2

Transition matrix for two-state systems

Multiply current state by the transition matrix to get the next state.

Example 2
A two-state system has transition matrix T=(0.80.20.20.8)T = \begin{pmatrix} 0.8 & 0.2 \\ 0.2 & 0.8 \end{pmatrix}. If the current distribution is (0.50.5)\begin{pmatrix} 0.5 \\ 0.5 \end{pmatrix}, what is the distribution after one step? (A) (0.5,0.5)(0.5, 0.5) (B) (0.6,0.4)(0.6, 0.4) (C) (0.8,0.2)(0.8, 0.2) (D) (0.4,0.6)(0.4, 0.6)

Practice more of this type— AI-generated · always-new problems

Generate Problems →
Type 3

Apply rotation/transformation in a context

Use the rotation or reflection matrix on the contextual point.

Example 3
Rotate the point (2,0)(2, 0) by 90° counterclockwise about the origin using the matrix R=(0110)R = \begin{pmatrix} 0 & -1 \\ 1 & 0 \end{pmatrix}. What is the result? (A) (0,2)(0, 2) (B) (2,0)(2, 0) (C) (0,2)(0, -2) (D) (2,0)(-2, 0)

Practice more of this type— AI-generated · always-new problems

Generate Problems →