🎓 BookMCQ
← Back to 12. Three Dimensional Space: Vectors

📝 Vectors in coordinate systems components (28 MCQs)

📖 From Calculus • 12. Three Dimensional Space: Vectors • 28 questions available

What is Vectors in coordinate systems components?

Definition:
In a Cartesian system, any vector v\vec{v} can be expressed as components v=vx,vy,vz=vxi^+vyj^+vzk^\vec{v} = \langle v_x, v_y, v_z \rangle = v_x\hat{i} + v_y\hat{j} + v_z\hat{k}, where each component is the projection onto the respective axis.

Example:
A force vector F=6,8,0\vec{F} = \langle 6, -8, 0 \rangle N has horizontal component 6 N east, vertical component 8 N south, and no zz-component, lying entirely in the xyxy-plane.

Reason:
Component form converts geometric vectors into algebraic tuples, enabling computation using standard arithmetic and facilitating computer implementation in physics simulations.

1
Easy
15
Medium
12
Hard

📝 All Vectors in coordinate systems components MCQs

Q1. A drone navigates using a local coordinate system where the z-axis is aligned with gravity. If the drone’s orientation changes such that its new forward vector is v=1,2,1\mathbf{v} = \langle 1, 2, -1 \rangle in world coordinates, which transformation best describes redefining the local x-axis to align with v\mathbf{v} while maintaining an orthonormal basis?

A.Rotate the world frame so v\mathbf{v} becomes 1,0,0\langle 1,0,0 \rangle and arbitrarily assign y and z.
B.Normalize v\mathbf{v} as the new x-axis, compute a perpendicular y-axis via cross product with world up, then derive z from x × y. ✅
C.Simply set x = v\mathbf{v}, y = 0,1,0\langle 0,1,0 \rangle, z = 0,0,1\langle 0,0,1 \rangle regardless of orthogonality.
D.Project v\mathbf{v} onto the xy-plane for x, keep original z, and adjust y to preserve handedness only if determinant is positive.
💡 Difficulty: hard | ✅ Correct: B

📖 Explanation: Redefining a local orthonormal basis requires more than alignment; it demands mutual perpendicularity and unit length. Option B correctly applies Gram-Schmidt-like logic: normalize the desired axis, construct a perpendicular second axis using a known reference (world up), and complete the right-handed system via cross product. Other options ignore orthogonality constraints or assume arbitrary assignments, leading to non-physical coordinate frames unsuitable for navigation or physics simulations.

Q2. In spherical coordinates (ρ,θ,ϕ)(\rho, \theta, \phi), a student claims that the volume element is dV=ρ2sinϕdρdθdϕdV = \rho^2 \sin\phi \, d\rho \, d\theta \, d\phi because 'the Jacobian accounts for radial stretching and angular compression.' Which part of this reasoning contains a subtle conceptual error?

A.The Jacobian does not account for angular compression; it only scales volume.
B.The formula is correct but the explanation misattributes sinφ to compression rather than metric distortion from curvilinear coordinates. ✅
C.Spherical coordinates do not have a valid volume element due to singularity at origin.
D.The student confused θ and φ; sinθ should appear instead of sinφ.
💡 Difficulty: medium | ✅ Correct: B

📖 Explanation: While the volume element formula is standard, the explanation incorrectly frames sinφ as 'angular compression.' In reality, the Jacobian arises from the metric tensor in curvilinear coordinates, reflecting how infinitesimal displacements map to Euclidean space. The sinφ term comes from the circumference of latitude circles shrinking toward poles, not compression per se. This distinction matters in advanced contexts like general relativity or differential geometry, where precise interpretation of coordinate-induced distortions affects physical modeling and integration correctness.

Q3. Given two vectors a=3,1,2\mathbf{a} = \langle 3, -1, 2 \rangle and b=6,2,4\mathbf{b} = \langle -6, 2, -4 \rangle, a peer argues they are orthogonal because their dot product is zero after rounding errors in computation. What is the most rigorous way to refute this claim without recalculating?

A.Orthogonality requires exact zero dot product; approximate zeros indicate numerical error, not geometric truth.
B.Since b=2a\mathbf{b} = -2\mathbf{a}, they are parallel, making orthogonality impossible unless one is zero. ✅
C.Check if magnitudes satisfy Pythagorean theorem in triangle formed by a, b, and a+b.
D.Compute cross product magnitude; if nonzero, vectors cannot be orthogonal.
💡 Difficulty: medium | ✅ Correct: B

