Vectors in R2 and R3 Flashcards
directed line segments and vectors
for every directed line segment there is a vector in the same direction and length
ex) points P and Q
vector of PQ = Q - P
= (q1+q2) - (p1+p2)
![](https://s3.amazonaws.com/brainscape-prod/system/cm/358/934/526/a_image_thumb.png?1633733737)
distance between vectors
the distance of 2 vectors is the distance of their end points
(doesn’t matter the subtraction order)
![](https://s3.amazonaws.com/brainscape-prod/system/cm/358/934/527/a_image_thumb.png?1633733738)
length of vector
length of a vector (v) is the distance from the zero vector to the vector (v)
length of vector = d(u,v) = square root[(u1-v1)2+(u2-v2)2]
![](https://s3.amazonaws.com/brainscape-prod/system/cm/358/934/528/a_image_thumb.png?1633733738)
unit vector
a vector is called a unit vector if it’s length is equal to 1
vector / magnitude of vector (length)
![](https://s3.amazonaws.com/brainscape-prod/system/cm/358/934/529/a_image_thumb.png?1633733739)
scalar multiplication of vector
if c is scalar multiple
cv = (cv1, cv2, cv2)
![](https://s3.amazonaws.com/brainscape-prod/system/cm/358/934/530/a_image_thumb.png?1633733740)
vector addition
![](https://s3.amazonaws.com/brainscape-prod/system/cm/358/934/531/a_image_thumb.png?1633733740)
vector subtraction
u - v = (u1-v1, u2-v2)
![](https://s3.amazonaws.com/brainscape-prod/system/cm/358/934/532/a_image_thumb.png?1633733741)
negative vector
negative vector (-v) is opposite and same length as vector (v)
![](https://s3.amazonaws.com/brainscape-prod/system/cm/358/934/533/a_image_thumb.png?1633733742)
i, j, k notation
(1,0,0) = i vector
(0,1,0) = j vector
(0,0,1) = k vector
![](https://s3.amazonaws.com/brainscape-prod/system/cm/358/934/534/a_image_thumb.png?1633733742)
collinear vector
2 vectors are called collinear if one is a scalar multiple of the other
ex) Cu = v
u and v are collinear
![](https://s3.amazonaws.com/brainscape-prod/system/cm/358/934/535/a_image_thumb.png?1633733743)
how do you check for collinearity?
- the vectors need to have the same zero components (they have any)
ex) (0,1,2) and (0,2,4) - the components have the same ratio
![](https://s3.amazonaws.com/brainscape-prod/system/cm/358/934/536/a_image_thumb.png?1633733743)