22 min read
Matrices in Real Computation
Matrices are widely used in computing — from solving real-world systems to moving objects in computer graphics.
Matrices at Work
Computers use matrices constantly: to rotate and scale images and models in graphics and games, and to solve large systems of equations that describe mixtures, networks, currency exchange, and much more. The same methods from this course scale up to much larger matrices solved automatically by computers.
Example 1 — a real mixture problem
A shop mixes cashews (3/kg) to make kg of mix costing $58 in total. How many kg of each are used?
- Let = kg of cashews, = kg of peanuts. Set up equations: , and
- Write as a matrix equation: A = , B =
- det(A) = () − () = . So = () ×
- Multiply by B: = () + () = . = () + () =
Answer: kg cashews, kg peanuts. Check: ✓, and () + () = ✓
Practice
Your answer
More lessons in Matrices and Determinants · Next: Review and Practice · Previous: Area Scale Factor and the Determinant
