Trisha Shetty (Editor)

Rodrigues' rotation formula

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Rodrigues' rotation formula

In the theory of three-dimensional rotation, Rodrigues' rotation formula, named after Olinde Rodrigues, is an efficient algorithm for rotating a vector in space, given an axis and angle of rotation. By extension, this can be used to transform all three basis vectors to compute a rotation matrix in SO(3), the group of all rotation matrices, from an axis–angle representation. In other words, the Rodrigues' formula provides an algorithm to compute the exponential map from so(3), the Lie algebra of SO(3), to SO(3) without actually computing the full matrix exponential.

Contents

Statement

If v is a vector in 3 and k is a unit vector describing an axis of rotation about which v rotates by an angle θ according to the right hand rule, the Rodrigues formula is

An alternative statement is to write the axis vector as a cross product a × b of any two nonzero vectors a and b which define the plane of rotation, and the sense of the angle θ is measured away from a and towards b. Letting α denote the angle between these vectors, the two angles θ and α are not necessarily equal, but they are measured in the same sense. Then the unit axis vector can be written

k = a × b | a × b | = a × b | a | | b | sin α .

This form may be more useful when two vectors defining a plane are involved. An example in physics is the Thomas precession which includes the rotation given by Rodrigues' formula, in terms of two non-collinear boost velocities, and the axis of rotation is perpendicular to their plane.

Derivation

Let k be a unit vector defining a rotation axis, and let v be any vector to rotate about k by angle θ anticlockwise.

Using the dot and cross products, the vector v can be decomposed into components parallel and perpendicular to the axis k,

v = v + v ,

where the component parallel to k is

v = ( v k ) k

called the vector projection of v on k, and the component perpendicular to k is

v = v v = v ( k v ) k = k × ( k × v )

called the vector rejection of v from k.

The vector k×v can be viewed as a copy of v rotated anticlockwise by 90° about k, so their magnitudes are equal but directions are perpendicular. Likewise the vector k×(k×v) a copy of v rotated anticlockwise through 180° about k, so that k×(k×v) and v are equal in magnitude but in opposite directions (i.e. they are negatives of each other, hence the minus sign). Expanding the vector triple product establishes the connection between the parallel and perpendicular components, for reference the formula is a×(b×c) = (a·c)b − (a·b)c given any three vectors a, b, c.

The component parallel to the axis will not change magnitude nor direction under the rotation,

v r o t = v ,

only the perpendicular component will change direction but retain its magnitude, according to

| v r o t | = | v | , v r o t = cos θ v + sin θ k × v ,

and since k and v are parallel, their cross product is zero k×v = 0, so that

k × v = k × ( v v ) = k × v k × v = k × v

and it follows

v r o t = cos θ v + sin θ k × v .

This rotation is correct since the vectors v and k×v have the same length, and k×v is v rotated anticlockwise through 90° about k. An appropriate scaling of v and k×v using the trigonometric functions sine and cosine gives the rotated perpendicular component. The form of the rotated component is similar to the radial vector in 2d plane polar coordinates r, θ in the Cartesian basis

r = r cos θ e x + r sin θ e y ,

where ex, ey are unit vectors in their indicated directions.

Now the full rotated vector is

v r o t = v r o t + v r o t ,

so eliminating the parallel component gives

v r o t = v + cos θ ( v v ) + sin θ k × v = cos θ v + ( 1 cos θ ) v + sin θ k × v = cos θ v + ( 1 cos θ ) ( k v ) k + sin θ k × v

while the elimination of the perpendicular component gives

v r o t = ( v v ) + cos θ v + sin θ k × v = v + ( cos θ 1 ) v + sin θ k × v = v + ( cos θ 1 ) ( k × ( k × v ) ) + sin θ k × v = v + ( 1 cos θ ) k × ( k × v ) + sin θ k × v

The factors (1 − cosθ) and sinθ can be seen geometrically in the diagram above.

Matrix notation

Representing v and k×v as column matrices, the cross product can be expressed as a matrix product

[ ( k × v ) x ( k × v ) y ( k × v ) z ] = [ k y v z k z v y k z v x k x v z k x v y k y v x ] = [ 0 k z k y k z 0 k x k y k x 0 ] [ v x v y v z ] .

Letting K denote the "cross-product matrix" for the vector k,

K = [ 0 k 3 k 2 k 3 0 k 1 k 2 k 1 0 ]   ,

the matrix equation is, symbolically,

K v = k × v

for any vector v. (In fact, K is the unique matrix with this property. It has eigenvalues 0 and ±i).

Iterating the cross product on the right is equivalent to multiplying by the cross product matrix on the left, in particular

K ( K v ) = K 2 v = k × ( k × v ) .

The previous rotation formula in matrix language is therefore

v r o t = v + ( sin θ ) K v + ( 1 cos θ ) K 2 v ,

and factorizing the v allows the compact expression

v r o t = R v

where

is the rotation matrix through an angle θ anticlockwise about the axis k, and I the 3×3 identity matrix. This matrix R is an element of the rotation group SO(3) of 3, and K is an element of the Lie algebra so(3) generating that Lie group (note that K is skew-symmetric, which characterizes so(3)). In terms of the matrix exponential,

R = exp ( θ K ) .

To see that the last identity holds, one notes that

R ( θ ) R ( ϕ ) = R ( θ + ϕ ) , R ( 0 ) = I   ,

characteristic of a one-parameter subgroup, i.e. exponential, and that the formulas match for infinitesimal θ.

For an alternative derivation based on this exponential relationship, see Axis–angle representation#Exponential map from so(3) to SO(3). For the inverse mapping, see Axis–angle representation#Log map from SO(3) to so(3).

References

Rodrigues' rotation formula Wikipedia


Similar Topics