📖 Explanation: The key insight is recognizing scalar multiples: b=2a\mathbf{b} = -2\mathbf{a} implies collinearity. Nonzero parallel vectors can never be orthogonal, as their angle is 0° or 180°, yielding dot product ±|a||b| ≠ 0. Relying on numerical computation invites floating-point errors; structural analysis avoids this pitfall. This tests conceptual understanding over mechanical calculation and highlights why algebraic relationships trump approximate arithmetic in verifying geometric properties rigorously.

Q4. A robotics arm uses cylindrical coordinates (r,θ,z)(r, \theta, z) for motion planning. During calibration, engineers notice position errors increase near θ = π despite identical r and z values. Which underlying issue most likely explains this asymmetry?

A.Cylindrical coordinates have inherent discontinuity at θ = π causing numerical instability in trigonometric functions.
B.The coordinate system is fine; sensor noise correlates with gravitational loading at that orientation.
C.Jacobian determinant vanishes at θ = π, amplifying small input errors into large positional deviations.
D.Unit basis vectors θ^\hat{\theta} reverse direction abruptly at θ = π, breaking smooth interpolation algorithms. ✅
💡 Difficulty: hard | ✅ Correct: D

📖 Explanation: In cylindrical coordinates, θ^=sinθ,cosθ,0\hat{\theta} = \langle -\sin\theta, \cos\theta, 0 \rangle is continuous everywhere, but its derivative has issues at branch cuts. However, the real problem in practice is algorithmic: many interpolation schemes assume smooth variation of basis vectors, but at θ = π (or any branch cut), numerical differentiation or finite differences misinterpret the sign flip as rapid change. This isn't a mathematical singularity (Jacobian = r ≠ 0 at r>0), but a computational artifact from improper handling of angular periodicity in discrete systems.

Q5. Consider the vector field F(x,y,z)=y/(x2+y2),x/(x2+y2),0\mathbf{F}(x,y,z) = \langle -y/(x^2+y^2), x/(x^2+y^2), 0 \rangle. A student computes curl F = 0 everywhere except origin and concludes F is conservative on ℝ³\\{z-axis}. Why is this conclusion invalid despite zero curl?

A.Curl being zero is necessary but insufficient when domain is not simply connected; path dependence persists around z-axis. ✅
B.The field is undefined on z-axis, so curl calculation excludes critical region where circulation originates.
C.Conservative fields must have zero divergence, not just zero curl; div F ≠ 0 here.
D.Student forgot to check if partial derivatives are continuous; they aren’t at origin.
💡 Difficulty: hard | ✅ Correct: A

📖 Explanation: Zero curl implies local conservativeness, but global conservativeness requires simple connectivity. ℝ³ minus z-axis has nontrivial topology (fundamental group ℤ); closed loops encircling z-axis yield nonzero line integral ∮F·dr = 2π. Thus, no single-valued potential exists globally. This exemplifies HOTS: distinguishing local differential conditions from global topological obstructions. Misconception arises from overgeneralizing calculus theorems beyond their domain assumptions, common in multivariable courses lacking topology context.

Q6. When converting point P from Cartesian to spherical coordinates, a solver obtains ρ = 5, θ = arctan(−1/√3), φ = arccos(3/5). But verification shows reconstructed Cartesian z-coordinate is −3 instead of +3. What step introduced the error?

A.arccos returns values in [0,π], so φ is correct; error lies in θ quadrant adjustment.
B.ρ was miscalculated; should be √(x²+y²+z²) with z=+3 giving same ρ.
C.φ was computed as arccos(z/ρ) assuming z>0, but actual z<0 requires φ > π/2. ✅
D.No error; spherical coordinates allow multiple representations, and both are valid.
💡 Difficulty: medium | ✅ Correct: C

📖 Explanation: arccos(z/ρ) always returns φ ∈ [0,π], where φ=0 is +z and φ=π is −z. If true z=+3, φ=arccos(3/5)≈53° is correct. Getting z=−3 upon reconstruction implies either wrong φ or sign error in formula z=ρcosφ. Since cos(arccos(3/5))=3/5>0, reconstructed z must be positive. Thus, the stated result z=−3 indicates the solver used z=−3 in arccos initially, contradicting premise. This tests careful tracking of inverse trig ranges and reconstruction consistency, exposing confusion between input assumption and output validation.

Q7. An engineer models wind velocity in atmospheric layers using geographic coordinates (lat, lon, alt). Near the North Pole, eastward velocity components become numerically unstable despite smooth physical flow. Which coordinate-independent principle explains this instability?

