Midterm Review Flashcards

1
Q

Vector Addition

A

For x = [x1, x2] and y = [y1, y2]; x + y = [x1+y1, x2+y2]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Scalar Multiplication

A

If t is a real # (scalar), then tx = [tx1, tx2]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Linear Combination

A

Given any # of vectors, a lin. comb. is sum of scalar multiples of the given vectors. Any vector x = [x1, x2] can be written as x = x1[1, 0] + x2[0, 1]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Zero Vector

A

[0, 0] , denoted 0 with length but no direction

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Vector Equation of a Line Through 0

A

x = td, teR. The set {td : teR} can be used to describe points on the line.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Vector Equation of a Line not Through 0

A

Find/Use a point on the line and get a vector p whose head is at that point, and add p to any td with teR.
Equation: x = p + td, teR.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Find the Equation of a Line through (0, 0) parallel to Existing Line?

A

Use the same direction vector td.

x = td, teR

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Parametric Equation

A

If x = [x1, x2] = [4, -3] + t[3, -1] then the following is the pe
x1 = 4 +3t
x2 = -3 -t

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Scalar Equation

A

From parametric equ solve all equations for the scalar (eg. t) and equate then solve for the form ax1 + bx2 +… = d

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Directed Line Segments

A

Free vectors which are allowed to be translated parallel to themselves.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Parallel Vectors

A

u and v are said to be parallel if they are scalar multiples of each other. 0 = 0u but u isn’t a sm of 0 yet 0 and u are parallel.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Properties of Vectors in R^n

A
For any x, y, w eRn and s, t eR:
x + y eRn
x + y = y + x
(x + y) + w = x + (y + w)
tx eRn
(st)x = s(tx)
(s + t)x = sx + tx
t(x + y) = tx + ty
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Subspaces

A

A subspace is a non empty subset (say s) of Rn such that for any x ,y eS and teR: x + y eS (closed under addition) and tx eS (closed under scalar multipllication). Note: 0 is always in any subspace.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Proving Subspaces

A

Closed under addition, closed under scalar multiplication, and non empty. In other wods, check if 0 is eR, if the sum of 2 vectors (which are eS) is also eS, and if the product of a scalar t and a vector (eS) is also eS.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Closed under addition

A

Let [x1, x2] and [y, y2] be from S. Then [x1, x2] [y1, y2] = [x1+x2, x2+y2]. Then x2 + y2 = (2x1) + (2y1) = 2(x1+y1) Therefore S is closed under addition.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Closed Under Scalar Multiplicaton

A

Let teR and [x1, x2]eS. Then t[x1, x2] = [tx1, tx2]. Now tx2 = t(2x1) = 2(tx1) therefore S is closed under sm

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Non Empty

A

0 = [0, 0]. As 2(0) = 0, we get 0eS. Therefore S is non empty.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Relation Between Subspces and Subsets

A

Every subspace is a subset but not every subset is a subspace.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

Spanning Sets

A

If S = {t1v1 + tkvk : t1,…, tk eR} then S is the subspace spanned by B = {v1,…,vk}. This can be said that the set B spans S, or that B is the spanning set for the subspace S.

20
Q

Linear Dependent

A

If there exists coefficients t1,…, tk that are not all 0 such that 0 = t1v1+…+tkvk then a set of vectors {v1,…,vk} is linearly dependent

21
Q

Linear Independent

A

If the only solution to 0= t1v1+…+tkvk is if all coefficients are 0, then a set f vectors is linearly independent.

22
Q

Dot Product

A

If x and y are from Rn then x . y = x1y1 + … + xnyn

23
Q

Properties of the Dot Product

A

x . x > 0 and x . x = 0 IFF x = 0
x . y = y . x
x . (y + z) = x . y + x . z
x . (ty) = t(x.y)

24
Q

Magnitude of x

A

sqrt( x . x)

25
Q

Magnitude Properties

A

mag(tx) = abs(t)mag(x)
abs(x . y) <= mag(x)*mag(y) and = IFF {x,y} is LD
mag(x+y) <= mag(x) + mag(y)

26
Q

Dot Product with Angles

A

x . y = mag(x)mag(y)cos(theta)

27
Q

Planes in R3

A

If p = [p1,p2,p3] is fixed x = [x1,x2,x3] is any point on p with a normal vector n = [n1,n2,n3], then n . p = n1p1+n2p2+n3p3 = d is the scalar equation of the plane. Ex. 3x1-2x2+x3=5, n=[3,-2,1]

28
Q

Parallel and Perpendicular Planes

A

2 planes are parallel if their n’s are parallel

2 planes are perpendicular if their n’s are orthogonal

29
Q

Projections

A
proj[y]x = ( (x.y) / (y.y) )*y
mag(x)*cos(theta) = (x.y) / mag(y)
30
Q

Properties of Projections

A
proj[y]tx = tproj[y]x
proj[y](x+z) = proj[y]x + proj[y]z
31
Q

Perpendicular of a Projection

A

perp[y]x = x - proj[y]x

32
Q

Minimum Distance

A

If a vector x provides us with the coordinates of a point and y is a direction vector for a line through 0, then mag(perp[y]x) will be the minimum distance between the point and the line.

33
Q

Finding the point on a line closest to a given point p

A

Need a vector which = another vector q + proj

34
Q

Finding a distance of a point P from a plane

A

Find a point q on the plane then project qp onto n and take the mag of the result.

35
Q

Cross Product

A

2312x2312

36
Q

Right Hand Rule for Cross Product

A

Shows direction of orthogonal vector.

Length: mag(X x Y) = mag(x)mag(y)abs(sin(theta))

37
Q

Area of a Parellologram

A

mag(x)mag(y)abs(sin(theta)) which is = mag(XxY)

38
Q

Volume of a Parallelepiped

A

Triple Scalar Product = z . (XxY)

39
Q

REF and RREF

A

If result contains a zero row, there is a free variable x[n] where n is the column in which there is no leading non-zero entry

40
Q

Rank of a Matrix

A

The total number of pivots (leading 1s) in the RREF

41
Q

Inconsistent Augmented Matrix

A

IFF the rank of A < the rank of [A l b]

42
Q

Homogeneous Systems

A

RHS is always 0 so no need to write augmented matrix, row reduce with coefficient matrix. x = 0 will always be a solution.

43
Q

Properties of Augmented Matrices

A

Is consistent IFF rank A = rank [A l b]
IF consistent, then the # of params in the general solution is = n - rankA where n is the number of variables in the augmented matrix

44
Q

Transpose of a Matrix A[mxn]

A

A^T = A[nxm]. In other words, the rows become the columns and columns become rows

45
Q

Matrix Multiplication

A

Row x column