Vector Geometry (review) Flashcards

1
Q

What is a set?

A

A collection of objects, where it is often useful to use the
following notation:
{Objects | logical predicates}

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

Define the aspects of {Objects | logical predicates}.

A

{ } = The set of all
Objects = variables
| = Such that
Log. Pre. = rules

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

What does the set notation of a plane look like?

A

R^2 = {(x, y)| x, y ∈ R}

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

What does the set notation of a vector in 3-space look like?

A

R^3 = {(x, y, z)| x, y, z ∈ R}

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

What does the set notation of a vector in n-space look like?

A

R^n = = {(x1, x2, · · · , xn)| x1, x2, · · · , xn ∈ R}

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

Give the definition of linear combinations.

A

If k1,···,kn∈R are scalars and u1,···,un∈R^n
are
vectors, then
k1u1 +···+ knun
is called a linear combination of u1, · · · , un.

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

What are the 10 Algebraic properties of vector addition, scalar multiplication:
for x,y,z∈R^n
and a,b∈R?

A
  • Closure under Addition
  • Closure under Scalar Multiplication
  • Additive Identity
  • Additive Inverse
  • Commutativity of Addition
  • Associativity of Addition
  • Distributivity of scalars onto vectors
  • Distributivity of Vectors onto scalars
  • Associativity of Multiplication
  • Multiplicative Identity
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Define the Inner dot product

A

x . y = x1y1 +···+ xnyn ∈ R

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

Define the norm (length)

A

||x|| := √(x.x)

sqrt of dot prod

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

What are the 8 properties of Dot Product?

A
If x,y,z∈R^n
and a∈R. Then
1. ||x|| ≥ 0
2.  ||x||= 0 ⇔ x = 0
3.  ||ax||= |a| ||x||
4. ||x-y|| = ||y-x||
5. x.y = y.x
6.  (ax).y = a(x.y) = x.(ay)
7.  (x+y).z = x.z + y.z
8. x.(y+z) = x.y + x.z
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

When is x.y = 0?

A

When x and y are orthogonal

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

Define orthogonality.

A

If x,y∈R^n, then x and y are said to be orthogonal if

x . y = 0.

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

Define the Cauchy-Schwarz Inequality.

A

For x,y∈R^n, we have

|x.y| ≤ ||x|| ||y||, (x.y∈R)

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

Define Triangle Inequality.

A

||x+y|| ≤ ||x||+||y||

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

Define the angle between vectors in R^n.

A

If x,y∈R^n and x,y≠0, then the angle θ between x and y is defined by
cos(θ) := x.y/(||x|| ||y||),
such that 0 ≤ θ ≤ π

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

When are two vectors parallel?

A
  1. If the angle between them is either 0 or π.
17
Q

Define orthogonal projections.

A

Suppose x and y are non-zero vectors in R^n. The projection of y
onto x (denoted by Projx(y)) is the unique vector satisfying:
- Projx(y) is a scalar multiple of x (parallel to x),
- y−Projx(y) is orthogonal to x (their dot product vanishes)

18
Q

How do you find orthogonal projections?

A

Projx(y) := (x.y/(||x||^2))x

19
Q

When are two vectors u and v collinear (parallel)?

A

If there exists scalars a,b∈R (not both zero), such that au + bv = 0.

20
Q

When are three vectors u, v, and w coplanar?

A

If there exist scalars

a,b,c∈R (not all zero) such that au + bv + cw = 0.