STATICS • MOMENTS AND COUPLES

Moment About a Point: 3D — Compute moment of a force about a point (3D)

Extending the cross-product formulation to three dimensions reveals how forces produce rotation about arbitrary points in space.

Historical Context & Motivation

The concept of a moment — the turning effect of a force about a point — has been at the heart of mechanics since antiquity. Archimedes articulated the lever principle in two dimensions around 250 BCE, but it took nearly two millennia before mathematicians possessed the algebraic tools to extend that idea into three-dimensional space. The development of vector algebra and, in particular, the cross product in the nineteenth century gave engineers a compact and powerful way to compute the moment of a force about any point in 3D. This mathematical leap was essential for the analysis of spatial structures — bridges, cranes, aircraft, and robotic manipulators — where forces rarely act in a single plane.

~250 BCE
Archimedes and the Lever
Archimedes formalizes the law of the lever, establishing that a system is in rotational equilibrium when the sum of force-times-distance products about the fulcrum equals zero — the earliest rigorous statement of moment balance in 2D.
1687
Newton's Principia
Isaac Newton publishes the Principia Mathematica, which treats forces as vectors and implicitly uses moment arms, laying the groundwork for rotational dynamics in three dimensions.
1773
Euler's Rigid-Body Equations
Leonhard Euler derives the equations of motion for a rigid body in 3D, requiring systematic computation of moments about the center of mass — the first rigorous 3D moment analysis.
1843–1850
Cross Product Formalized
William Rowan Hamilton (quaternions, 1843) and Hermann Grassmann (exterior algebra, 1844) independently develop the algebraic structures from which Josiah Willard Gibbs later distills the modern vector cross product, providing the compact notation M = r × F used today.
20th Century
Modern Structural & Robotic Analysis
The cross-product moment formulation becomes central to computational statics, finite element analysis, and robot kinematics, enabling engineers to automate equilibrium checks for complex 3D assemblies.

The central question this lesson addresses is straightforward yet powerful: given a force vector F applied at a known point in space, how do we compute the moment vector M that the force produces about an arbitrary point? The answer lies in the cross product M = r × F, where r is the position vector from the moment point to any point on the line of action of the force.

Core Principles & Definitions

Before diving into computation, it is essential to ground the discussion in a few foundational ideas. The moment of a force about a point quantifies the tendency of that force to rotate the body about the point. In 3D, the moment is itself a vector: it has a magnitude (the intensity of the turning effect) and a direction (the axis about which the rotation tends to occur, determined by the right-hand rule). This vector nature distinguishes the 3D treatment from the simpler scalar moment used in planar problems, where a sign convention suffices to indicate clockwise or counterclockwise rotation.

1

Position Vector r

The vector drawn from the moment center O to any point on the line of action of F. Different choices of point on the line of action yield different r vectors but the same cross product result.
2

Cross Product M = r × F

The moment vector is computed as the cross product of r and F. This operation produces a vector perpendicular to the plane containing r and F, with magnitude |r||F| sin θ.
3

Right-Hand Rule

Curl the fingers of your right hand from r toward F; your thumb points in the direction of M. This convention assigns the positive sense of the moment axis and is essential for consistent sign bookkeeping.
4

Moment Magnitude

The scalar magnitude |M| = |r||F| sin θ equals the product of the force magnitude and the perpendicular distance (moment arm d = |r| sin θ) from the moment center to the line of action of F.
5

Principle of Transmissibility

A force may be slid along its line of action without changing the moment it produces about any point. This is why the choice of application point along the line of action does not affect M.
KEY TAKEAWAY
Think of the cross product M = r × F as a 3D generalization of the lever principle. Just as Archimedes multiplied force by distance to the fulcrum, the cross product multiplies r by F and automatically extracts the perpendicular component that actually causes rotation. The bonus in 3D is that the cross product also hands you the axis of rotation as the direction of the resulting vector — something a scalar equation cannot do. It is analogous to a torque wrench: the handle defines r, the pull defines F, and the wrench tells you both how hard and in which direction the bolt will rotate.

Visual Explanation

The moment center O (cyan dot) is the origin of the position vector r (amber arrow) directed toward point A on the line of action of F (red arrow). The resulting moment M (violet arrow) is perpendicular to the plane containing r and F, with direction governed by the right-hand rule. The angle θ between r and F determines the moment arm d = |r| sin θ.

In the diagram above, notice that the moment vector M points out of the plane formed by r and F. This is always the case with a cross product: the result is orthogonal to both input vectors. The magnitude |M| equals the area of the parallelogram formed by r and F, which can be verified geometrically as |r||F| sin θ. In a planar (2D) problem, M would reduce to a single scalar component (typically Mz), but in 3D the moment generally has components along all three coordinate axes. Reading the direction of M via the right-hand rule is a crucial skill: curl your right-hand fingers from r toward F through the smaller included angle θ, and your thumb gives the sense of M.