A.Wind speed approaches zero at pole, causing division-by-zero in component extraction.
B.Geographic coordinates introduce artificial singularities where basis vectors degenerate, unrelated to physics. ✅
C.Coriolis effect dominates near poles, overwhelming numerical schemes.
D.Altitude discretization interacts poorly with polar convergence zones.
💡 Difficulty: medium | ✅ Correct: B

📖 Explanation: The instability stems from coordinate singularity, not physics. At poles, longitude is undefined and e^lon\hat{e}_{lon} loses meaning; small changes in position cause large swings in lon-component even for smooth vector fields. This is purely a representation artifact. True wind velocity remains smooth and finite. Solutions include switching to stereographic projection or tangent-plane coordinates locally. Recognizing coordinate vs. physical singularities is crucial in geophysical modeling; confusing them leads to erroneous conclusions about atmospheric behavior or unnecessary model complexity.

Q8. Two students debate whether the magnitude of cross product a×b|\mathbf{a} \times \mathbf{b}| equals area of parallelogram spanned by a and b in all coordinate systems. Student A says yes universally; Student B says only in orthonormal Cartesian. Who is correct and why?

A.Student A; cross product definition is geometric and coordinate-invariant. ✅
B.Student B; cross product components depend on metric, so magnitude varies in skewed coordinates.
C.Both wrong; area requires absolute value of determinant, not cross product.
D.Student A partially right, but only if coordinates are right-handed.
💡 Difficulty: medium | ✅ Correct: A

📖 Explanation: Cross product magnitude is defined geometrically as |a||b|sinθ, independent of coordinates. While component formulas differ in non-Cartesian systems, the resulting vector’s magnitude still gives true area because the cross product itself transforms covariantly to preserve geometric meaning. In curvilinear coordinates, one must use proper scale factors or metric tensors in computations, but the invariant quantity remains area. Student B confuses computational representation with intrinsic geometry. This tests deep understanding of tensorial nature versus coordinate artifacts, essential for physics and engineering applications across diverse frames.

Q9. A satellite orbit is described in ecliptic coordinates, but ground stations use ECEF. Transforming position vectors introduces systematic bias in altitude estimates during equinoxes. Which mixed-concept factor most likely causes this seasonal error?

A.Precession of equinoxes shifts ecliptic-ECEF rotation matrix annually, unaccounted for in static transform.
B.Atmospheric refraction varies seasonally, distorting apparent position differently than true vector.
C.ECEF rotates with Earth, while ecliptic is inertial; neglecting Earth’s axial tilt modulation creates periodic mismatch. ✅
D.Solar radiation pressure alters orbit shape seasonally, mimicking coordinate transform error.
💡 Difficulty: hard | ✅ Correct: C

📖 Explanation: ECEF is Earth-fixed and rotates daily; ecliptic is inertial relative to stars. The transformation requires accounting for Earth’s rotation AND axial tilt (obliquity ~23.4°), which modulates the relationship between celestial and terrestrial frames throughout the year. During equinoxes, Sun crosses celestial equator, maximizing certain projection effects. Static transforms ignoring time-varying orientation accumulate seasonal errors. This blends coordinate systems, rotational dynamics, and astronomy—testing integration of multiple domains beyond pure vector math, typical in aerospace navigation where oversimplified transforms cause real mission risks.

Q10. Graph shows level curves of scalar function f(x,y) and vector field V(x,y) overlaid. At point P, V is tangent to level curve, yet ∇f(P) ≠ 0. Student concludes V is gradient of some other function g. Is this inference valid based solely on tangency?

A.Yes; tangency to level curves implies V is orthogonal to ∇f, hence parallel to ∇g for some g.
B.No; many non-gradient fields are tangent to level curves of unrelated functions.
C.Only if V also satisfies curl V = 0 in neighborhood of P.
D.Tangency alone is insufficient; need additional condition like V · ∇f = 0 and integrability. ✅
💡 Difficulty: medium | ✅ Correct: D

📖 Explanation: Tangency means V · ∇f = 0, so V lies in kernel of df. But being tangent to one function’s level sets doesn’t guarantee V is a gradient field; e.g., rotational fields like ⟨−y,x⟩ are tangent to circles (level sets of x²+y²) but aren’t gradients. For V to be ∇g, it must satisfy curl-free condition (in 2D, ∂V₂/∂x = ∂V₁/∂y) plus domain simplicity. Graph-based interpretation requires combining visual cue (tangency) with analytical criteria (integrability). This prevents overinterpreting geometric patterns without verifying differential constraints, a common pitfall in vector calculus visualization.

Q11. In parabolic cylindrical coordinates (u,v,z), surfaces u=const and v=conf are orthogonal parabolic cylinders. A student derives scale factors h_u = h_v = √(u²+v²), h_z=1, then claims volume element is (u²+v²) du dv dz. But textbook says h_u h_v = u²+v². Are both expressions equivalent?

