Social Bacon
Newbie
- Joined
- Jul 20, 2007
- Messages
- 178
- Reaction score
- 0
So I need to find the distance from a point to a plane in 3-dimensional space.
Where the plane is represented by the scalar equation: 2x + y - 2z + 9 = 0
And the point is (2, 3, -1). We shall call it point A.
Knowing that the shortest distance between the plane and point will be along the line that is perpendicular to the plane we can use the plane's normal vector (which is n(2, 1, -2)).
We shall call the point of the plane closest to A "Q".
Therefore the line that passes through the segment AQ can be represented by the parametric equations:
x = 2 + 2k
y = 3 + k
z = -1 - 2k
Subbing the equation of line AQ into the equation of the place will give us the value of k that puts the line on point Q.
2(2 + 2k) + (3 + k) - 2(-1 - 2k) + 9 = 0
4 + 3 + 2 + 9 + 4k + k + 4k = 0
18 + 9k = 0
k = -2
Now we can sub this k value back into the parametric equation of the line to find point Q.
x = 2 + 2(-2)
y = 3 - 2
z = -1 - 2(-2)
Therefore Q(-2, 1, 3)
Therefore line segment AQ(-4, -2, 4).
And thus the magnitude of AQ will be the distance between point A and the plane.
|AQ| = sqrt (((-4)^2) + ((-2)^2) + (4^2))
|AQ| = sqrt (16 + 4 + 16)
|AQ| = sqrt (36)
|AQ| = 6
Therefore the distance from the point to the plane is 6 units.
Is my theory all correct? I made this all up on the spot without help of a teacher or textbook, so I have no idea if I made some fundamental error.
Where the plane is represented by the scalar equation: 2x + y - 2z + 9 = 0
And the point is (2, 3, -1). We shall call it point A.
Knowing that the shortest distance between the plane and point will be along the line that is perpendicular to the plane we can use the plane's normal vector (which is n(2, 1, -2)).
We shall call the point of the plane closest to A "Q".
Therefore the line that passes through the segment AQ can be represented by the parametric equations:
x = 2 + 2k
y = 3 + k
z = -1 - 2k
Subbing the equation of line AQ into the equation of the place will give us the value of k that puts the line on point Q.
2(2 + 2k) + (3 + k) - 2(-1 - 2k) + 9 = 0
4 + 3 + 2 + 9 + 4k + k + 4k = 0
18 + 9k = 0
k = -2
Now we can sub this k value back into the parametric equation of the line to find point Q.
x = 2 + 2(-2)
y = 3 - 2
z = -1 - 2(-2)
Therefore Q(-2, 1, 3)
Therefore line segment AQ(-4, -2, 4).
And thus the magnitude of AQ will be the distance between point A and the plane.
|AQ| = sqrt (((-4)^2) + ((-2)^2) + (4^2))
|AQ| = sqrt (16 + 4 + 16)
|AQ| = sqrt (36)
|AQ| = 6
Therefore the distance from the point to the plane is 6 units.
Is my theory all correct? I made this all up on the spot without help of a teacher or textbook, so I have no idea if I made some fundamental error.