Why Does [d/[n]^2] * n Find the Closest Point to the Origin on a Plane?

  • Context: Graduate 
  • Thread starter Thread starter bezgin
  • Start date Start date
  • Tags Tags
    Plane Point
Click For Summary
SUMMARY

The closest point to the origin on the plane defined by the equation x + y + 3z = 7 is calculated using the formula [d/[n]^2] * n, where n is the normal vector (1, 1, 3) and d is 7. The resulting coordinates of the closest point are (7/11, 7/11, 21/11). This method leverages the properties of normal vectors and projections in linear algebra, ensuring that the line from the origin to the closest point is perpendicular to the plane. Understanding this operation is essential for grasping the geometric interpretation of distances in three-dimensional space.

PREREQUISITES
  • Understanding of linear algebra concepts, particularly normal vectors and projections.
  • Familiarity with the equation of a plane in three-dimensional space.
  • Knowledge of vector operations, including scaling and addition.
  • Basic comprehension of geometric interpretations of mathematical formulas.
NEXT STEPS
  • Study the concept of projection in vector spaces to deepen understanding of distance calculations.
  • Explore the derivation of the equation of a plane from normal vectors and points on the plane.
  • Learn about the applications of normal vectors in optimization problems within linear algebra.
  • Investigate the geometric interpretations of distance in three-dimensional space using various examples.
USEFUL FOR

Mathematicians, students of linear algebra, and professionals in fields requiring spatial analysis, such as computer graphics and engineering, will benefit from this discussion.

bezgin
Messages
22
Reaction score
0
Let x + y + 3 z = 7 represent a plane. (it does)

We find the closest point to origin in this plane by [d/[n]^2] * n. In this case n = (1,1,3); d = 7; [n]^2 = 1^2 + 1^2 + 3^2 = 11; then the vector that gives us the closest point is: (7/11, 7/11, 21/11)

I don't understand WHY this operation gives us the closest point and Strang's book doesn't really explain. I'd appreciate if you help.
 
Physics news on Phys.org
The line from the origin to the "closest point" in the plane is perpendicular to the plane (to see that, remember that the hypotenuse of a right triangle is always longer than the two legs).

A vector perpendicular to the given plane is <1, 1, 3>. Any line perpendicular to the plane must be of the form x= t+ a, y= t+ b, z= 3t+ c. Take t= 0 to be the value when the line passes through the origin: x= 0+ a= 0 , y= 0+ b= 0, z= 0+ c= 0 so the line is x= t, y= t, z= 3t.

Where does that line intersect the given plane? Replacing x, y, z, by t, t, 3t, respectively in the equation of the plane, t+ t+ 3(3t)= 11t= 7 so t= 7/11. That gives
x= 7/5, y= 7/5, z= 21/5 or (7/5, 7/5, 21/5) as the nearest point just as the formula does.

More generally, suppose the equation of the plane is Ax+ By+ Cz= d. The line perpendicular to that plane AND passing through the origin is x= At, y= Bt, z= Ct. Putting those into the equation of the plane, we had A2t+ B2t+ C2t= d so t= d/(A2+ B2+ C2) or, using your notation,t= d/[n]2 for the value of t where that normal line intersects the plane. Putting that into the equations of the line gives x= [d/[n]2]A, y= [d/[n]2]B, z= [d/[n]2]C, once again, exactly the formula's [d/[n]2]*n.
 


The operation of [d/[n]^2] * n allows us to find the point on the plane that is closest to the origin by using the normal vector (n) of the plane. This is because the normal vector is perpendicular to the plane and therefore, the shortest distance from the origin to the plane will be along this vector.

The value of d in this equation represents the signed distance from the origin to the plane. By dividing it by the squared length of the normal vector, we are essentially scaling the normal vector to a unit vector (with length 1). This allows us to easily move along the normal vector in the direction of the plane.

Multiplying this scaled normal vector by the normal vector itself gives us the coordinates of the point on the plane that is closest to the origin. In this case, the coordinates are (7/11, 7/11, 21/11).

I understand that this may seem like a mathematical formula without much explanation, but it is a common method used in linear algebra to find the closest point on a plane. If you are interested in learning more, I suggest looking into the concept of projection in vector spaces. This will give you a better understanding of why this operation works.
 

Similar threads

  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
Replies
3
Views
2K
  • · Replies 26 ·
Replies
26
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 4 ·
Replies
4
Views
3K