MAT pure2&3 vectors Flashcards

1
Q

What are the two forms of representing vectors?

A
  1. Magnitude-direction form: (r, θ), where r is the magnitude and θ is the angle measured anticlockwise from the positive x-axis.
  2. Component form: xi + yj, where i and j are unit vectors in the x and y directions.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you convert a vector from magnitude-direction form to component form?

A

Given (r, θ), use:
x = r * cos(θ)
y = r * sin(θ)
The vector is x * i + y * j.

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

Example: Convert (10, 70°) to component form.

A

x = 10 * cos(70°) = 3.42
y = 10 * sin(70°) = 9.40
Vector = 3.42 * i + 9.40 * j

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

How do you calculate the magnitude of a vector given in component form?

A

For vector a = xi + yj:
|a| = sqrt(x^2 + y^2)

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

Example: Find the magnitude of 5i + 3j.

A

|a| = sqrt(5^2 + 3^2) = sqrt(25 + 9) = sqrt(34)

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

How do you convert a vector from component form to magnitude-direction form?

A
  1. Magnitude: r = sqrt(x^2 + y^2)
  2. Direction: θ = tan^(-1)(y / x)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Example: Convert 5i + 3j to magnitude-direction form.

A

Magnitude = sqrt(5^2 + 3^2) = sqrt(34)
Direction = tan^(-1)(3 / 5) = 31.0°
Vector = (sqrt(34), 31.0°)

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

What happens when you multiply a vector by a scalar?

A

Each component is multiplied by the scalar:
k * (xi + yj) = (k * x)i + (k * y)j

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

How do you add or subtract vectors?

A

Add or subtract their respective components:
(x1i + y1j) + (x2i + y2j) = (x1 + x2)i + (y1 + y2)j

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

What is a unit vector and how is it calculated?

A

A unit vector has a magnitude of 1. For vector a:
Unit vector = a / |a|

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

Example: Find the unit vector in the direction of 2i - 3j.

A

|a| = sqrt(2^2 + (-3)^2) = sqrt(4 + 9) = sqrt(13)
Unit vector = (2/sqrt(13))i - (3/sqrt(13))j

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

How do you calculate the magnitude of a 3D vector?

A

For vector a = xi + yj + zk:
|a| = sqrt(x^2 + y^2 + z^2)

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

Example: Find the magnitude of vector 4i - 3j + 2k.

A

|a| = sqrt(4^2 + (-3)^2 + 2^2) = sqrt(16 + 9 + 4) = sqrt(29)

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

How do you find the vector AB given points A(x1, y1, z1) and B(x2, y2, z2)?

A

AB = (x2 - x1)i + (y2 - y1)j + (z2 - z1)k

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

Example: Find AB for points A(4, -1, 2) and B(-1, 3, 1).

A

AB = (-1 - 4)i + (3 - (-1))j + (1 - 2)k
AB = -5i + 4j - k
|AB| = sqrt((-5)^2 + 4^2 + (-1)^2) = sqrt(42)

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

What is required to find the cartesian equation of a line?

A
  • The coordinates of one point on the line.
  • The gradient of the line (or the coordinates of a second point).
17
Q

What is required to find the vector equation of a line?

A
  • The position vector of one point on the line.
  • The direction vector of the line (or the position vector of a second point).
18
Q

What is the general vector equation of a line?

A

r = a + λd
Where:
- a is the position vector of a point on the line.
- d is the direction vector.
- λ is a parameter.

19
Q

Example: Find the vector equation of a line through A(4, -1) and parallel to vector (4, 2).

A

a = (4, -1)
d = (4, 2)
Simplified direction vector: (2, 1)
Vector equation: r = (4, -1) + λ(2, 1)

20
Q

How is the vector equation of a line joining points A and B written?

A

r = a + λ(b - a)
Where:
- a and b are the position vectors of points A and B.
- λ is a parameter.

21
Q

Example: Find the vector equation of a line joining A(5, -2) and B(1, 3).

A

a = (5, -2)
b = (1, 3)
Vector equation: r = (5, -2) + λ(-4, 5)

22
Q

What is the vector equation of a line in three dimensions?

A

r = a + λd
Where:
- a is the position vector of a point on the line.
- d is the direction vector.
- λ is a parameter.

23
Q

Example: Find the vector equation of the line through A(1, -2, -3) and B(0, -2, 1).

A

a = (1, -2, -3)
b = (0, -2, 1)
d = b - a = (-1, 0, 4)
Vector equation: r = (1, -2, -3) + λ(-1, 0, 4)

24
Q

How do you find the angle between two lines in three dimensions?

A

Scalar product: (3)(1) + (2)(0) + (-2)(-3) = 9
Magnitude of (3, 2, -2): sqrt(3^2 + 2^2 + (-2)^2) = sqrt(14)
Magnitude of (1, 0, -3): sqrt(1^2 + 0^2 + (-3)^2) = sqrt(10)
cos(θ) = 9 / (sqrt(14) * sqrt(10))
θ ≈ 40.5°

25
Q

How do you find the intersection of two lines in two dimensions?

A

Equate the vector equations of the two lines and solve for the parameters to find the common point.

26
Q

What are skew lines?

A

In three dimensions, skew lines are lines that do not intersect and are not parallel.

27
Q

How do you find the distance of a point from a line?

A

Find the perpendicular distance from the point to the line by identifying the foot of the perpendicular and calculating its length.