Mathematical Framework

The 3D moment calculation rests on the formal definition of the vector cross product. Given a force F = Fxî + Fyĵ + Fz applied at a point whose position relative to the moment center O is r = rxî + ryĵ + rz, the moment is obtained from the following determinant expansion.

MOMENT VECTOR (CROSS PRODUCT)
M = r × F = | î ĵ k̂ | = (r_y F_z − r_z F_y) î − (r_x F_z − r_z F_x) ĵ + (r_x F_y − r_y F_x) k̂ | r_x r_y r_z | | F_x F_y F_z |
Where r = position vector from O to any point on the line of action of F, and F = force vector. The subscripts denote Cartesian components along the x, y, z axes respectively.
COMPONENT FORM
M_x = r_y F_z − r_z F_y M_y = r_z F_x − r_x F_z M_z = r_x F_y − r_y F_x
Each component represents the moment about the corresponding coordinate axis through O. Note the cyclic permutation pattern: x → y → z → x. The negative sign in the ĵ component of the determinant expansion is absorbed into the cyclic formula for My.
MAGNITUDE OF THE MOMENT
|M| = √(M_x² + M_y² + M_z²) = |r| |F| sin θ
θ is the angle between vectors r and F. The quantity |r| sin θ equals the perpendicular distance d from O to the line of action of F, so equivalently |M| = d |F|.
UNIT VECTOR OF MOMENT AXIS
ê_M = M / |M|
The unit vector êM defines the axis about which the force tends to rotate the body. This is useful for projecting the moment onto a specific axis of interest (e.g., a hinge axis).
⚠️ Order Matters
The cross product is anti-commutative: r × F = −(F × r). Always place the position vector r first in the product. Reversing the order flips the sign of every component of M, which is equivalent to reversing the direction of the moment axis.

Determinant Expansion — Step by Step

While the component formulas are efficient once memorized, the 3 × 3 determinant expansion provides a systematic, error-resistant procedure that is especially valuable during exams or when coding the computation. The method proceeds by cofactor expansion along the first row, yielding three 2 × 2 subdeterminants — one for each unit vector. The following diagram illustrates the crossing-out pattern used to obtain each component.

The cofactor expansion systematically produces each component of M. Note the negative sign on the ĵ cofactor, which is the most common source of sign errors. Using the cyclic-permutation formulas (x→y→z→x) avoids this pitfall.
💡 Practical Tip — Cyclic Pattern
To avoid the sign pitfall on the ĵ component, use the cyclic-permutation mnemonic: for Mx use (y, z); for My use (z, x); for Mz use (x, y). Each component takes the form Mi = rjFk − rkFj where (i, j, k) follows the cycle x → y → z → x. This positive-minus-positive pattern is the same for every component.

Worked Example

A force F = (200î − 100ĵ + 50k̂) N is applied at point A located at coordinates (3, −2, 4) m relative to an origin O. Determine the moment of this force about point O.

Moment of F about O
1
Step 1 — Identify Given VectorsThe position vector from O to A is r = 3î − 2ĵ + 4k̂ m. The force vector is F = 200î − 100ĵ + 50k̂ N. We therefore have: rx = 3, ry = −2, rz = 4; Fx = 200, Fy = −100, Fz = 50.
2
Step 2 — Compute MₓMx = ryFz − rzFy = (−2)(50) − (4)(−100) = −100 + 400 = 300
Mx = 300 N·m
3
Step 3 — Compute M_yMy = rzFx − rxFz = (4)(200) − (3)(50) = 800 − 150 = 650
My = 650 N·m
4
Step 4 — Compute M_zMz = rxFy − rx ... wait, let me be precise: Mz = rxFy − ryFx = (3)(−100) − (−2)(200) = −300 + 400 = 100
Mz = 100 N·m
5
Step 5 — Assemble the Moment VectorCombining the components: M = 300î + 650ĵ + 100k̂ N·m.
M = (300î + 650ĵ + 100k̂) N·m
6
Step 6 — Compute the Magnitude|M| = √(300² + 650² + 100²) = √(90 000 + 422 500 + 10 000) = √522 500 ≈ 722.8 N·m. This tells us the overall intensity of the turning effect, while the direction of M tells us the axis about which the force tends to rotate the body about O.
|M| ≈ 722.8 N·m
Verification Check
A quick sanity check: the dot product M · r should equal zero, since M is perpendicular to r. Checking: (300)(3) + (650)(−2) + (100)(4) = 900 − 1300 + 400 = 0 ✓. Likewise M · F = (300)(200) + (650)(−100) + (100)(50) = 60 000 − 65 000 + 5 000 = 0 ✓. Both orthogonality conditions confirm our calculation.