A.Yes; h_u h_v = (√(u²+v²))² = u²+v², so volume element matches. ✅
B.No; student squared individual scale factors incorrectly; should multiply distinct h_u and h_v.
C.Textbook is wrong; student’s derivation follows standard procedure.
D.Equivalence depends on whether u,v are defined symmetrically; check coordinate definitions.
💡 Difficulty: easy | ✅ Correct: A

📖 Explanation: Scale factors h_u and h_v are each √(u²+v²) in standard parabolic cylindrical coordinates. Volume element is h_u h_v h_z du dv dz = (√(u²+v²))(√(u²+v²))(1) du dv dz = (u²+v²) du dv dz. Both expressions are algebraically identical. This direct recall question verifies foundational knowledge of curvilinear volume elements, ensuring students recognize that multiplying identical square roots yields the radicand. While simple, it anchors more complex HOTS questions by confirming baseline competency before tackling nuanced misconceptions about metric tensors or coordinate singularities.

Q12. A physics simulation uses normalized vectors for force directions. After normalization, dot products between supposedly orthogonal forces deviate from zero by ~10⁻⁶. Developer suspects floating-point error, but colleague argues normalization process inherently destroys orthogonality. Which perspective is correct?

A.Normalization preserves angles exactly in exact arithmetic; deviation is purely numerical roundoff. ✅
B.Gram-Schmidt would maintain orthogonality better than individual normalization.
C.Colleague is right; dividing by magnitude introduces nonlinear distortion altering angles.
D.Orthogonality loss indicates bug in vector library implementation.
💡 Difficulty: medium | ✅ Correct: A

📖 Explanation: Normalization n̂ = n/|n| is conformal—it preserves angles in exact arithmetic because it’s uniform scaling. Floating-point operations introduce tiny errors during division and storage, causing apparent non-orthogonality. Individual normalization doesn’t couple vectors, so orthogonality shouldn’t degrade systematically. If deviations correlate with magnitude extremes or specific operations, suspect numerical precision limits, not algorithmic flaw. Gram-Schmidt helps when constructing bases from non-orthogonal inputs, but isn’t needed here. Distinguishing numerical artifacts from theoretical properties prevents unnecessary code refactoring and builds robust debugging intuition for scientific computing.

Q13. Engineer designs antenna array using vector addition in spherical coordinates. Summing two equal-magnitude vectors at same ρ,φ but θ differing by 180° yields near-zero resultant, but expected cancellation fails at φ=0. Why does symmetry break specifically at pole?

A.At φ=0, θ is undefined; vectors with different θ represent same physical direction, so no cancellation occurs. ✅
B.Numerical underflow in sinφ term corrupts vector components near pole.
C.Antenna elements physically overlap at pole, causing constructive interference.
D.Spherical coordinate addition isn’t linear; must convert to Cartesian first.
💡 Difficulty: hard | ✅ Correct: A

📖 Explanation: At φ=0 (north pole), all θ values correspond to identical spatial point. Two vectors specified with different θ but same ρ,φ=0 are actually the same vector, not opposites. True antipodal points require φ→π−φ and θ→θ+π. Attempting to cancel by varying θ alone at pole is meaningless since θ loses significance. This exposes critical limitation: spherical coordinates aren’t globally suitable for vector operations involving angular differences near singularities. Proper approach requires Cartesian conversion or alternative parametrization. Tests understanding of coordinate degeneracy versus physical reality in applied electromagnetics.

Q14. Student solves for angle between vectors using cosθ = (a·b)/(|a||b|) and gets θ = arccos(1.0001), triggering domain error. Instead of clamping, instructor asks what this reveals about input data. Best diagnostic insight is:

A.Vectors were computed from noisy measurements violating Cauchy-Schwarz inequality. ✅
B.Floating-point imprecision caused slight exceedance; clamp to 1 safely.
C.One vector is zero, making denominator undefined and ratio spurious.
D.Dot product formula was misapplied; should use sine for obtuse angles.
💡 Difficulty: medium | ✅ Correct: A

📖 Explanation: Cauchy-Schwarz guarantees |a·b| ≤ |a||b|, so ratio must lie in [−1,1]. Value >1 implies inputs violate this fundamental inequality, indicating corrupted data, incorrect vector definitions, or prior computational errors (e.g., inconsistent units, wrong components). While floating-point can cause minor exceedances, 1.0001 suggests significant issue beyond rounding. Clamping masks root cause. Zero vector would cause NaN, not >1. Sine formula isn’t relevant. This error-analysis question trains students to treat numerical anomalies as diagnostic signals rather than nuisances, fostering rigorous validation habits essential in experimental sciences and engineering where data integrity precedes computation.

