πŸŽ“ BookMCQ
← Back to 12. Three Dimensional Space: Vectors

πŸ“ Distance from point to plane formula (28 MCQs)

πŸ“– From Calculus β€’ 12. Three Dimensional Space: Vectors β€’ 28 questions available

What is Distance from point to plane formula?

Definition:
Distance from point (x0,y0,z0)(x_0,y_0,z_0) to plane ax+by+cz+d=0ax+by+cz+d=0 is D=∣ax0+by0+cz0+d∣a2+b2+c2D = \frac{|ax_0+by_0+cz_0+d|}{\sqrt{a^2+b^2+c^2}}, derived from projection of point-to-plane vector onto unit normal.

Example:
Distance from (1,2,3)(1,2,3) to plane 2xβˆ’y+2zβˆ’4=02x-y+2z-4=0 is ∣2βˆ’2+6βˆ’4∣4+1+4=23\frac{|2-2+6-4|}{\sqrt{4+1+4}} = \frac{2}{3}.

Reason:
This formula quantifies shortest separation, used in collision avoidance, tolerance checking in manufacturing, and defining level sets in optimization and machine learning classifiers.

7
Easy
13
Medium
8
Hard

πŸ“ All Distance from point to plane formula MCQs

Q1. A student calculates the distance from point P(1,2,3)P(1,2,3) to the plane 2xβˆ’y+z=52x - y + z = 5 by substituting PP into the left side and getting 2(1)βˆ’2+3=32(1)-2+3=3, then claims the distance is ∣3βˆ’5∣=2|3-5|=2. What is the fundamental error in this reasoning?

A.The student forgot to take the absolute value of the numerator.
B.The student failed to divide by the magnitude of the normal vector 6\sqrt{6}. βœ…
C.The student used the wrong sign for the constant term.
D.The student should have projected onto the x-axis instead.
πŸ’‘ Difficulty: medium | βœ… Correct: B

πŸ“– Explanation: The formula for distance requires normalization by the length of the normal vector to convert the scalar projection into actual Euclidean distance. Without dividing by βˆ₯nβƒ—βˆ₯=22+(βˆ’1)2+12=6\|\vec{n}\| = \sqrt{2^2+(-1)^2+1^2} = \sqrt{6}, the result represents a scaled algebraic value, not geometric distance, leading to significant overestimation.

Q2. Two parallel planes are given by x+2yβˆ’2z=4x + 2y - 2z = 4 and x+2yβˆ’2z=βˆ’5x + 2y - 2z = -5. A student computes the distance as ∣4βˆ’(βˆ’5)∣=9|4 - (-5)| = 9. Which conceptual misunderstanding does this reveal?

A.Confusing plane constants with coordinate intercepts.
B.Assuming the normal vector is already a unit vector. βœ…
C.Believing distance between planes equals difference in z-intercepts.
D.Misapplying the point-to-plane formula without selecting a reference point.
πŸ’‘ Difficulty: medium | βœ… Correct: B

πŸ“– Explanation: The distance between parallel planes ax+by+cz=d1ax+by+cz=d_1 and ax+by+cz=d2ax+by+cz=d_2 is ∣d1βˆ’d2∣/a2+b2+c2|d_1-d_2|/\sqrt{a^2+b^2+c^2}. The student omitted division by βˆ₯nβƒ—βˆ₯=3\|\vec{n}\|=3, incorrectly assuming the coefficient vector was normalized. This reflects a failure to distinguish between algebraic differences and metric distances in non-orthonormal scaling.

Q3. Given the plane Ξ :3xβˆ’4y+12z=6\Pi: 3x - 4y + 12z = 6 and point Q(0,0,0)Q(0,0,0), which method yields the most computationally efficient exact distance without unnecessary intermediate steps?

A.Parameterize a line through Q perpendicular to Ξ , find intersection, then compute distance.
B.Use the standard point-to-plane formula directly with normalized coefficients. βœ…
C.Find three points on Ξ , compute area of tetrahedron, then derive height.
D.Project Q onto each coordinate axis and sum absolute projections.
πŸ’‘ Difficulty: easy | βœ… Correct: B