Scalar (2D) vs. Vector (3D) Moment Methods

Students transitioning from planar statics often wonder when to use the scalar moment formula M = Fd (or M = Fd sin θ with appropriate sign) versus the full vector cross product. The table below clarifies the strengths and limitations of each approach. In practice, the cross-product method subsumes the scalar method: if the problem is truly 2D, the cross product simply returns a vector with only a k̂ component, which matches the scalar result. However, the scalar method can be faster when the moment arm d is readily identifiable by inspection.

Comparison of 2D Scalar and 3D Vector Moment Computation Methods
CriterionScalar (2D) MethodVector (3D) Cross Product
DimensionalityStrictly coplanar forces and moment armsFully general — any 3D configuration
OutputA signed scalar (+ or −)A vector with three components (Mx, My, Mz)
Ease of useVery fast when d is obvious from geometrySystematic; no need to visualize d
Error susceptibilitySign errors from unclear rotation senseSign of ĵ cofactor is the classic pitfall
Multiple forcesSum scalar moments with careful sign trackingSum moment vectors directly: Mtotal = Σ(ri × Fi)
WHEN TO USE WHICH
Use the scalar method for quick, single-force, 2D problems where the perpendicular distance d is immediately apparent. Default to the cross-product method whenever the geometry is 3D, when multiple concurrent forces act out of plane, or when the problem asks for the moment axis direction. In professional practice — FEA software, robotics, dynamics simulations — the cross product is the standard because it is programmable and dimension-agnostic.

Connection to Advanced Theory

The moment about a point is the building block for several more advanced topics in mechanics. Understanding how it extends into those contexts provides motivation and a roadmap for your subsequent coursework.

From Point Moments to Advanced Mechanics Concepts
This LessonAdvanced Extension
Moment about a point O: MO = r × FMoment about an axis: Project MO onto an axis via Ma = êa · (r × F) — the scalar triple product
Single force momentCouple: Two equal, opposite, non-collinear forces producing a pure moment vector independent of the moment center
Static moment equilibrium ΣM = 0Euler's equations for rigid-body dynamics: ΣM = dH/dt, relating net moment to rate of change of angular momentum
Moment of a forceWrench (screw theory): Any general force system reduces to a force plus a couple along a single screw axis — central to robotics and mechanism design

In particular, the moment about an axis is the immediate next topic after this one. It takes the 3D moment vector you compute here and projects it onto a specific physical axis — for example, the hinge line of a door or the shaft of a turbine — using the scalar triple product Ma = êa · (r × F). The technique of computing M about a point first and then dotting with the axis unit vector is the standard workflow. Furthermore, when you study couples, you will see that their defining property — the moment is the same about every point — follows directly from the cross-product algebra you have learned here, applied twice and summed.

Practice Problems

PROBLEM 1CONCEPTUAL
A force F acts at a point A. You compute MO = r × F about point O. Without doing any additional calculation, what can you conclude about the angle between the moment vector MO and the force vector F? Why?
PROBLEM 2BASIC CALCULATION
A force F = (0î + 500ĵ + 0k̂) N acts at a point whose position vector from O is r = (4î + 0ĵ − 3k̂) m. Compute the moment MO and its magnitude.
PROBLEM 3INTERMEDIATE
Two forces act on a rigid body. F₁ = (100î − 200ĵ + 150k̂) N acts at A(2, 1, −1) m, and F₂ = (−50î + 100ĵ + 200k̂) N acts at B(0, 3, 2) m. Compute the resultant moment about the origin O.
PROBLEM 4APPLIED
A cable exerts a tension of 800 N along a line from point A(1, 6, 2) m to point B(4, 0, −1) m on a boom. The boom is pinned at O at the origin. Express the tension as a Cartesian vector and compute the moment it produces about O.
PROBLEM 5CRITICAL THINKING
Prove that, for any force F acting along a fixed line of action, the moment MO = r × F is independent of which point on the line of action you choose to define r. In other words, if A and B both lie on the line of action, show that rOA × F = rOB × F.

Lesson Summary

The moment of a force about a point in 3D is computed using the cross product M = r × F, where r is the position vector from the moment center to any point on the line of action of F. The resulting moment vector is always perpendicular to both r and F, with its direction given by the right-hand rule and its magnitude equal to |r||F| sin θ — the force magnitude times the perpendicular distance from the moment center to the line of action.

The computation is performed via a 3 × 3 determinant expansion, yielding three scalar component equations that follow a cyclic permutation pattern (x → y → z → x). The principle of transmissibility guarantees that the choice of application point along the line of action does not affect the result. This formulation is the foundation for computing moments about an axis, analyzing couples, and enforcing 3D equilibrium in structures and machines.

Varsity Tutors • Statics • Moment About a Point: 3D — Compute moment of a force about a point (3D)