Q15. Comparing methods to find shortest distance from point P to line L: Method 1 uses projection formula; Method 2 minimizes ||P − Q(t)||² via calculus. Under what condition do these methods yield divergent results despite correct implementation?

A.Never; both are mathematically equivalent formulations of same optimization problem.
B.Method 2 fails if line is parameterized non-linearly (e.g., quadratic in t). ✅
C.Projection assumes infinite line; Method 2 may find minimum on segment if constrained.
D.Divergence occurs only in non-Euclidean geometries.
💡 Difficulty: hard | ✅ Correct: B

📖 Explanation: Standard projection assumes affine parameterization Q(t) = A + tB. If line is given as Q(t) = A + t²B or other nonlinear param, minimizing ||P−Q(t)||² finds critical points of distorted parameter space, not necessarily closest Euclidean point. Projection formula relies on linear structure; it directly computes orthogonal complement regardless of parametrization. Thus, method equivalence holds only for linear parameterizations. This tests awareness that mathematical equivalence depends on representation, not just abstract objects. Crucial in CAD/computer graphics where curves are often nonlinearly parameterized, leading to subtle bugs if geometric primitives are assumed affine.

Q16. In toroidal coordinates used in plasma physics, magnetic field lines follow constant ψ surfaces. Researcher observes that ∇ψ × B ≠ 0 numerically despite theory predicting alignment. After verifying code, what non-obvious coordinate-system-specific reason could explain residual misalignment?

A.Toroidal coordinates have non-diagonal metric tensor; naive cross product ignores off-diagonal terms. ✅
B.Plasma instabilities generate small perpendicular field components absent in ideal MHD.
C.Numerical grid doesn’t conform to flux surfaces, introducing interpolation errors.
D.∇ψ and B are aligned only in contravariant components; covariant computation needed.
💡 Difficulty: hard | ✅ Correct: A

📖 Explanation: In orthogonal curvilinear systems, cross product uses scale factors cleanly. Toroidal coordinates are generally non-orthogonal, so metric tensor g_ij has off-diagonal elements. Standard cross product formula assumes orthogonality; applying it directly yields incorrect vector directions. Correct computation requires full tensor formulation: (A×B)^i = ε^{ijk} A_j B_k / √g. Residual misalignment persists even with perfect data if coordinate non-orthogonality is ignored. This Olympiad-level question integrates differential geometry, plasma physics, and numerical methods, testing ability to diagnose failures rooted in advanced coordinate theory beyond standard curriculum, vital for fusion research accuracy.

Q17. A navigation app converts GPS (WGS84 ellipsoidal) to local ENU coordinates. User reports consistent 2m eastward offset at all locations. Technician checks transformation equations and finds no algebraic error. Most probable overlooked factor is:

A.Ellipsoid-to-sphere approximation introduces systematic bias in east component.
B.Prime meridian definition differs between WGS84 and local datum, shifting longitude zero.
C.ENU origin’s geodetic height wasn’t accounted for in vertical-to-horizontal coupling.
D.Software uses outdated WGS84 realization (e.g., G730 vs G1762) with shifted parameters. ✅
💡 Difficulty: hard | ✅ Correct: D

📖 Explanation: WGS84 has multiple realizations updated over decades as measurement improved. G730 (1994) and G1762 (2013) differ by meters in station positions. Using mismatched realizations in transform causes fixed offsets. Ellipsoid approximations cause latitude-dependent errors, not uniform east shift. Prime meridian shift affects longitude globally but manifests as location-dependent error. Height coupling affects vertical primarily. Realization mismatch produces consistent bias matching symptom. This tests awareness that coordinate systems aren’t static abstractions but evolving standards with practical consequences. Critical in surveying/geodesy where ignoring metadata leads to costly errors despite correct math.

Q18. Student graphs vector field F = ⟨x, y, z⟩ and claims divergence is constant because arrows grow uniformly outward. Instructor asks how graph visually confirms div F = 3 without computation. Best visual evidence is:

A.Arrow density increases proportionally to radius, indicating source strength per volume.
B.Flux through concentric spheres scales as r³, implying volumetric source density constant.
C.Spacing between streamlines decreases as 1/r², balancing area growth for constant divergence.
D.All arrows point radially with length ∝ r, so expansion rate is isotropic and uniform. ✅
💡 Difficulty: medium | ✅ Correct: D

