Systems of Linear Equations and Matrix Methods

Linear Systems and Intersection Outcomes

  • Linear systems describe intersections of lines or planes, resulting in three possible outcomes: a unique solution (one intersection point), infinitely many solutions (overlapping lines/planes), or no solution (parallel lines/planes).
  • The solution space is defined as the set containing all possible solutions to a system.
  • Systems are classified as consistent if at least one solution exists, and inconsistent if no solution can be found.

Gaussian and Gauss-Jordan Elimination

  • Gaussian elimination with back substitution involves converting an augmented matrix into row echelon form (refref) using elementary row operations:
    • Swapping two equations.
    • Multiplying an equation by a non-zero scalar.
    • Adding a scalar multiple of one equation to another.
  • Gauss-Jordan elimination extends this process to reach reduced row echelon form (rrefrref), where the first non-zero entry (pivot) in each row is 11 and all entries above and below these pivots are 00.
  • The rrefrref of a matrix is unique, whereas the refref is not.

Matrix Representation and Rank

  • Systems of equations are represented by a coefficient matrix (AA) and an augmented matrix (AbA|b).
  • The rank (rankrank) of a matrix is defined as the number of pivots in its echelon form.
  • A system is inconsistent if there is a pivot in the final column of its augmented matrix, which corresponds to an equation such as 0x+0y=10x + 0y = 1.
  • Consistent systems follow specific rank criteria based on the number of unknowns (nn):
    • Unique solution: rank(A)=rank(Ab)=nrank(A) = rank(A|b) = n.
    • Infinitely many solutions: rank(A)=rank(Ab)<nrank(A) = rank(A|b) < n.
  • Free variables occur when columns lack a pivot; these are expressed using parameters such as ss and tt to define a hyperplane.

Model Attributes and Systems Types

  • Underdetermined systems have fewer equations than unknowns and typically result in infinitely many solutions or no solution; they cannot have a unique solution.
  • Overdetermined systems have more equations than unknowns and commonly have no solution, though unique or infinite solutions are possible.
  • Number of free variables is calculated as: total number of unknownsrank(A)\text{total number of unknowns} - rank(A).

Problem-Solving Applications

  • Linear modeling can determine unit costs, such as the prices for figs, guavas, and honeydews purchased by Hewey (3,2,13, 2, 1 for 88), Dewey (1,1,11, 1, 1 for 44), and Louis (10,2,210, 2, 2 for 1616).
  • Weight distributions can be solved by balancing conditions, such as determining weights for Bruce, Alex, Doris, and Chris given a total group weight of 500kg500\,kg.
  • Systems can also be solved within the complex number plane, utilizing i=1i = \sqrt{-1}, for equations like (1+i)xiy=3(1 + i)x - iy = -3 and 2x2y=3i2x - 2y = 3i.