πŸ“– Explanation: The direct formula ∣ax0+by0+cz0βˆ’d∣/a2+b2+c2|ax_0+by_0+cz_0-d|/\sqrt{a^2+b^2+c^2} avoids parameterization or geometric construction. Here it gives ∣0βˆ’6∣/9+16+144=6/13|0-6|/\sqrt{9+16+144}=6/13. Other methods introduce redundant steps: parameterization requires solving for t, tetrahedron needs cross products, and axis projections ignore plane orientation entirely, making them inefficient or incorrect.

Q4. A graph shows two non-parallel planes intersecting along a line L. A point P lies off both planes. If you're asked for the shortest path from P to plane Π₁ that touches plane Ξ β‚‚ first, why can't you simply use the perpendicular distance from P to Π₁?

A.Because the constraint 'touches Ξ β‚‚ first' makes this a constrained optimization, not free minimization. βœ…
B.Because perpendicular distance only applies when planes are parallel.
C.Because the graph doesn't show the true scale of distances.
D.Because the shortest path must always be along the intersection line L.
πŸ’‘ Difficulty: hard | βœ… Correct: A

πŸ“– Explanation: This is a reflection problem: the unconstrained minimum ignores the intermediate contact requirement. The correct approach reflects P across Ξ β‚‚ to P', then finds distance from P' to Π₁; the actual path bends at Ξ β‚‚. Perpendicular distance assumes no constraints, violating the problem's sequential condition, demonstrating how geometric constraints alter optimal solutions fundamentally.

Q5. Consider planes Ξ 1:x+y+z=1\Pi_1: x+y+z=1 and Ξ 2:2x+2y+2z=5\Pi_2: 2x+2y+2z=5. A student argues they aren't parallel because coefficients differ, so distance formula doesn't apply. What is the flaw in this argument?

A.Planes are never parallel unless identical.
B.Parallelism depends on proportional normals, not identical coefficients; these are parallel with distance ∣5βˆ’2∣/(23)|5-2|/(2\sqrt{3}). βœ…
C.The student confused parallelism with orthogonality.
D.Distance can still be computed via skew-line methods even if non-parallel.
πŸ’‘ Difficulty: medium | βœ… Correct: B

πŸ“– Explanation: Normals ⟨1,1,1⟩\langle1,1,1\rangle and ⟨2,2,2⟩\langle2,2,2\rangle are scalar multiples, confirming parallelism. Rewriting Ξ 2\Pi_2 as x+y+z=2.5x+y+z=2.5 reveals constant terms 1 and 2.5. Distance is ∣2.5βˆ’1∣/3=1.5/3|2.5-1|/\sqrt{3}=1.5/\sqrt{3}. The misconception arises from equating coefficient equality with parallelism, ignoring proportionalityβ€”a critical distinction in vector geometry.

Q6. You're modeling a drone's flight path as line rβƒ—(t)=⟨t,2t,3t⟩\vec{r}(t) = \langle t, 2t, 3t \rangle and a restricted airspace boundary as plane xβˆ’y+z=10x - y + z = 10. At what parameter value t is the drone closest to entering restricted airspace, and what is that minimum distance?

A.t=10/3, distance=0
B.t=10, distance=10/310/\sqrt{3}
C.t=10/3, distance=∣10βˆ’10∣/3=0|10-10|/\sqrt{3}=0 βœ…
D.t=5, distance=5/35/\sqrt{3}
πŸ’‘ Difficulty: easy | βœ… Correct: C

πŸ“– Explanation: When a line intersects a plane, the minimum distance is zero at the intersection point. Substituting parametric equations into the plane equation solves for t where intersection occurs. Here, tβˆ’2t+3t=2t=10t - 2t + 3t = 2t = 10 gives t=5t=5, confirming intersection and zero distance. Options suggesting positive distance misunderstand that non-parallel lines always meet planes in 3D space, making perpendicular distance formulas irrelevant when intersection exists.

Q7. In a 3D coordinate system, a contour plot shows level sets of the function f(x,y,z)=∣2xβˆ’y+3zβˆ’6∣f(x,y,z) = |2x - y + 3z - 6|. How would you interpret the spacing between adjacent contours near the origin versus far from the plane 2xβˆ’y+3z=62x - y + 3z = 6?

A.Spacing is uniform everywhere because f is linear.
B.Spacing decreases near the plane, indicating higher rate of change of distance.
C.Spacing increases near the plane due to perspective distortion.
D.Contour spacing relates to gradient magnitude; since βˆ₯βˆ‡fβˆ₯=14\|\nabla f\| = \sqrt{14} is constant, spacing is uniform, reflecting constant distance scaling. βœ…
πŸ’‘ Difficulty: hard | βœ… Correct: D