📖 Explanation: For F=r, each component grows linearly, so ∂F_x/∂x=1 etc., sum=3. Visually, uniform radial growth with magnitude proportional to distance means every infinitesimal volume expands at same fractional rate regardless of position. Arrow length ∝ r ensures that relative stretching is constant. Density arguments (A,B,C) relate to flux or streamline spacing, which involve additional geometric factors (area, volume scaling) and don’t directly show pointwise divergence. Only D captures the local expansion property encoded in divergence. Tests translation between analytic definition and intuitive visual representation, bridging abstraction and perception in vector field analysis.

Q19. In crystallography, reciprocal lattice vectors are defined via b_i = 2π (a_j × a_k)/(a_i · (a_j × a_k)). Student computes b_1 using cyclic permutation but gets wrong direction. Error analysis reveals they used left-handed triple {a_1,a_2,a_3}. How does handedness affect reciprocal vector direction?

A.Reciprocal vectors reverse direction if direct lattice is left-handed, preserving b_i · a_j = 2πδ_ij.
B.Formula assumes right-handed system; left-handed input flips sign of denominator scalar triple product. ✅
C.Handedness doesn’t matter; cross product auto-corrects via right-hand rule.
D.Student should take absolute value of denominator to ensure positive scaling.
💡 Difficulty: medium | ✅ Correct: B

📖 Explanation: Scalar triple product a_i·(a_j×a_k) is positive for right-handed triples, negative for left-handed. Cross product a_j×a_k follows right-hand rule regardless of input handedness, so numerator direction stays consistent with RH convention. Denominator sign flip makes entire b_i opposite to correct direction. To fix, either enforce RH ordering or use |denominator|. Reciprocal lattice definition implicitly assumes RH direct lattice; violating this breaks duality condition b_i·a_j=2πδ_ij. This tests attention to implicit conventions in advanced applications, where overlooking orientation assumptions corrupts physical interpretations in diffraction and band structure calculations.

Q20. Modeling ocean currents, researcher uses sigma coordinates (terrain-following). Vertical velocity w_sigma differs from true vertical w_z. When transforming momentum equations, extra terms appear. Which mixed-concept origin explains these terms?

A.Sigma coordinates introduce time-dependent vertical stretching, generating advective acceleration terms.
B.Curvature of Earth adds Coriolis-like fictitious forces in terrain-following frames.
C.Metric tensor time-dependence produces Christoffel symbols representing coordinate acceleration. ✅
D.Pressure gradient projects differently onto sloped sigma surfaces, requiring geometric correction.
💡 Difficulty: hard | ✅ Correct: C

📖 Explanation: Sigma coordinates z_σ = σ(x,y,z,t) make vertical coordinate time/space dependent. When taking material derivative D/Dt in these coordinates, chain rule generates ∂z_σ/∂t and ∂z_σ/∂x terms. These manifest as Christoffel symbols in covariant derivative, representing inertial effects from accelerating/deforming grid. Not mere advection (A) or pressure projection (D); it’s fundamental consequence of non-inertial, time-varying coordinates. Requires blending continuum mechanics, differential geometry, and fluid dynamics. Tests recognition that coordinate transformations in PDEs induce geometric forces beyond simple variable substitution, crucial for accurate climate/ocean modeling where grid motion couples to physics.

Q21. Two vectors a and b satisfy a × b = c and b × c = a. Student deduces |a|=|b|=|c|=1 and mutual orthogonality. Is this deduction sufficient to conclude {a,b,c} forms right-handed orthonormal basis?

A.Yes; given relations uniquely define right-handed orthonormal triad up to rotation.
B.No; could also be left-handed system with sign flips satisfying same equations.
C.Additional condition a · (b × c) > 0 needed to confirm handedness. ✅
D.Magnitude conditions don’t guarantee orthogonality; dot products must be verified separately.
💡 Difficulty: medium | ✅ Correct: C

📖 Explanation: From a×b=c and b×c=a, we get c·a = (a×b)·a = 0, similarly others orthogonal. Magnitudes: |c|=|a||b|sinθ, |a|=|b||c|sinφ. Solving gives |a|=|b|=|c|=1 and sinθ=sinφ=1 ⇒ orthogonal. But handedness ambiguous: if {a,b,c} satisfies, so does {−a,−b,c} or other sign combos preserving cross products. Right-handedness requires a·(b×c)>0. Without this, could be left-handed. Deduction gives orthonormality but not orientation. Tests precision in basis characterization: magnitude and orthogonality necessary but insufficient for oriented basis. Vital in robotics/graphics where chirality affects transformations and physical laws.

