FMAT pure1 vectors incompl Flashcards
What is the vector equation of a plane?
The vector equation of a plane is given by:
(r - a) * n = 0
or
r * n = a * n
Where:
- r is the position vector of any point on the plane,
- a is the position vector of a known point on the plane,
- n is the normal vector to the plane.
How is the Cartesian equation of a plane derived?
The vector equation:
r * n = a * n
is rewritten as:
n₁x + n₂y + n₃z = d
Where:
- n₁, n₂, n₃ are the components of the normal vector,
- d = a * n.
Example: Find the Cartesian equation of the plane passing through (4, 5, -2) with normal vector [2, -1, 3]
- Substitute normal vector: 2x - y + 3z = d.
- Use point (4, 5, -2):
2(4) - 1(5) + 3(-2) = d
8 - 5 - 6 = -3. - Equation: 2x - y + 3z = -3.
How do you verify if a point lies on a plane?
Substitute the coordinates of the point into the plane’s equation. If the equation holds true, the point lies on the plane.
Example: Verify if point (2, 4, -1) lies on the plane 2x - y + 3z = -3
- Substitute: 2(2) - 4 + 3(-1) = -3.
4 - 4 - 3 = -3. - The equation holds, so the point lies on the plane.
What is another vector form of the equation of a plane?
If b and c are non-parallel vectors lying within the plane and a is a point on the plane, the equation is:
r = a + λb + μc
Where:
- λ and μ are scalar parameters.
Example: Find the vector equation of the plane containing points P(2, 3, -1), Q(1, 0, 4), and R(-1, 1, 1).
- Find vectors in the plane:
PQ = [1 - 2, 0 - 3, 4 - (-1)] = [-1, -3, 5],
PR = [-1 - 2, 1 - 3, 1 - (-1)] = [-3, -2, 2]. - Equation:
r = [2, 3, -1] + λ[-1, -3, 5] + μ[-3, -2, 2].
How can the vector form of a plane be converted to Cartesian form?
- Expand r = a + λb + μc into component equations.
- Eliminate λ and μ to obtain the Cartesian equation.
Example: Convert the plane
r = [2, 3, -1] + λ[-1, -3, 5] + μ[-3, -2, 2]
to Cartesian form.
- Expand:
x = 2 - λ - 3μ,
y = 3 - 3λ - 2μ,
z = -1 + 5λ + 2μ. - Eliminate λ and μ:
Combine equations and solve for x, y, z:
4x + 13y + 7z = 24.
What is the significance of the normal vector in a plane equation?
The normal vector determines the orientation of the plane in space. Parallel planes share the same normal vector.
How can you find the equation of a plane given three points?
- Use the points to find two vectors lying within the plane.
- Take the cross product of these vectors to find the normal vector.
- Use the normal vector and one of the points to find the equation of the plane.
What is the relationship between parallel planes?
Parallel planes have the same normal vector but different values of d in the Cartesian equation n₁x + n₂y + n₃z = d.
What are the three possible relationships between a line and a plane?
- The line and the plane are parallel, so there are no intersections.
- The line lies in the plane, so all points on the line are in the plane.
- The line intersects the plane at a single point.
How can you determine if a line is parallel to a plane?
If the direction vector of the line is perpendicular to the normal vector of the plane, the line is parallel to the plane. Test a point on the line to check if it lies in the plane.
Example: Find the intersection of the line
r = [2, 3, -4] + λ[-1, 2, 1]
and the plane 2x - 3y + z = 5.
- Parametrize the line:
x = 2 - λ, y = 3 + 2λ, z = -4 + λ. - Substitute into the plane equation:
2(2 - λ) - 3(3 + 2λ) + (-4 + λ) = 5. - Solve for λ:
4 - 2λ - 9 - 6λ - 4 + λ = 5.
-7λ = 14 → λ = -2. - Substitute λ = -2 into the line:
x = 4, y = -1, z = -6.
Intersection point: (4, -1, -6).