πŸ“– Explanation: The function ff measures unnormalized distance to the plane. Its gradient magnitude 22+(βˆ’1)2+32=14\sqrt{2^2+(-1)^2+3^2}=\sqrt{14} is constant everywhere, meaning level sets are equally spaced parallel planes. Uniform contour spacing visually confirms that Euclidean distance changes at a steady rate relative to f, unlike nonlinear functions where spacing varies. This links graphical representation to analytic properties of linear distance functions.

Q8. A student derives the distance from point P to plane Ξ  using vector projection: dist=∣compnβƒ—PQβƒ—βˆ£\text{dist} = |\text{comp}_{\vec{n}} \vec{PQ}| where Q is on Ξ . They then claim this equals ∣PQβƒ—β‹…n^∣|\vec{PQ} \cdot \hat{n}|. Is this derivation valid, and under what condition?

A.Invalid; projection requires dot product with unnormalized n.
B.Valid only if n^\hat{n} is a unit normal vector. βœ…
C.Valid for any normal vector as long as it's nonzero.
D.Invalid; should use cross product instead.
πŸ’‘ Difficulty: medium | βœ… Correct: B

πŸ“– Explanation: The scalar projection onto a unit vector n^\hat{n} is indeed ∣vβƒ—β‹…n^∣|\vec{v} \cdot \hat{n}|. If nβƒ—\vec{n} isn't unit length, one must divide by βˆ₯nβƒ—βˆ₯\|\vec{n}\|. The student’s expression assumes n^\hat{n} denotes unit normal, which is standard notation. Confusion often arises when texts use nβƒ—\vec{n} ambiguously. Clarifying notation prevents errors in applying projection formulas to distance calculations.

Q9. Two students compute distance from origin to plane 4xβˆ’3y+12z=244x - 3y + 12z = 24. Student A gets 24/1324/13, Student B gets 24/169=24/1324/\sqrt{169} = 24/13. Are both correct, and what does this reveal about computational approaches?

A.Only A is correct; B mistakenly took square root of 169.
B.Both are correct; B explicitly showed normalization step, reinforcing conceptual understanding. βœ…
C.Only B is correct; A forgot to simplify.
D.Neither is correct; should be 24/42+32+122=24/1324/\sqrt{4^2+3^2+12^2} = 24/13, so both accidentally got right answer via different errors.
πŸ’‘ Difficulty: medium | βœ… Correct: B

πŸ“– Explanation: Student A likely computed 42+(βˆ’3)2+122=169=13\sqrt{4^2+(-3)^2+12^2}=\sqrt{169}=13 mentally. Student B wrote 169\sqrt{169} before simplifying. Both arrive at correct 24/1324/13. This highlights that multiple valid pathways exist, but explicit normalization (as in B) reduces risk of omitting the denominator entirelyβ€”a common error. Recognizing equivalent forms strengthens metacognitive awareness of procedural flexibility versus rote memorization.

Q10. A robotics arm must maintain at least 2 units clearance from a safety plane x+y+z=0x + y + z = 0. If the arm tip is at (1,1,1)(1,1,1), is it compliant, and what adjustment minimizes movement while achieving compliance?

A.Yes, current distance is 3/3=3>23/\sqrt{3}=\sqrt{3}>2; no adjustment needed.
B.No, distance is 3<2\sqrt{3}<2; move along normal vector by 2βˆ’32-\sqrt{3} units.
C.No, distance is 3/3=3<23/\sqrt{3}=\sqrt{3}<2; move opposite to normal by 2βˆ’32-\sqrt{3}. βœ…
D.Yes, distance is exactly 2; borderline compliant.
πŸ’‘ Difficulty: easy | βœ… Correct: C

πŸ“– Explanation: Distance is ∣1+1+1∣/3=3/3=3β‰ˆ1.732<2|1+1+1|/\sqrt{3}=3/\sqrt{3}=\sqrt{3}\approx1.732<2. To increase distance minimally, move along the normal direction away from plane. Since point is on positive side (x+y+z>0x+y+z>0), moving in direction βˆ’βŸ¨1,1,1⟩-\langle1,1,1\rangle increases the signed distance. Required displacement: (2βˆ’3)(2 - \sqrt{3}) units in direction of βˆ’n^-\hat{n}. Option C captures both magnitude and correct direction, essential for efficient robotic path planning.

