Why are linear equations usually written down as matrices?

Click For Summary

Discussion Overview

The discussion revolves around the reasons for representing systems of linear equations using matrices instead of traditional equation forms. It explores the advantages of matrix notation in terms of brevity and computational efficiency, as well as the potential for applying matrix operations such as inverses.

Discussion Character

  • Exploratory, Technical explanation, Conceptual clarification

Main Points Raised

  • Some participants suggest that matrices serve as a shorthand for writing systems of linear equations, making them easier to manage.
  • Others argue that matrices provide additional advantages, such as the ability to use matrix inverses to solve systems of equations.
  • A participant presents a specific example of a system of equations and demonstrates how it can be expressed in matrix form, highlighting the symbolic representation Ax = b.
  • One contributor notes that using matrices simplifies the process of performing multiple linear operations, reducing clutter in calculations.

Areas of Agreement / Disagreement

Participants generally agree on the utility of matrices as a shorthand for linear equations and their computational advantages, but there is no consensus on whether there are aspects of linear equations that matrices cannot address.

Contextual Notes

Some assumptions regarding the properties of matrices and their inverses are not explicitly stated, and the discussion does not resolve the extent to which matrices may be superior to traditional equation forms in all contexts.

japplepie
Messages
93
Reaction score
0
I've been taught that for any system of linear equations, it has a corresponding matrix.

Why do people sometimes use systems of linear equations to describe something and other times matrices?

Is it all just a way of writing things down faster or are there things you could do to matrices that you couldn't do to linear equations?
 
Physics news on Phys.org
japplepie said:
I've been taught that for any system of linear equations, it has a corresponding matrix.

Why do people sometimes use systems of linear equations to describe something and other times matrices?

Is it all just a way of writing things down faster or are there things you could do to matrices that you couldn't do to linear equations?
Mostly matrices are a shorthand way of writing a system of linear equations, but there is one other advantage for certain systems : the ability to use a matrix inverse to solve the system.

For example, suppose we have this system:
2x + y = 5
x + 3y = 5

This system can be written in matrix form as:
##\begin{bmatrix} 2 & 1 \\ 1 & 3 \end{bmatrix}\begin{bmatrix} x \\ y\end{bmatrix} = \begin{bmatrix} 5 \\5 \end{bmatrix}##
Symbolically, the system is Ax = b, where A is the matrix of coefficients on the left, and b is the column vector whose entries are 5 and 5. (x is the column vector of variables x and y.)

Because I cooked this example up, I know that A has an inverse; namely ##A^{-1} = \frac 1 5 \begin{bmatrix} 3 & -1 \\ -1 & 2 \end{bmatrix}##
If I apply this inverse to both sides of Ax = b, I get ##A^{-1}Ax = A^{-1}b = \frac 1 5 \begin{bmatrix} 3 & -1 \\ -1 & 2 \end{bmatrix} \begin{bmatrix} 5 \\5 \end{bmatrix}##
##= \begin{bmatrix} 2 \\1 \end{bmatrix}##

From this I see that x = 2 and y = 1. You can check that this is a solution by substituting these values in the system of equations.
 
  • Like
Likes   Reactions: japplepie and suremarc
Mark44 said:
Mostly matrices are a shorthand way of writing a system of linear equations, but there is one other advantage for certain systems : the ability to use a matrix inverse to solve the system.

For example, suppose we have this system:
2x + y = 5
x + 3y = 5

This system can be written in matrix form as:
##\begin{bmatrix} 2 & 1 \\ 1 & 3 \end{bmatrix}\begin{bmatrix} x \\ y\end{bmatrix} = \begin{bmatrix} 5 \\5 \end{bmatrix}##
Symbolically, the system is Ax = b, where A is the matrix of coefficients on the left, and b is the column vector whose entries are 5 and 5. (x is the column vector of variables x and y.)

Because I cooked this example up, I know that A has an inverse; namely ##A^{-1} = \frac 1 5 \begin{bmatrix} 3 & -1 \\ -1 & 2 \end{bmatrix}##
If I apply this inverse to both sides of Ax = b, I get ##A^{-1}Ax = A^{-1}b = \frac 1 5 \begin{bmatrix} 3 & -1 \\ -1 & 2 \end{bmatrix} \begin{bmatrix} 5 \\5 \end{bmatrix}##
##= \begin{bmatrix} 2 \\1 \end{bmatrix}##

From this I see that x = 2 and y = 1. You can check that this is a solution by substituting these values in the system of equations.
I see, thank you very much!
 
Essentially, matrices allow you to write any system of linear equations as the single equation "Ax= b", the simplest form.
 
The shorthand notation provided by the matrix is very beneficial. Keeping track of the variables that the matrix operates on often clutters up the calculations. If you compose a sequence of linear operations ( E = A * B * C * D ), you can do the matrix manipulations easily. If you try to name and keep track of all the intermediate values, it is just an unnecessary mess. ( x2 = Dx1; x3 = Cx2; x4 = Bx3; x5 = Ax4; so x5 = E x1 )
 

Similar threads

  • · Replies 19 ·
Replies
19
Views
4K
  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 2 ·
Replies
2
Views
1K
Replies
2
Views
2K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K