Q22. GPS receiver calculates position using pseudorange vectors in ECEF. Multipath error causes one satellite’s vector to reflect off building, arriving later. Receiver treats delayed signal as longer straight-line path. Resulting position error vector points:

A.Directly away from reflecting surface along incident ray.
B.Perpendicular to building facade in horizontal plane.
C.Along bisector of true and reflected ray directions at receiver. ✅
D.Opposite to gradient of travel-time field induced by reflection.
💡 Difficulty: hard | ✅ Correct: C

📖 Explanation: Multipath creates two paths: direct and reflected. Receiver assumes single straight path with measured delay corresponding to longer path length. Estimated position lies somewhere along locus of points with that total path length—an ellipse with foci at satellite and receiver. For small delays, error vector approximates direction midway between true and apparent source directions, i.e., bisector. Not purely away from wall (A) or perpendicular (B); depends on geometry. Gradient concept (D) applies to continuous media, not discrete reflections. Tests synthesis of wave propagation, estimation theory, and vector geometry in real-world sensing, distinguishing naive intuition from actual error morphology in navigation systems.

Q23. In quantum mechanics, spin operators obey [S_i, S_j] = iħε_{ijk}S_k. Student represents spin states as 3D vectors and tries to visualize commutator as cross product. Why is this classical vector analogy fundamentally flawed despite formal similarity?

A.Spin lives in Hilbert space, not ℝ³; commutator reflects non-commuting observables, not geometric rotation. ✅
B.Cross product is antisymmetric bilinear map; commutator includes imaginary unit making it anti-Hermitian.
C.Classical vectors commute under cross product in sense of associativity; quantum operators don’t.
D.ε_{ijk} appears in both, but spin dimensionality is 2s+1, not 3.
💡 Difficulty: medium | ✅ Correct: A

📖 Explanation: While SU(2) Lie algebra mirrors SO(3) cross product structurally, spinors transform under double cover of rotation group. Spin state vectors exist in complex projective space, not physical 3D space. Commutator encodes uncertainty relations and measurement incompatibility, not spatial geometry. Visualizing as cross product conflates representation space with physical space, leading to misconceptions about spin “direction.” Formal analogy useful computationally but ontologically misleading. Tests boundary between mathematical isomorphism and physical interpretation, crucial in modern physics where abstract algebras describe phenomena beyond classical intuition. Prevents reification of mathematical tools as literal realities.

Q24. Autonomous vehicle fuses LiDAR (Cartesian) and camera (pixel) data via extrinsic calibration. After calibration, fused object positions drift systematically when turning left vs right. Calibration matrix is constant. Most likely unmodeled factor is:

A.Lens distortion varies with steering-induced vibration, changing effective intrinsics.
B.Roll angle during turns couples with pitch/yaw miscalibration, creating asymmetric reprojection errors.
C.LiDAR beam divergence interacts asymmetrically with curved road surfaces during turns.
D.Coordinate frame attachment point shifts due to suspension compliance under lateral load. ✅
💡 Difficulty: hard | ✅ Correct: D

📖 Explanation: Vehicle suspension compresses laterally during turns, moving sensor mounts relative to nominal calibration frame. Left/right turns induce opposite lateral loads, causing asymmetric frame shifts. Constant extrinsics can’t capture this dynamic deformation. Lens distortion (A) would affect both turns similarly. Roll-pitch coupling (B) might cause asymmetry but usually symmetric in well-calibrated systems. Beam divergence (C) affects range, not directional bias correlated with turn direction. Tests integration of mechanical engineering, sensor fusion, and coordinate dynamics. Real-world systems aren’t rigid bodies; ignoring structural flexibility causes persistent errors despite perfect static calibration, demanding adaptive or multi-body modeling.

Q25. Student derives gradient in cylindrical coordinates as ∇f = ∂f/∂r r̂ + (1/r)∂f/∂θ θ̂ + ∂f/∂z ẑ. Then claims that for f(r)=ln r, ∇f = (1/r)r̂ has constant magnitude 1/r. But plots show magnitude decreasing with r. Contradiction resolved by noting:

A.Magnitude is indeed 1/r; plot must have logarithmic scaling artifact.
B.Gradient magnitude in curvilinear coords requires metric: |∇f|² = g^{ij}∂_i f ∂_j f. ✅
C.Student forgot θ̂ component contributes even when ∂f/∂θ=0.
D.ln r is multivalued; gradient undefined beyond branch cut.
💡 Difficulty: medium | ✅ Correct: B