Q11. Why is the distance from a point to a plane defined using the absolute value in the numerator of the formula ∣ax0+by0+cz0βˆ’d∣/a2+b2+c2|ax_0+by_0+cz_0-d|/\sqrt{a^2+b^2+c^2}?

A.To ensure distance is non-negative regardless of which side of the plane the point lies. βœ…
B.Because the plane equation can have negative constants.
C.To account for measurement errors in real-world applications.
D.Absolute value is unnecessary if d is always positive.
πŸ’‘ Difficulty: medium | βœ… Correct: A

πŸ“– Explanation: Signed distance indicates side relative to oriented plane, but geometric distance must be non-negative. Absolute value removes orientation dependence, ensuring the metric satisfies positivity axiom. Without it, points on opposite sides could yield negative 'distances,' violating definition. This distinguishes algebraic signed values from physical length, a crucial conceptual boundary in vector geometry and optimization problems involving constraints.

Q12. A student attempts to find distance between skew lines by treating one line as lying in a plane parallel to the other. They compute distance from a point on second line to this plane. Under what condition does this yield the correct inter-line distance?

A.Always, by definition of skew lines.
B.Only if the constructed plane contains the first line and is parallel to the second. βœ…
C.Never; skew lines require different method.
D.Only when lines are perpendicular.
πŸ’‘ Difficulty: hard | βœ… Correct: B

πŸ“– Explanation: For skew lines, the unique common perpendicular defines minimal distance. Constructing a plane containing line L₁ and parallel to Lβ‚‚ ensures Lβ‚‚ is parallel to plane, so distance from any point on Lβ‚‚ to plane equals inter-line distance. This works because the plane’s normal aligns with common perpendicular direction. Misapplication occurs if plane isn’t properly aligned, yielding larger distances. This synthesizes plane distance with line geometry, testing integrated understanding.

Q13. In optimizing warehouse layout, shelves are modeled as planes. You need minimum distance between shelf A: 2x+yβˆ’z=32x + y - z = 3 and shelf B: 4x+2yβˆ’2z=84x + 2y - 2z = 8. Before applying distance formula, what critical verification step is essential?

A.Check if shelves intersect; if so, distance is zero.
B.Verify normals are proportional to confirm parallelism; here ⟨4,2,βˆ’2⟩=2⟨2,1,βˆ’1⟩\langle4,2,-2\rangle = 2\langle2,1,-1\rangle, so parallel. βœ…
C.Ensure constants are positive.
D.Confirm shelves are vertical.
πŸ’‘ Difficulty: easy | βœ… Correct: B

πŸ“– Explanation: Shelf B’s equation simplifies to 2x+yβˆ’z=42x + y - z = 4 after dividing by 2, revealing same normal as shelf A. Thus parallel, and distance is ∣4βˆ’3∣/22+12+(βˆ’1)2=1/6|4-3|/\sqrt{2^2+1^2+(-1)^2}=1/\sqrt{6}. Skipping proportionality check risks misapplying formula to non-parallel planes, yielding meaningless results. Real-world modeling demands validating geometric assumptions before computation, preventing costly design errors from invalid mathematical application.

Q14. A physics problem involves electric potential V=k/dV = k / d, where d is distance to a charged plane. If a particle moves along path rβƒ—(t)=⟨t,t2,t3⟩\vec{r}(t) = \langle t, t^2, t^3 \rangle toward plane z=1z = 1, at what t is potential maximized, and why can't you just minimize z-coordinate?

A.At t=1, because z=1 minimizes d; potential ∝ 1/d so max at min d.
B.Potential is undefined at z=1; maximize as tβ†’1⁻.
C.Minimizing z ignores that d = |z-1| only if motion is perpendicular; here d = |tΒ³ - 1|, so minimize |tΒ³-1| at t=1. βœ…
D.Both A and C are correct depending on interpretation.
πŸ’‘ Difficulty: hard | βœ… Correct: C

