The equation z = x² + y² describes which geometric object in 3D Cartesian space?
AA line passing through the origin
BA circle in the xy-plane
CA paraboloid — a bowl-shaped surface curving upward from the origin
DA plane tilted at 45 degrees to the xy-plane
For every input pair (x, y), the equation assigns a height z = x² + y², producing an output triple (x, y, x²+y²). Collectively, all these triples trace a paraboloid — a bowl-shaped surface that sits above the xy-plane and rises in all directions from the origin. This is the key shift from single-variable calculus: a function of one variable f(x) is a curve in 2D, but a function of two variables f(x,y) is a surface in 3D. Calling it a line or circle (options A, B) is a 2D instinct that doesn't transfer to 3D.
Question 2 Multiple Choice
A student sets up a 3D coordinate system by pointing the x-axis right, the y-axis up, and the z-axis toward them (out of the page). A classmate sets up their system with x right, y up, and z away from them (into the page). Why does this difference matter?
AIt doesn't matter — 3D coordinate systems are fully interchangeable and all formulas work in either orientation
BOne system is left-handed and one is right-handed; cross products and determinant-based formulas will give opposite signs in the two systems
CThe y-axis must always point up, so the student whose z points away is using the standard orientation
DThe difference only matters in physics, not in mathematics
The right-hand rule defines orientation: curl fingers from positive x to positive y and the thumb points in the direction of positive z. If z points out of the page (right-handed), cross products and determinants give results consistent with standard formulas. If z points into the page (left-handed), those same formulas give the opposite sign. The convention is not arbitrary — it's chosen to ensure consistency across all formulas that depend on orientation. In a left-handed system, every cross product result would need to be negated.
Question 3 True / False
The z-axis in a 3D Cartesian coordinate system should point vertically upward, because this is what distinguishes it from the x and y axes.
TTrue
FFalse
Answer: False
The vertical orientation of z is a convention, not a requirement. In some engineering and physics contexts z is vertical; in computer graphics it may be horizontal. What matters is that all three axes are mutually perpendicular and satisfy the right-hand rule. The common misconception is treating the vertical direction as inherently special — the mathematical structure of 3D Cartesian coordinates doesn't privilege any particular orientation. The axes can be freely rotated as long as perpendicularity and handedness are preserved.
Question 4 True / False
A function of two variables f(x, y) traces a surface in 3D space, in the same way that a function of one variable f(x) traces a curve in 2D space.
TTrue
FFalse
Answer: True
Yes — this is the direct extension of the pattern. In 2D, f(x) assigns an output y to each input x, and the collection of all (x, f(x)) pairs traces a curve. In 3D, f(x, y) assigns an output z to each input pair (x, y), and the collection of all (x, y, f(x,y)) triples traces a surface floating above (or below) the xy-plane. This geometric interpretation — functions as surfaces — is the conceptual foundation for partial derivatives, gradients, and double integrals in multivariable calculus.
Question 5 Short Answer
What is the right-hand rule for 3D Cartesian coordinate systems, and why is it a convention rather than a mathematical necessity?
Think about your answer, then reveal below.
Model answer: The right-hand rule: curl the fingers of the right hand from the positive x-axis toward the positive y-axis; the thumb points in the direction of positive z. It is a convention because the mathematics of 3D space does not require any particular orientation — a left-handed system is equally consistent internally. The convention exists for consistency: cross products, determinants, and curl formulas are defined to give results matching the right-hand orientation. Mixing orientations would flip signs in these formulas, causing errors.
The right-hand rule resolves an ambiguity that arises as soon as you add a third axis: there are two perpendicular directions to choose from for z, and neither is mathematically privileged. By standardizing on right-handed orientation, mathematicians and engineers ensure that formulas derived in one context apply in another. When the right-hand rule isn't respected — for example, when a 3D coordinate axis is mirrored — all cross products and rotation matrices must be adjusted, which is a common source of bugs in 3D graphics and physics simulations.