Linear Algebra: Unit 1

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/32

flashcard set

Earn XP

Description and Tags

MODULE 1

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

33 Terms

1
New cards

What is a scalar?

A single real number used for measurement (element of ℝ).

2
New cards

What is a vector?

An ordered list of scalars (element of ℝⁿ).

3
New cards

How do you notate a vector?

Horizontally: ⟨x₁, x₂, …, xₙ⟩; Vertically: column format with an arrow.

4
New cards

What is ℝⁿ?

The space of all vectors with n real-number entries (n-dimensional Euclidean space).

5
New cards

What is the formula for the magnitude of a vector?

‖v‖ = √(v₁² + v₂² + … + vₙ²)

6
New cards

How do you visualize a vector in ℝ²?

As an arrow from the origin to point (x, y) on the xy-plane.

7
New cards

Give an example of a vector in ℝ³

⟨3, 3, -4⟩, which can be visualized in 3D space.

8
New cards

Are ∫ and Σ scalars?

No, they are operations, not elements of ℝ.

9
New cards

How do you add two vectors?

Add corresponding coordinates: v + w = ⟨v₁ + w₁, …, vₙ + wₙ⟩

10
New cards

When is vector addition valid?

Only when the two vectors have the same number of coordinates (same dimension).

11
New cards

What is scalar-vector multiplication?

Each coordinate of the vector is multiplied by the scalar: c·v = ⟨c·v₁, …, c·vₙ⟩

12
New cards

What does scalar-vector multiplication do geometrically?

Stretches vector by |c|, reverses direction if c < 0.

13
New cards

How is vector subtraction defined?

v - w = v + (-1)·w

14
New cards

How do you compute distance between two vectors?

Distance = ‖v - w‖

15
New cards

What is a unit vector?

A vector with length (magnitude) 1.

16
New cards

How do you normalize a vector v?

v̂ = (1 / ‖v‖) · v

17
New cards

What is a linear combination?

An expression like c₁v₁ + c₂v₂ + … + cₖvₖ where the c's are scalars.

18
New cards

What is the span of a set of vectors?

All vectors that can be formed as linear combinations of the set.

19
New cards

What is the dot product of two vectors?

v · w = v₁w₁ + v₂w₂ + … + vₙwₙ

20
New cards

What does the dot product output?

A scalar (not a vector).

21
New cards

How is vector length related to dot product?

‖v‖² = v · v

22
New cards

How is dot product used to find angle between vectors?

v · w = ‖v‖‖w‖cos(θ)

23
New cards

How to tell if two vectors are orthogonal?

If v · w = 0, they are orthogonal (perpendicular).

24
New cards

What is a vector equation?

An equation of the form x₁·v₁ + x₂·v₂ + … + xₖ·vₖ = b, where v₁,…,vₖ are known vectors and x₁,…,xₖ are unknown scalars.

25
New cards

When does a vector equation have a solution?

When the vector b is in the span of v₁,…,vₖ.

26
New cards

What does it mean if b ∉ span{v₁,…,vₖ}?

There is no solution to the vector equation.

27
New cards

How is solving a vector equation related to linear systems?

Solving x₁·v₁ + … + xₖ·vₖ = b is equivalent to solving the system Ax = b.

28
New cards

What are the conditions for a unique solution to Ax = b?

b must be in the span of A's columns, and the columns must be linearly independent.

29
New cards

What happens if the columns of A are linearly dependent?

If b is in the span, there will be infinitely many solutions.

30
New cards

What is the geometric interpretation of span{v₁,…,vₖ}?

It forms a k-dimensional subspace through the origin in ℝⁿ.

31
New cards

What does the span of one vector look like?

A line through the origin.

32
New cards

What does the span of two vectors look like in ℝ³?

A plane through the origin, if they are not parallel.

33
New cards

How are vector equations used in data science?

They model predictions, regressions, and transformations using data matrices.