πŸ“– Explanation: Distance to plane z=1 is |z-1| = |tΒ³-1|, not |t-1| or |tΒ²-1|. Potential maximizes when d minimizes, i.e., |tΒ³-1|=0 at t=1. Option A incorrectly assumes d=z, neglecting plane orientation. Option C correctly identifies d depends solely on z-component for horizontal plane. This tests understanding that distance to coordinate-aligned planes depends only on relevant coordinate, avoiding erroneous inclusion of other path components.

Q15. During peer review, a classmate submits work claiming distance from (2,βˆ’1,3) to plane xβˆ’2y+2z=5 is |2+2+6βˆ’5|/3 = 5/3. Identify the specific arithmetic error.

A.Numerator should be |2 βˆ’ 2(βˆ’1) + 2(3) βˆ’ 5| = |2+2+6βˆ’5|=5, correct; denominator √(1+4+4)=3, so 5/3 is actually correct.
B.Sign error: βˆ’2y with y=βˆ’1 gives +2, but student may have computed βˆ’2(βˆ’1)=βˆ’2. βœ…
C.Forgot absolute value; numerator is negative.
D.Denominator should be √9=3, but student used 9.
πŸ’‘ Difficulty: medium | βœ… Correct: B

πŸ“– Explanation: Recomputing: xβˆ’2y+2zβˆ’5 at (2,βˆ’1,3) is 2 βˆ’2(βˆ’1) + 2(3) βˆ’5 = 2+2+6βˆ’5=5. Denominator √(1Β²+(βˆ’2)Β²+2Β²)=√9=3. Result 5/3 is correct. But option B suggests sign error in βˆ’2y term. If student mistakenly did βˆ’2*(βˆ’1)=βˆ’2 instead of +2, numerator becomes 2βˆ’2+6βˆ’5=1, giving 1/3. Since submitted answer is 5/3, either no error or different mistake. However, option B describes a plausible error that would lead to wrong answer, making it valid distractor. The explanation clarifies correct computation and how sign mishandling in coefficient multiplication is a frequent pitfall, emphasizing careful substitution.

Q16. An architect designs a sloped roof as plane Ξ  and needs to install a vertical support beam from floor point P to Ξ . Why is the beam length equal to the distance from P to Ξ  only if the beam is perpendicular to Ξ ?

A.Because vertical direction may not align with plane’s normal; true shortest distance requires perpendicularity. βœ…
B.Vertical beams are always perpendicular to horizontal floors, hence to any roof.
C.Length equals distance only when roof is horizontal.
D.Perpendicular distance is maximum, not minimum.
πŸ’‘ Difficulty: medium | βœ… Correct: A

πŸ“– Explanation: Euclidean distance from point to plane is defined as length of perpendicular segment. A vertical beam follows gravity direction, which coincides with plane normal only if roof is horizontal. Otherwise, vertical segment is oblique to plane, longer than perpendicular distance. This distinguishes physical installation constraints from mathematical minima, highlighting that real-world applications must reconcile geometric ideals with directional limitations.

Q17. Given plane Ξ : ax+by+cz=d and point P, suppose you double all coefficients to get 2ax+2by+2cz=2d. How does this affect computed distance from P to the plane?

A.Distance doubles because coefficients doubled.
B.Distance halves due to larger denominator.
C.Distance remains unchanged because both numerator and denominator scale equally. βœ…
D.Distance becomes undefined.
πŸ’‘ Difficulty: medium | βœ… Correct: C

πŸ“– Explanation: Scaling plane equation by kβ‰ 0 yields equivalent geometric plane. Numerator |k(axβ‚€+byβ‚€+czβ‚€βˆ’d)| = |k||original|, denominator √((ka)Β²+(kb)Β²+(kc)Β²)=|k|√(aΒ²+bΒ²+cΒ²). Ratio unchanged. This invariance confirms distance depends only on geometric object, not algebraic representation. Students often mistakenly think coefficient size affects distance, confusing equation form with spatial propertyβ€”a key conceptual checkpoint.

Q18. In a navigation system, aircraft altitude is measured perpendicularly to Earth’s surface (modeled as plane). If GPS reports position (x,y,z) but terrain elevation model uses local tangent plane at (xβ‚€,yβ‚€,zβ‚€), why can’t you directly apply global plane distance formula?

A.Local tangent plane differs globally; distance must use local normal at reference point. βœ…
B.GPS coordinates are spherical, not Cartesian.
C.Altitude is always vertical, so global formula suffices.
D.Terrain models don’t involve planes.
πŸ’‘ Difficulty: easy | βœ… Correct: A

