4.2.8 Vectors

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

1/11

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

12 Terms

1
New cards

What can vectors be represented as?

  • A list of numbers

  • A vector space over a field

  • A function

  • Point in space

2
New cards

How may a vector be written as a list of numbers?

[2.5, 3.5, 4.5]

3
New cards

How may a vector be represented as a space over a field?

A 2-vector over R —> R²

4
New cards

How may a vector be represented as a function?

f: S → R where S is the set {0, 1, 2] and R the set of real numbers

0 → 2.5

1 → 3.5

2 → 4.5

5
New cards

How can vectors be implemented in a program?

  • Array

  • List

  • Dictionary

6
New cards

How are vectors added?

[x1, y1] + [x2, y2] = [(x1+x2), (y2+y2)]

7
New cards

What is the effect of adding vectors?

Translation

8
New cards

How are vectors multiplied?

[x1, y1] * [x2, y2] = [(x1*x2), (y2*y2)]

9
New cards

What is the effect of multiplying vectors?

Scaling up/down

10
New cards

What is the convex combination of two vectors?

αu + βv

→ α+β = 1

→ α, β ≥ 0

11
New cards

What is meant by finding the dot product of two vectors?

Multiplying

12
New cards

How can the angle between two vectors be found?

  • Calculate dot product

  • Calculate magnitudes of u and v

  • Calculate the product of u and v magnitudes

  • Calculate cos0

  • Find cosine inverse