Wk 1: The vector Flashcards

1
Q

n

A

Set of all n-vectors over ℝ

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

Set of functions from {0,1,2,…,d-1} to

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

Sparse vector

A

a vector most of whose values are zero

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

k-sparse vector

A

vector with no more than k nonzero entries

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

lossy compression

A

represents a signal as sparse while preserving perceptual similarity

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

Examples that can be represented by a vector

A

document (for information retrieval)

binary string (for crypto / IT)

collection of attributes (voting record, demographic record, etc.)

state of a system

probability distribution

images

points

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

Translation of Complex number

A

f(z) = z + z1

z,z1 ∈ ℂ

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

Vector addition

A

[u1, u2, …, un] + [v1, v2, …, vn] = [u1 + v1, u2 + v2, …, un + vn]

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

zero vector

A

the D-vector whose entries are all zero, written 0D or just 0

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

Basic properties of vector addition

A

associative and commutative

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

scalar

A

term for field elements (used to scale vectors)

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

Scalar-vector multiplication

A

α[v1, v2, …, vn] = [αv1, αv2, …, αvn]

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

Basic property of scalar-vector multiplication

A

Associativity: α(βv) = (αβ)v

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

v : α ∈ ℝ, 0 ≤ α ≤ 1}

A

line segment between the origin and v

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

{αv : α ∈ ℝ}

A

line through the origin and v

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

Distributive property of scalar-vector multiplication

A

α (u + v) = αu + αv

17
Q

Alt. representation of line segment

(sym. wrt end points)

A

{α[x11, x12] + β[x21, x22] : α,β ∈ ℝ, α,β ≥ 0, α + β = 1}

18
Q

convex combination of u and v

A

expression of the form αu + βv, where 0 ≤ α,β ≤ 1 and α + β = 1

19
Q

affine combination of u and v

A

an expression of the form αu + βv where α + β = 1

20
Q

Dot-product of two D-vectors

A

u v = ∑k∈D u[k] v[k]

uv = u1v1 + u2v2 + … + unvn

(aka scalar product)

21
Q

linear equation

A

equation of the form a x = β, where a is a vector, x is a vector of variables and β is a scalar

22
Q

Measuring similarity

A

Dot product can be used to measure similarity of two vectors (eg. voting records, audio samples)

23
Q

Algebraic properties of dot product

A

Commutativity: vx = xv

Homogeneity: αuv = α(uv)

Distributive law: (v1 + v2) ∙ x = v1x + v2x

24
Q

Solving a triangular system of equations

A

Use backward substitution