Processing math: 100%
  • 1 System of Linear Equations
    • 1.1 Linear Equation
    • 1.2 System of Linear Equations
    • 1.3 Augmented Form

1 System of Linear Equations

Go to the MLX, M, PDF, or HTML version of this file. Go back to Introductory Mathematics for Economists with Matlab (bookdown site). Also see M4Econ and MEconTools.

See also: System of Linear Equations

See also: Solving for Two Equations and Two Unknowns

See also: System of Linear Equations, Row Echelon Form

1.1 Linear Equation

If we have an equation: ax1+bx2+cx3=o, we can write this in matrix form:

  • [abc][x1x2x3]=[ax1+bx2+cx3]=[o]

This is a linear equation, where we have a sequence of variables multiplied by coefficients, more generally, this is a linear equation with n unknown variables, and n+1 known coefficients, note the a at the beginning:

  • a+β1x1+β2x2+...+βn1xn1+βnxn=0

In 2 dimension (with two unknowns), this is a line; in 3 dimension, this is a surface.

1.2 System of Linear Equations

We have a system of linear equations, 3 equations and 3 unknowns:

  • [abcdefghi][x1x2x3]=[ax1+bx2+cx3dx1+ex2+fx3gx1+hx2+ix3]=[opq]

We can define these:

  • W=[abcdefghi]

  • X=[x1x2x3]

  • v=[opq]

1.3 Augmented Form

We can write W and v together like this, this is the augmented matrix of the system of linear equations:

  • Augmented Matrix:[abc|odef|pghi|q]