- Authors

- Name
- Youngju Kim
- @fjvbn20031
Engineering Math Series 11: Matrices and Linear Systems
The starting point of linear algebra is not the matrix itself but the perspective of expressing and manipulating multiple equations at once. In engineering mathematics, a matrix is not a table of numbers but a language that compresses system structure.
Linear Systems Come First
Consider the following system of equations.
Writing this in matrix form gives
That is, the form
How to View Matrices
Matrix can be seen as a linear transformation that sends one vector to another. It is not just a table but a rule that stretches, shrinks, and rotates space.
With this perspective, three tasks all become unified under the same language:
- Solving systems of equations
- Changing coordinates
- Analyzing system structure
Worked Example
Let us directly solve the system above. From the second equation,
Substituting into the first equation,
gives
so
From the matrix perspective, this solution means "the matrix sends the vector to ."
Why Linearity Is Important
When linearity holds, the superposition principle works. This is very important in engineering.
- The effects of multiple inputs can be combined
- The computational structure is regular
- It leads to more powerful tools like eigenvalues, diagonalization, and least squares
Nonlinear problems are more common in reality, but linear problems remain central tools due to their analyzability and designability.
Engineering Applications
Circuit Network Analysis
Using Kirchhoff's laws, the relationships among multiple currents and voltages are organized as systems of linear equations.
Structural Analysis
Under the small deformation assumption, force-displacement relationships are modeled as linear systems.
Machine Learning
Linear regression is ultimately a problem of solving matrix equations, and data processing mostly runs on matrix operations.
When Solutions Do Not Exist or Are Not Unique
Not every linear system has a unique solution.
- No solution: contradictory equations
- Infinitely many solutions: equations are not independent
- Unique solution: the matrix provides sufficient information
This distinction becomes clearer when we learn about determinants and rank later.
Common Mistakes
Viewing matrices as mere computation objects
Matrices carry structure. You must read what each column and row means.
Mixing up the variable order
In , changing the vector order changes the meaning of the entire equation.
Thinking of substitution and matrix perspectives separately
Even if you use substitution or elimination by hand, it is good not to lose sight of the fact that the underlying structure is the same linear system.
One-Line Summary
Matrices are the common language of engineering mathematics for expressing and analyzing multiple linear relationships at once.
Next Post Preview
In the next post, we will organize the core tools for actually solving linear systems: elimination, inverse matrices, and determinants.
References
- Erwin Kreyszig, Advanced Engineering Mathematics, 10th Edition
- Gilbert Strang, Introduction to Linear Algebra
- David C. Lay, Linear Algebra and Its Applications