📖 Explanation: In orthogonal curvilinear coordinates, |∇f|² = Σ (1/h_i²)(∂f/∂u_i)². For f=ln r, only r-component: |∇f| = |(1/r)| / h_r = (1/r)/1 = 1/r. So magnitude does decrease as 1/r. Plot showing decrease is correct; student’s statement “constant magnitude 1/r” is self-contradictory phrasing (“constant” vs “1/r”). Resolution: magnitude isn’t constant; it’s 1/r. But deeper issue is ensuring students apply metric correctly. Option B emphasizes general formula, preventing future errors with non-trivial f. Tests careful reading and metric awareness, distinguishing verbal description from mathematical truth in coordinate-dependent quantities.

Q26. In special relativity, four-vectors transform via Lorentz boosts. Student applies boost to spacetime interval ds² = −c²dt² + dx² + dy² + dz² and expects invariance. Computation shows ds'² ≠ ds² numerically. Before blaming code, what invariant-related check should precede debugging?

A.Verify metric signature convention matches boost matrix definition (mostly minus vs mostly plus). ✅
B.Confirm boost velocity β < 1 to avoid superluminal transformation errors.
C.Check if using contravariant vs covariant components consistently in contraction.
D.Ensure c=1 units are applied uniformly across all terms.
💡 Difficulty: medium | ✅ Correct: A

📖 Explanation: Lorentz invariance holds only if metric η_μν and boost Λ^μ_ν use compatible signatures. Common mismatch: defining ds² = −dt²+dx²+... but using boost derived for +dt²−dx²−.... This flips signs in transformed interval, breaking apparent invariance despite correct algebra. Velocity limit (B) prevents singularities but doesn’t cause sign errors. Index placement (C) matters for tensors but interval is scalar. Units (D) affect magnitude, not invariance failure. Signature inconsistency is frequent silent bug in relativistic codes. Tests meta-awareness that invariants depend on consistent framework setup, not just computation. Foundational for any tensor-based physics simulation.

Q27. Topographic map uses UTM coordinates. Surveyor measures bearing between two points as 45° on map, but field compass reads 48°. Declination is corrected. Remaining discrepancy attributed to grid convergence. How does grid convergence arise from coordinate system design?

A.UTM zones use transverse Mercator projection where meridians converge toward central meridian, making grid north deviate from true north. ✅
B.Map paper shrinks unevenly with humidity, distorting angles locally.
C.Compass affected by local magnetic anomalies not captured in declination model.
D.UTM grid lines are curved on ellipsoid but drawn straight on map, introducing angular distortion.
💡 Difficulty: medium | ✅ Correct: A

📖 Explanation: Transverse Mercator projects ellipsoid onto cylinder tangent along central meridian. Away from CM, true meridians curve toward CM while grid lines remain straight and parallel. Angle between grid north and true north is grid convergence, increasing with distance from CM and latitude. Bearing measured on map is grid bearing; field compass gives magnetic bearing corrected to true bearing. Difference after declination correction is precisely grid convergence. Not paper distortion (B), local anomaly (C), or drawing artifact (D)—it’s inherent to conformal map projection geometry. Tests application of geodesy concepts to practical surveying, linking abstract projection theory to real-world measurement reconciliation.

Q28. Fluid dynamicist simulates turbulence in rotating frame using cylindrical coordinates. Vorticity ω = ∇×u computed via standard formula yields spurious azimuthal component near axis despite axisymmetric flow. Root cause tied to coordinate singularity is:

A.∂/∂θ terms blow up as r→0 even when ∂u/∂θ=0 analytically.
B.Basis vector derivatives ∂θ̂/∂θ = −r̂ introduce artificial sources in curl expression. ✅
C.Numerical differentiation amplifies roundoff in 1/r factors near r=0.
D.Axisymmetry assumption invalid near core due to viscous boundary layer effects.
💡 Difficulty: hard | ✅ Correct: B

📖 Explanation: In cylindrical coordinates, curl involves derivatives of basis vectors: ∇×u includes terms like (1/r)∂(ru_θ)/∂r and ∂u_r/∂θ, but also implicit contributions from ∂ê_i/∂x_j. Specifically, ∂θ̂/∂θ = −r̂ means even if u_θ independent of θ, the changing basis introduces r̂-component in derivatives. Near r=0, these terms become singular unless handled with limiting procedures or regularized coordinates. Standard formula assumes smoothness, but at axis, coordinate singularity manifests as spurious components. Numerical issues (C) exacerbate but aren’t root cause. Tests deep understanding of vector calculus in singular coordinates, essential for accurate CFD near symmetry axes where naive implementations fail catastrophically.

🔗 Related Topics (MCQs)