πŸ“– Explanation: Earth’s surface is curved; local tangent plane approximates region near (xβ‚€,yβ‚€,zβ‚€) with normal matching radial direction there. Global Cartesian plane assumes flat Earth, introducing errors over distance. Correct altitude uses dot product with local normal vector, not fixed global coefficients. This integrates differential geometry concepts with practical distance computation, emphasizing context-dependent modeling in applied mathematics.

Q19. A student solves for distance from P to Ξ  by minimizing βˆ₯Xβƒ—βˆ’Pβƒ—βˆ₯2\|\vec{X} - \vec{P}\|^2 subject to nβƒ—β‹…Xβƒ—=d\vec{n} \cdot \vec{X} = d using Lagrange multipliers. They obtain Ξ»=(nβƒ—β‹…Pβƒ—βˆ’d)/βˆ₯nβƒ—βˆ₯2\lambda = (\vec{n} \cdot \vec{P} - d)/\|\vec{n}\|^2. How does this relate to the standard distance formula?

A.Ξ» equals the signed distance divided by βˆ₯nβƒ—βˆ₯\|\vec{n}\|. βœ…
B.Ξ» is unrelated; Lagrange method gives different result.
C.Ξ» equals the unsigned distance.
D.Ξ» equals squared distance.
πŸ’‘ Difficulty: hard | βœ… Correct: A

πŸ“– Explanation: From Lagrange conditions, optimal X satisfies Xβƒ—=Pβƒ—βˆ’Ξ»nβƒ—\vec{X} = \vec{P} - \lambda \vec{n}. Substituting into constraint gives nβƒ—β‹…(Pβƒ—βˆ’Ξ»nβƒ—)=dβ‡’Ξ»=(nβƒ—β‹…Pβƒ—βˆ’d)/βˆ₯nβƒ—βˆ₯2\vec{n} \cdot (\vec{P} - \lambda \vec{n}) = d \Rightarrow \lambda = (\vec{n} \cdot \vec{P} - d)/\|\vec{n}\|^2. Signed distance is (nβƒ—β‹…Pβƒ—βˆ’d)/βˆ₯nβƒ—βˆ₯=Ξ»βˆ₯nβƒ—βˆ₯(\vec{n} \cdot \vec{P} - d)/\|\vec{n}\| = \lambda \|\vec{n}\|. Thus Ξ» is signed distance normalized by βˆ₯nβƒ—βˆ₯\|\vec{n}\|. This connects calculus-based optimization to geometric formula, showing consistency across methods and deepening understanding of multiplier interpretation.

Q20. Two planes intersect at 60Β°. Point P is equidistant to both. What locus describes all such points, and how does distance to each plane relate to distance to intersection line?

A.Angle bisector planes; distance to each plane equals distance to line times sin(30Β°). βœ…
B.Single bisector plane; distance to planes equals distance to line.
C.Two bisector planes; distance to each plane is independent of line distance.
D.Circle centered on line; distance varies sinusoidally.
πŸ’‘ Difficulty: hard | βœ… Correct: A

πŸ“– Explanation: Points equidistant to two intersecting planes lie on their angle bisector planes (two planes bisecting dihedral angles). For 60Β° intersection, bisectors at 30Β° to each original plane. If Q is on bisector, distance to each plane is d. Distance to intersection line L is d / sin(30Β°) = 2d, since perpendicular from Q to L forms right triangle with angle 30Β° between bisector and original plane. Thus d = (dist to L) Γ— sin(30Β°). This synthesizes solid geometry, trigonometry, and locus concepts beyond standard curriculum.

Q21. A computer graphics algorithm renders shadows by projecting points onto a light-facing plane. If projection direction isn’t perpendicular to plane, why is rendered shadow distance inaccurate for depth perception?

A.Oblique projection distorts Euclidean distance; perceived depth relies on orthogonal metrics. βœ…
B.Graphics engines always use perpendicular projection.
C.Shadow distance doesn’t affect depth perception.
D.Only color matters for depth.
πŸ’‘ Difficulty: easy | βœ… Correct: A

