MATH 323 Lecture 1

From Notes
Jump to navigation Jump to search

« previous | Tuesday, August 28, 2012 | next »


Course Information

2 in-class exams and a final (all in C E 222)

  1. 7th Week
  2. 12th Week
  3. TBA

Basic Scientific Calculator is allowed on exam (TI-34)


Chapter 1: Matrices and Systems of Equations

A system is a set of unknown variables x1,x2,,xn and functions f1(x1,x2,,xn)=0,f2(),.


  • Linear functions are function for which the exponent on all unknown variables (x's) is 1. Can be plotted as a line/plane in 2D/3D space
    • f(x1,,xn)=a1x1+a2x2++anxn+b
  • Quadratic functons are non-linear functions for which the largest exponent on all x's is 2


Consider systems of linear equations, each function is often written in form a1x1+a2x2++anxn=b

{a11x1+a12x2++a1nxn=b1a21x1+a22x2++a2nxn=b2am1x1+am2x2++amnxn=bm

There are m equations and n unknowns. We will refer to this system as a m×n system.

Rules

  1. The order in which any two equations are written may be interchanged
  2. Both sides of an equation may be multiplied by the same non-zero real number
  3. A multiple of one equation may be added to / subtracted from another equation

These are more applicable to lesser systems of equations, and leads to a system that is equivalent to the original.

Examples

  1. {x1+2x2=52x1+3x2=8 (2 × 2, the unique solution to which is x=(1,2))
  2. {x1x2+x3=22x1+x2x3=4 (2 × 3, solutions are {(2,β,β)β}
  3. {x1+x2=2x1x2=1x1=4 (3 × 2, no solution that satisfies answers)

In examples 1 & 2, the systems were consistent, but since the solution set for 3 was empty, it is inconsistent

2 × 2 Systems

In general, {a11x1+a12x2=b1a21x1+a22x2=b2

Plotting each equation yields a line.

  1. If a unique solution exists, it will be at the coordinates of the lines' intersection ({x_1}^0, {x_2}^0
  2. If empty solutions (inconsistent), both lines will be parallel
  3. If infinite solutions, both lines are the same line

Equivalent Systems

Given 2 systems I and II, with potentially different number of equations but same number of unknowns (m×n and k×n), they are called equivalent if they share the same solution set.

(Prof's notation: III)


Consider the following systems:

{3x1+2x2x3=2x2=32x3=4

{3x1+2x2x3=23x1x2+x3=53x1+2x2+x3=2

The two systems are equivalent because they both have unique solutions (-2, 3, 2)

Suppose we take two equations fi,fj,0i,jm from a m×n system and replace fj by fj+αfi,α, the original system and the new system are equivalent. The opposite direction also applies: fj=fjαfi

Strict Triangular Form

Given a m×n system of equations where m=n, in kth equation, the first k1 variables/coefficient are all zero and the coefficient of xk is not 0

a11x1++a1nxn=b10x1+a22x2++a2nxn=b20x1+0x2+a33x3++a3nxn=b30x1+0x2++0xn1+amnxn=bm1

There is always a unique solution to a system of this form.

Solve the bottom 1-term equation, then plug that back into the previous equation, and continue back-substitution until all equations are satisfied.

Goal of rules is to reduce a system into strict triangular form:

{x1+2x2+x3=33x1x23x3=12x1+3x2+x3=4

(2)3(1)7x26x3=10 (3)2(1)x1x3=2 (3)17(2)17x3=47

Solution is (3,-2,4)

Homework

Section 1.1: 1c, 2, 3, 5cd, 6ceh, 7, 8

Section 1.2: 3, 5egi, 8, 9