Carlos Ureña / Varios

Rotations in 2D and 3D

Perpendicular vectors in 2D

We consider B={x,y} as an orthonormal basis in a 2D vector space. The coordinates in that basis of a vector v are (a,b), and we want to obtain another vector v, perpendicular to v, and with the same length. The coordinates of v are (a,b)=(b,a) (in what follows we identify vectors with its coordinates in B).

This perpendicular vector is obtained by rotating v 90o towards its left side (counterclockwise, as long as we imagine y to the left of x). We could use the reverse convention (to rotate clockwise), and use (b,a), but the first option is far more usual.

It is easy to show that the dot product of both vectors is cero, and that they are also of equal length vv = a(b)+ba = 0             v = v = a2+b2 The (lineal) relation between v and v can be expressed by using a 2x2 matrix P acting on coordinate column vectors (relative to B): v = (ab) = (ba) = (0110)(ab) = Pv

Rotations in 2D

In a 2D vector space we want to define the rotation transformation R. This rotation is a rotation around the origin of the vector space, with angle θ (in radians).

If we want to rotate vector v, we begin by using the previous definition of v=Pv and define the rotated vector v as v = (cosθ)v+(sinθ)v note that when θ=0, we have v=v.

Let us assume that the coordinates of v in the orthonormal basis {x,y} are (a,b) (that is, v=ax+by). This allows us to compute the coordinates of v, by substituting: v=(cosθ)v+(sinθ)v=(cosθ)(ax+by)+(sinθ)(bx+ay)=(acosθbsinθ)x+(asinθ+bcosθ)y=ax+by where a=acosθbsinθb=asinθ+bcosθ values (a,b) are the coordinates of the rotated point p.

Matrix form for 2D rotations

The rotation transformation can we written in homogeneous coordinates by using a 3x3 matrix Rθ: v = (ab) = (cosθsinθsinθcosθ)(ab) = Rθv Matrix Rθ can also be obtained by writing v as Iv, where I is the identity matrix, and v as Pv, then: v=(cosθ)v+(sinθ)v=(cosθ)Iv+(sinθ)Pv=[(cosθ)I+(sinθ)P]v this implies we can write Rθ as a combination of I and P: Rθ  =  (cosθ)I+(sinθ)P  =  (cosθ)(1001)+(sinθ)(0110)  =  (cosθsinθsinθcosθ)

Perpendicular vectors in 3D. Cross product.

In a 3D vector space, for any given vector w=(b0,b1,b2), there are infinitelly many vectors perpendicular to w and with the same length as w (all those form a circunference in the plane perpendicular to w).

To select one of those perpendicular vectors, we must use a third vector k (non colinear with w), and compute the cross product of k and w. Then, vector k×w is perpendicular to w (but not neccesarly with the same length as w). If (a0,a1,a2) are the coordinates of k, then: k×w  =  (a0a1a2)×(b0b1b2)  =  (a1b2a2b1a2b0a0b2a0b1a1b0) This cross-product operation (pre-multiplying by k), can also be written as a linear matrix operation by using matrix Pk defined as follows: Pk  =  (0a2a1a20a0a1a00) It is easy to check that pre-multiplying k by w is the same as to apply Pk to w Pkw  =  (0a2a1a20a0a1a00)(b0b1b2)  =  (a1b2a2b1a2b0a0b2a0b1a1b0)  =  k×w

Rotations in 3D and Rodrigues formula

In 3D, the rotation transform uses an unit-length vector u=(u0,u1,u2) as the rotation axis, and an angle θ. In order to rotate v, we decompose it in two components, v (parallel to u) and v (perpendicular to u, but in the plane spawned by u and v) v  =  v+v where v is obtained by projecting v onto rotation axis, that is: v  =  (vu)u and v is obtained as: v  =  vv in the case v and u are collinear, vector v is the null vector and v=v. We define an additional perpendicular vector v, which is perpendicular to both v and to v, and has the same length as v: v  =  u×v Note that, as u is unit-length and perpendicular to v, then v has the same length as v.

With these definitions in mind, we can define the rotated vector v by observing that its component parallel to the axis does not changes, while the component perpendicular to the axis is rotated as in 2D (in the plane perpendicular to the axis), that is, we define v  =  v+(cosθ)v+(sinθ)v

We rewrite v+(cosθ)v as follows: v+(cosθ)v  =  v+(cosθ)(vv)=  (cosθ)v+(1cosθ)v=  (cosθ)v+(1cosθ)(vu)u Vector v can we rewritten as: v  =  u×v=  u×(vv)=  u×vu×v=  u×v here, as u and v are parallel, we have substituted their cross product by 0. Now we can write the expression for v which is called Rodrigues' Rotation formula:       v  =  (cosθ)v+(1cosθ)(vu)u+(sinθ)u×v      

Matrix form for 3D Rotations

We can express Rodrigues formula in terms of cross-products, this leads to the general rotation matrix. We begin by rewriting v as: v  =  v×u  =  u×v  =  u×(u×v) This allows to write v by using cross-products: v  =  vv  =  v+u×(u×v)

Vector v+(cosθ)v is expressed as follows: v+(cosθ)v  =  v+(cosθ)(vv)=  (cosθ)v+(1cosθ)v=  (cosθ)v+(1cosθ)[v+u×(u×v)]=  v+(1cosθ)u×(u×v)

So we end up with this expression for v: v  =  v+(cosθ)v+(sinθ)v=  v+(1cosθ)u×(u×v)+(sinθ)u×v

This last expression is written just in terms of v,u and θ, uses just cross-products, and is equivalent to Rodrigues' formula. From that we obtain the matrix Rθ,u for rotation in 3D, which is expressed in terms of the powers of matrix Pu:       Rθ,u  =  I+(sinθ)Pu+(1cosθ)Pu2       where I is the identity matrix (that is, I=Pu0), and Pu  =  (0u2u1u20u0u1u00) Thus: Pu2  =  (0u2u1u20u0u1u00)(0u2u1u20u0u1u00)  =  (u021u0u1u0u2u0u1u121u1u2u0u2u1u2u221) where we have used u02+u12+u22=1. By expanding the matrixes:

Rθ,u  =  (100010001)+(sinθ)(0u2u1u20u0u1u00)+(1cosθ)(u021u0u1u0u2u0u1u121u1u2u0u2u1u2u221) And finally: Rθ,u  =  ((1c)u02+c(1c)u0u1su2(1c)u0u2+su1(1c)u0u1+su2(1c)u12+c(1c)u1u2su0(1c)u0u2su1(1c)u1u2+su0(1c)u22+c)       where:   {s=sinθc=cosθ More compactly:        Rθ,u  =  (a00+ca01su2a02+su1a10+su2a11+ca12su0a20su1a21+su0a22+c)          where:   {s=sinθc=cosθaij=(1c)uiuj       (this page uses MathJax)

URI: https://www.ugr.es/~curena/varios/rotations/
Actualizado: 09/11/2023 10:37:00.