πŸ“– Explanation: Depth cues in vision assume orthogonal projection. Oblique projection compresses or stretches distances based on angle, causing objects to appear closer/farther than actual perpendicular distance to plane. For accurate depth rendering, either use orthogonal projection or apply corrective scaling. This links linear algebra (projection matrices) to perceptual psychology, illustrating why mathematical fidelity matters in visual computing beyond pure computation.

Q22. Student claims distance from P to plane Ξ  can be found by averaging distances from P to three non-collinear points on Ξ . Why is this generally invalid?

A.Average of point-to-point distances β‰  point-to-plane distance unless points form equilateral triangle centered at foot of perpendicular. βœ…
B.It works only if P is above centroid.
C.Averaging always underestimates true distance.
D.Three points define plane, so average must equal distance.
πŸ’‘ Difficulty: medium | βœ… Correct: A

πŸ“– Explanation: Point-to-plane distance is perpendicular length, while average of distances to arbitrary points includes oblique components. Only if the three points are symmetrically placed around the projection foot and P lies on symmetry axis might average approximate true distance. Generally, triangle inequality ensures average β‰₯ true distance, with equality only in degenerate cases. This exposes confusion between set-based and metric definitions of distance.

Q23. In crystallography, interplanar spacing dβ‚•β‚–β‚— for Miller indices (hkl) in cubic lattice is a/h2+k2+l2a/\sqrt{h^2+k^2+l^2}. How does this relate to distance between adjacent planes in family {hkl}?

A.It is exactly the perpendicular distance between consecutive planes in the family. βœ…
B.It is the distance from origin to first plane only.
C.It requires multiplying by lattice parameter a.
D.Only valid for primitive cubic lattices.
πŸ’‘ Difficulty: hard | βœ… Correct: A

πŸ“– Explanation: Miller-indexed planes {hkl} are equally spaced with separation dβ‚•β‚–β‚—. Formula derives from reciprocal lattice vector magnitude, which equals inverse of interplanar distance. For cubic systems, this simplifies to given expression. This connects abstract indexing to concrete geometric distance, showing how algebraic labels encode metric properties. Understanding this link is essential for interpreting diffraction patterns and material structure analysis.

Q24. A drone flies at constant speed along straight line toward plane Ξ . Telemetry shows distance decreasing linearly with time. What does this imply about flight path relative to Ξ ?

A.Path is perpendicular to Ξ .
B.Path is parallel to Ξ .
C.Path makes constant angle with Ξ ; linearity implies uniform rate of approach. βœ…
D.Impossible; distance should decrease quadratically.
πŸ’‘ Difficulty: medium | βœ… Correct: C

πŸ“– Explanation: If distance d(t) = |at + b| is linear, derivative |a| is constant, meaning velocity component normal to plane is constant. This occurs when path has fixed angle ΞΈ with plane normal, so normal velocity = v cosΞΈ = constant. Perpendicular case is special instance (ΞΈ=0). Linearity confirms uniform approach rate, not necessarily orthogonality. This interprets kinematic data through geometric lens, distinguishing general constant-rate motion from specific perpendicular case.

Q25. When deriving point-to-plane distance via Cauchy-Schwarz inequality, one writes ∣nβƒ—β‹…PQβƒ—βˆ£β‰€βˆ₯nβƒ—βˆ₯βˆ₯PQβƒ—βˆ₯|\vec{n} \cdot \vec{PQ}| \leq \|\vec{n}\| \|\vec{PQ}\|. Equality holds when vectors are parallel. How does this justify the distance formula?

A.Equality gives minimum βˆ₯PQβƒ—βˆ₯\|\vec{PQ}\| for fixed dot product, occurring when PQ βˆ₯ n, i.e., perpendicular. βœ…
B.Cauchy-Schwarz proves distance is always less than or equal to something.
C.Inequality direction is reversed for distance.
D.Equality condition is irrelevant to distance derivation.
πŸ’‘ Difficulty: medium | βœ… Correct: A

πŸ“– Explanation: Rearranging gives βˆ₯PQβƒ—βˆ₯β‰₯∣nβƒ—β‹…PQβƒ—βˆ£/βˆ₯nβƒ—βˆ₯\|\vec{PQ}\| \geq |\vec{n} \cdot \vec{PQ}| / \|\vec{n}\|. Right side is constant for fixed P,Q,n; left is variable distance. Minimum achieved at equality when PQ parallel to n, i.e., perpendicular to plane. Thus formula gives exact minimum distance. This grounds the formula in fundamental inequality, showing it’s not arbitrary but consequence of vector space geometry, enhancing conceptual rigor beyond memorization.

Q26. A machine learning model predicts distance to decision boundary (hyperplane) as ∣wβ‹…x+b∣|wΒ·x + b|. During validation, predictions are consistently 2Γ— too large. What likely preprocessing step was omitted?

A.Feature normalization to unit variance.
B.Dividing by βˆ₯wβˆ₯\|w\| to convert to geometric margin. βœ…
C.Removing bias term b.
D.Applying sigmoid activation.
πŸ’‘ Difficulty: easy | βœ… Correct: B

πŸ“– Explanation: ML models often output functional margin wβ‹…x+bwΒ·x+b, not geometric distance. True distance requires division by βˆ₯wβˆ₯\|w\|. Consistent 2Γ— overestimation suggests βˆ₯wβˆ₯=2\|w\|=2 was ignored. This bridges abstract math to ML practice, emphasizing that raw outputs aren’t distances without normalization. Recognizing this prevents misinterpretation of model confidence and ensures proper calibration for safety-critical applications like autonomous systems.

Q27. In proving the point-to-plane distance formula, some textbooks use volume of parallelepiped. If base area is βˆ₯nβƒ—βˆ₯\|\vec{n}\| and height is distance d, volume = βˆ₯nβƒ—βˆ₯d\|\vec{n}\| d. But volume also equals ∣nβƒ—β‹…PQβƒ—βˆ£|\vec{n} \cdot \vec{PQ}|. Why is base area βˆ₯nβƒ—βˆ₯\|\vec{n}\| and not something else?

A.Because nβƒ—\vec{n} is treated as edge vector of parallelepiped with unit base vectors. βœ…
B.Base area should be 1; volume = d.
C.n⃗\vec{n} represents normal, not edge; this derivation is flawed.
D.Volume formula uses cross product, not dot product.
πŸ’‘ Difficulty: hard | βœ… Correct: A

πŸ“– Explanation: In this derivation, parallelepiped has edges uβƒ—,vβƒ—\vec{u}, \vec{v} spanning plane (with βˆ₯uβƒ—Γ—vβƒ—βˆ₯=βˆ₯nβƒ—βˆ₯\|\vec{u} \times \vec{v}\| = \|\vec{n}\| if nβƒ—=uβƒ—Γ—vβƒ—\vec{n} = \vec{u} \times \vec{v}) and third edge PQβƒ—\vec{PQ}. Volume = ∣(uβƒ—Γ—vβƒ—)β‹…PQβƒ—βˆ£=∣nβƒ—β‹…PQβƒ—βˆ£|(\vec{u} \times \vec{v}) \cdot \vec{PQ}| = |\vec{n} \cdot \vec{PQ}|. Also volume = base area Γ— height = βˆ₯nβƒ—βˆ₯Γ—d\|\vec{n}\| \times d. Equating gives d. Base area is βˆ₯nβƒ—βˆ₯\|\vec{n}\| because nβƒ—\vec{n} is defined as cross product of basis vectors, linking algebraic and geometric interpretations coherently.

Q28. A student observes that distance from origin to plane ax+by+cz=d is |d|/√(aΒ²+bΒ²+cΒ²). They generalize that distance from any point (xβ‚€,yβ‚€,zβ‚€) is |d|/√(...) minus |axβ‚€+byβ‚€+czβ‚€|/√(...). Why is this incorrect?

A.Distances don’t subtract linearly; correct formula combines terms inside absolute value. βœ…
B.Origin distance is special case; general formula adds terms.
C.Should multiply instead of subtract.
D.General formula uses d βˆ’ (axβ‚€+...) not separate divisions.
πŸ’‘ Difficulty: medium | βœ… Correct: A

πŸ“– Explanation: Correct formula is |axβ‚€+byβ‚€+czβ‚€ βˆ’ d|/√(...), not difference of separate fractions. Subtracting individual distances ignores that signed values combine before taking absolute value. For example, if axβ‚€+byβ‚€+czβ‚€ and d have same sign, their difference could be small even if individual magnitudes large. This error stems from misapplying linearity to nonlinear absolute value operation, a subtle but critical algebraic misconception in distance computation.

πŸ”— Related Topics (MCQs)