Physics Library
 An open source physics library
Encyclopedia | Forums | Docs | Random | Template Test |  
Login
create new user
Username:
Password:
forget your password?
Main Menu
Sections

Meta

Talkback

Downloads

Information
quaternions and Euler angles (Topic)

Quaternions and Euler Angles

Euler Angles and quaternions are two common descriptions of three dimensional orientation.

Euler angles are intuitive because they build an orientation from a sequence of elementary rotations. In aerospace applications, yaw, pitch, and roll are especially familiar. Quaternions are less intuitive geometrically, but they are compact, compose efficiently, propagate naturally from angular velocity, and avoid the coordinate singularity of an Euler angle chart.

The main difficulty in converting between them is not the algebra. It is convention management.

This article uses the PhysicsLibrary passive frame convention and develops the intrinsic moving axis $3$-$2$-$1$ yaw, pitch, roll sequence.

Let

$\displaystyle \psi=$yaw$\displaystyle , \qquad \theta=$pitch$\displaystyle , \qquad \phi=$roll$\displaystyle . $

The intrinsic sequence is:

  1. rotate the frame by yaw $\psi$ about the original $3$ axis;
  2. rotate by pitch $\theta$ about the new moving $2$ axis;
  3. rotate by roll $\phi$ about the final moving $1$ axis.

Under the PhysicsLibrary passive convention, the resulting frame transformation from $A$ coordinates into $B$ coordinates is

$\displaystyle {}^{B}C_A = C_1(\phi) C_2(\theta) C_3(\psi).$ (1)

The matching unit quaternion is

$\displaystyle {}^{B}q_A = q_1^{P}(\phi) q_2^{P}(\theta) q_3^{P}(\psi).$ (2)

The quaternion and DCM therefore use the same written order.

Convention declaration

PhysicsLibrary uses Hamilton multiplication,

$\displaystyle \mathbf i\mathbf j=\mathbf k, \qquad \mathbf j\mathbf k=\mathbf i, \qquad \mathbf k\mathbf i=\mathbf j, $

with reversed products changing sign.

Quaternion components are displayed scalar first:

$\displaystyle q = q_w+q_x\mathbf i+q_y\mathbf j+q_z\mathbf k \quad\longleftrightarrow\quad \begin{bmatrix} q_w\ q_x\ q_y\ q_z \end{bmatrix}.$ (3)

The canonical passive attitude quaternion maps coordinate components according to

$\displaystyle {}^{B}v = {}^{B}q_A \,{}^{A}v \,({}^{B}q_A)^*.$ (4)

For a positive frame rotation through angle $\alpha$ about a positive unit axis $\mathbf e_i$,

$\displaystyle q_i^{P}(\alpha) = \cos\frac{\alpha}{2} - \mathbf e_i\sin\frac{\alpha}{2}.$ (5)

The corresponding elementary passive DCM is denoted $C_i(\alpha)$.

The reverse frame quaternion and DCM satisfy

$\displaystyle {}^{A}q_B = ({}^{B}q_A)^*,$ (6)
$\displaystyle {}^{A}C_B = ({}^{B}C_A)^T.$ (7)

Euler angle families

Three angle orientation sequences are commonly divided into two families.

  1. Proper Euler sequences repeat one axis. Examples include $3$-$1$-$3$ and $1$-$2$-$1$.
  2. Tait Bryan sequences use three different axes. Examples include $3$-$2$-$1$ and $1$-$2$-$3$.

The aerospace yaw, pitch, roll sequence treated here is a Tait Bryan sequence.

There are six Tait Bryan sequences and six proper Euler sequences. Conversion formulas depend on which one is selected. A formula for $3$-$2$-$1$ must not be applied to $1$-$2$-$3$ data merely because the same three angles appear.

Intrinsic and extrinsic language

An intrinsic sequence uses moving axes. After the first elementary rotation, the next rotation axis moves with the frame.

An extrinsic sequence uses axes fixed in the reference frame.

The intrinsic sequence

$\displaystyle 3$ then $\displaystyle 2$ then $\displaystyle 1 $

with angles

$\displaystyle \psi,\theta,\phi $

is geometrically equivalent to an extrinsic sequence about fixed axes

$\displaystyle 1$ then $\displaystyle 2$ then $\displaystyle 3 $

with angles

$\displaystyle \phi,\theta,\psi. $

This equivalence does not mean finite rotations commute. It means the same final orientation can be described from two different axis viewpoints.

PhysicsLibrary uses intrinsic moving axis language for the aerospace sequence unless an article explicitly states otherwise.

Elementary passive axis quaternions

For roll,

$\displaystyle q_1^{P}(\phi) = \cos\frac{\phi}{2} - \mathbf i\sin\frac{\phi}{2}.$ (8)

For pitch,

$\displaystyle q_2^{P}(\theta) = \cos\frac{\theta}{2} - \mathbf j\sin\frac{\theta}{2}.$ (9)

For yaw,

$\displaystyle q_3^{P}(\psi) = \cos\frac{\psi}{2} - \mathbf k\sin\frac{\psi}{2}.$ (10)

The intrinsic $3$-$2$-$1$ frame sequence is therefore represented by

$\displaystyle {}^{B}q_A = q_1^{P}(\phi) q_2^{P}(\theta) q_3^{P}(\psi).$ (11)

Although yaw occurs first in the moving axis geometric construction, its elementary quaternion appears at the right of the final passive product. This is the same order as the associated DCM product.

Step by step geometry

The following illustration shows the intrinsic moving axis $3$-$2$-$1$ sequence.

\includegraphics[width=0.94\textwidth]{Q10_euler_sequence.png}

Figure. The intrinsic $3$-$2$-$1$ yaw, pitch, roll frame sequence. Step 1 applies a positive frame yaw $\psi$ about the original $3$ axis. Step 2 applies a positive frame pitch $\theta$ about the intermediate moving $2$ axis. Step 3 applies a positive frame roll $\phi$ about the final moving $1$ axis. Under the PhysicsLibrary passive convention,

$\displaystyle {}^{B}C_A = C_1(\phi)C_2(\theta)C_3(\psi) $

and

$\displaystyle {}^{B}q_A = q_1^{P}(\phi)q_2^{P}(\theta)q_3^{P}(\psi). $

Elementary passive rotation matrices

The passive elementary $1$ axis matrix is

$\displaystyle C_1(\phi) = \begin{bmatrix} 1&0&0\ 0&\cos\phi&\sin\phi\ 0&-\sin\phi&\cos\phi \end{bmatrix}.$ (12)

The passive elementary $2$ axis matrix is

$\displaystyle C_2(\theta) = \begin{bmatrix} \cos\theta&0&-\sin\theta\ 0&1&0\ \sin\theta&0&\cos\theta \end{bmatrix}.$ (13)

The passive elementary $3$ axis matrix is

$\displaystyle C_3(\psi) = \begin{bmatrix} \cos\psi&\sin\psi&0\ -\sin\psi&\cos\psi&0\ 0&0&1 \end{bmatrix}.$ (14)

Each is the transpose of the familiar positive active elementary rotation matrix for the same axis and angle.

The passive $3$-$2$-$1$ DCM

Introduce

$\displaystyle c_\phi=\cos\phi, \qquad s_\phi=\sin\phi, $

$\displaystyle c_\theta=\cos\theta, \qquad s_\theta=\sin\theta, $

and

$\displaystyle c_\psi=\cos\psi, \qquad s_\psi=\sin\psi. $

Multiplying

$\displaystyle {}^{B}C_A = C_1(\phi) C_2(\theta) C_3(\psi) $

gives

$\displaystyle {}^{B}C_A = \begin{bmatrix} c_\theta c_\psi & c_\theta s_\psi & -... ... s_\psi & c_\phi s_\theta s_\psi-s_\phi c_\psi & c_\phi c_\theta \end{bmatrix}.$ (15)

This matrix maps coordinates from the initial frame $A$ into the final frame $B$.

Quaternion formula for the passive $3$-$2$-$1$ sequence

Introduce the half angle abbreviations

$\displaystyle c_{\phi/2} = \cos\frac{\phi}{2}, \qquad s_{\phi/2} = \sin\frac{\phi}{2},$ (16)
$\displaystyle c_{\theta/2} = \cos\frac{\theta}{2}, \qquad s_{\theta/2} = \sin\frac{\theta}{2},$ (17)
$\displaystyle c_{\psi/2} = \cos\frac{\psi}{2}, \qquad s_{\psi/2} = \sin\frac{\psi}{2}.$ (18)

For compactness in the multiplication below, write

$\displaystyle c_\phi^h=c_{\phi/2}, \qquad s_\phi^h=s_{\phi/2}, $

and similarly for $\theta$ and $\psi$.

Then

$\displaystyle q_1^{P}(\phi) = c_\phi^h-\mathbf i s_\phi^h, $

$\displaystyle q_2^{P}(\theta) = c_\theta^h-\mathbf j s_\theta^h, $

and

$\displaystyle q_3^{P}(\psi) = c_\psi^h-\mathbf k s_\psi^h. $

Multiplying

$\displaystyle {}^{B}q_A = q_1^{P}(\phi) q_2^{P}(\theta) q_3^{P}(\psi) $

gives

$\displaystyle {}^{B}q_A = q_w + q_x\mathbf i + q_y\mathbf j + q_z\mathbf k,$ (19)

with

$\displaystyle q_w = c_\phi^h c_\theta^h c_\psi^h + s_\phi^h s_\theta^h s_\psi^h,$ (20)
$\displaystyle q_x = c_\phi^h s_\theta^h s_\psi^h - s_\phi^h c_\theta^h c_\psi^h,$ (21)
$\displaystyle q_y = - c_\phi^h s_\theta^h c_\psi^h - s_\phi^h c_\theta^h s_\psi^h,$ (22)
$\displaystyle q_z = s_\phi^h s_\theta^h c_\psi^h - c_\phi^h c_\theta^h s_\psi^h.$ (23)

The scalar component is the same as in the corresponding active quaternion. The three vector components have the opposite sign because the passive frame quaternion is the conjugate of the active rotor representing the same final orientation.

Relation to the active $3$-$2$-$1$ rotor

Let

$\displaystyle q_{\mathrm{active}} $

be the Hamilton quaternion that actively rotates a physical vector through the same geometric orientation while the coordinate frame remains fixed.

Then

$\displaystyle q_{\mathrm{active}} = ({}^{B}q_A)^*.$ (24)

Thus if

$\displaystyle {}^{B}q_A = q_w+q_x\mathbf i+q_y\mathbf j+q_z\mathbf k, $

then

$\displaystyle q_{\mathrm{active}} = q_w-q_x\mathbf i-q_y\mathbf j-q_z\mathbf k.$ (25)

Similarly,

$\displaystyle R_{\mathrm{active}} = ({}^{B}C_A)^T.$ (26)

This is why many published Euler to quaternion formulas have the same scalar term but the opposite three vector signs from the PhysicsLibrary formulas.

Cross check against the quaternion generated DCM

The preceding PhysicsLibrary article defines

$\displaystyle {}^{B}C_A = C({}^{B}q_A). $

Substituting equations (21) through (24) into the quaternion generated DCM must reproduce equation (16).

This provides an important implementation check because the Euler product, quaternion product, and matrix product are three independently useful ways of describing the same passive frame transformation:

$\displaystyle C \left( q_1^{P}(\phi) q_2^{P}(\theta) q_3^{P}(\psi) \right) = C_1(\phi) C_2(\theta) C_3(\psi).$ (27)

Recovering roll, pitch, and yaw from the passive DCM

For the principal nonsingular branch, choose

$\displaystyle -\frac{\pi}{2} < \theta < \frac{\pi}{2}.$ (28)

From equation (16),

$\displaystyle C_{13}=-\sin\theta. $

Therefore

$\displaystyle \theta = \arcsin(-C_{13}).$ (29)

When $\cos\theta\neq0$,

$\displaystyle C_{23}=s_\phi c_\theta $

and

$\displaystyle C_{33}=c_\phi c_\theta. $

Thus

$\displaystyle \phi = \operatorname{atan2} (C_{23},C_{33}).$ (30)

Likewise,

$\displaystyle C_{12}=c_\theta s_\psi $

and

$\displaystyle C_{11}=c_\theta c_\psi, $

so

$\displaystyle \psi = \operatorname{atan2} (C_{12},C_{11}).$ (31)

These formulas are often the clearest route from a quaternion to Euler angles: first generate the passive DCM using Q09, then extract the angles from the declared DCM sequence.

Recovering roll, pitch, and yaw directly from a quaternion

Using the passive quaternion generated DCM,

$\displaystyle C_{23} = 2(q_yq_z-q_wq_x), $

$\displaystyle C_{33} = 1-2(q_x^2+q_y^2), $

$\displaystyle C_{13} = 2(q_xq_z+q_wq_y), $

$\displaystyle C_{12} = 2(q_xq_y-q_wq_z), $

and

$\displaystyle C_{11} = 1-2(q_y^2+q_z^2). $

Therefore the principal $3$-$2$-$1$ angles can be recovered from the PhysicsLibrary passive quaternion by

$\displaystyle \phi = \operatorname{atan2} \left( 2(q_yq_z-q_wq_x), 1-2(q_x^2+q_y^2) \right),$ (32)
$\displaystyle \theta = \arcsin \left( -2(q_xq_z+q_wq_y) \right),$ (33)
$\displaystyle \psi = \operatorname{atan2} \left( 2(q_xq_y-q_wq_z), 1-2(q_y^2+q_z^2) \right).$ (34)

These are the passive PhysicsLibrary versions of the familiar active yaw, pitch, roll extraction formulas.

Check: pure positive yaw

Let

$\displaystyle \phi=0, \qquad \theta=0, \qquad \psi=\frac{\pi}{2}. $

The passive quaternion formula reduces to

$\displaystyle q_w = \cos\frac{\pi}{4} = \frac{\sqrt2}{2}, $

$\displaystyle q_x=q_y=0, $

and

$\displaystyle q_z = -\sin\frac{\pi}{4} = -\frac{\sqrt2}{2}. $

Therefore

$\displaystyle {}^{B}q_A = \frac{1-\mathbf k}{\sqrt2}.$ (35)

The matching DCM is

$\displaystyle {}^{B}C_A = \begin{bmatrix} 0&1&0\ -1&0&0\ 0&0&1 \end{bmatrix}.$ (36)

This agrees with the positive $90^\circ$ passive $z$ frame rotation used as a convention diagnostic in Q07 through Q09.

Check: pure positive pitch

Let

$\displaystyle \phi=0, \qquad \psi=0. $

Then

$\displaystyle {}^{B}q_A = \cos\frac{\theta}{2} - \mathbf j\sin\frac{\theta}{2}.$ (37)

The DCM becomes

$\displaystyle {}^{B}C_A = \begin{bmatrix} \cos\theta&0&-\sin\theta\ 0&1&0\ \sin\theta&0&\cos\theta \end{bmatrix}.$ (38)

For $\theta=90^\circ$,

$\displaystyle {}^{A}\widehat{\mathbf z} \longrightarrow {}^{B}(-\widehat{\mathbf x}). $

Check: pure positive roll

Let

$\displaystyle \theta=0, \qquad \psi=0. $

Then

$\displaystyle {}^{B}q_A = \cos\frac{\phi}{2} - \mathbf i\sin\frac{\phi}{2}.$ (39)

The DCM becomes

$\displaystyle {}^{B}C_A = \begin{bmatrix} 1&0&0\ 0&\cos\phi&\sin\phi\ 0&-\sin\phi&\cos\phi \end{bmatrix}.$ (40)

For $\phi=90^\circ$,

$\displaystyle {}^{A}\widehat{\mathbf y} \longrightarrow {}^{B}(-\widehat{\mathbf z}). $

A nontrivial numerical example

Take

$\displaystyle \phi=20^\circ, \qquad \theta=-10^\circ, \qquad \psi=30^\circ. $

The passive quaternion is obtained from equations (21) through (24). Numerically,

$\displaystyle c_{\phi/2}\approx0.984807753, \qquad s_{\phi/2}\approx0.173648178, $

$\displaystyle c_{\theta/2}\approx0.996194698, \qquad s_{\theta/2}\approx-0.087155743, $

$\displaystyle c_{\psi/2}\approx0.965925826, \qquad s_{\psi/2}\approx0.258819045. $

Substitution gives approximately

$\displaystyle {}^{B}q_A \approx \begin{bmatrix} 0.943714\ -0.189308\ 0.038135\ -0.268536 \end{bmatrix}.$ (41)

Converting this quaternion to a DCM and then applying equations (30) through (32) recovers the original roll, pitch, and yaw values to numerical roundoff.

This round trip is an important software verification case because all three angles are nonzero.

Gimbal lock

Euler angles are local coordinates on the orientation manifold rather than a global one to one orientation representation.

For the intrinsic $3$-$2$-$1$ sequence, the singularity occurs when

$\displaystyle \theta = \pm\frac{\pi}{2}.$ (42)

At these pitch angles,

$\displaystyle \cos\theta=0. $

The formulas

$\displaystyle \phi = \operatorname{atan2}(C_{23},C_{33}) $

and

$\displaystyle \psi = \operatorname{atan2}(C_{12},C_{11}) $

lose independent information because both numerator and denominator pairs collapse.

For

$\displaystyle \theta=+\frac{\pi}{2}, $

the matrix depends on the combination

$\displaystyle \phi-\psi. $

For

$\displaystyle \theta=-\frac{\pi}{2}, $

it depends on the combination

$\displaystyle \phi+\psi. $

Thus yaw and roll cannot be determined independently at the singular configuration.

The physical orientation remains perfectly well defined. Only the chosen Euler coordinate chart becomes singular.

Unit quaternions do not have this gimbal lock singularity.

Near the singularity

Near

$\displaystyle \vert\theta\vert=\frac{\pi}{2}, $

small attitude perturbations can produce large numerical changes in the individual yaw and roll angles.

For estimation, simulation, and control, it is therefore usually preferable to propagate and update attitude with quaternions or DCMs and convert to Euler angles primarily for display, operator interfaces, or applications in which the sequence is physically meaningful.

A robust software conversion should also clamp the argument of $\arcsin$ into the interval $[-1,1]$ when small floating point errors place it just outside that range.

Quaternion sign and Euler extraction

Because

$\displaystyle q $

and

$\displaystyle -q $

represent the same orientation, they must produce the same Euler angles on the same extraction branch.

Every expression in equations (33) through (35) is quadratic in quaternion components. Replacing all four components by their negatives leaves those expressions unchanged.

Therefore

$\displaystyle \mathrm{Euler}(-q) = \mathrm{Euler}(q)$ (43)

up to the ordinary nonuniqueness and branch choices of Euler Angle coordinates.

Euler angle nonuniqueness

Even away from gimbal lock, Euler angle triples are not globally unique.

Angles are periodic. Adding $2\pi$ to an elementary rotation angle does not change the physical orientation.

There are also alternative triples associated with different branches of the inverse trigonometric functions.

For the principal $3$-$2$-$1$ representation, PhysicsLibrary normally chooses

$\displaystyle -\pi < \phi \leq \pi,$ (44)
$\displaystyle -\frac{\pi}{2} \leq \theta \leq \frac{\pi}{2},$ (45)
$\displaystyle -\pi < \psi \leq \pi,$ (46)

with an explicit singularity policy at $\theta=\pm\pi/2$.

Implementation guidance

When converting between quaternions and Euler angles in software:

  1. Declare the Euler sequence explicitly. Do not write only “yaw pitch roll” without defining the product.
  2. Declare whether the Euler rotations are intrinsic moving axis rotations or extrinsic fixed axis rotations.
  3. Declare the quaternion frame direction. PhysicsLibrary uses ${}^{B}q_A$ for $A\rightarrow B$ coordinates.
  4. Declare Hamilton multiplication separately from scalar first or scalar last storage.
  5. Verify the three pure axis cases.
  6. Verify at least one case with all three Euler angles nonzero.
  7. Verify quaternion to DCM to Euler and Euler to quaternion to DCM round trips.
  8. Treat gimbal lock explicitly rather than allowing division or $\operatorname{atan2}(0,0)$ behavior to define the result accidentally.
  9. Compare physical orientation rather than raw Euler triples when testing for equality.

Common pitfalls

  1. Using the old active PhysicsLibrary formulas.

    The current house convention uses passive frame quaternions. A positive elementary frame rotation has a negative quaternion vector part.

  2. Using the active product order for the passive intrinsic sequence.

    PhysicsLibrary uses

    $\displaystyle {}^{B}q_A = q_1^{P}(\phi) q_2^{P}(\theta) q_3^{P}(\psi). $
  3. Using the wrong DCM order.

    The matching matrix is

    $\displaystyle {}^{B}C_A = C_1(\phi) C_2(\theta) C_3(\psi). $
  4. Mixing intrinsic and extrinsic descriptions.

    An intrinsic $3$-$2$-$1$ sequence is equivalent to an extrinsic $1$-$2$-$3$ description with reversed angle order, not to the same verbal sequence about fixed axes.

  5. Copying quaternion extraction formulas from an active source.

    The PhysicsLibrary passive formulas have different signs in the terms that are linear in $q_w$.

  6. Confusing component storage with quaternion semantics.

    Scalar first versus scalar last storage does not determine Euler sequence, frame direction, or active versus passive interpretation.

  7. Ignoring gimbal lock.

    At

    $\displaystyle \theta=\pm\frac{\pi}{2}, $

    yaw and roll are not independently recoverable.

  8. Assuming Euler angles are unique.

    Different triples can represent the same physical orientation.

  9. Comparing $q$ and $-q$ as different attitudes.

    They produce the same DCM and the same Euler orientation.

Relationship to adjacent PhysicsLibrary entries

The preceding article, quaternions and direction cosine matrices, establishes

$\displaystyle {}^{B}C_A = C({}^{B}q_A) $

and gives the passive quaternion generated matrix.

The present article combines that DCM relation with an intrinsic moving axis $3$-$2$-$1$ sequence to derive yaw, pitch, roll conversion in both directions.

The separate examples entry, Quaternions and Euler Angles: Examples, Exercises, and Solutions, should use the same passive formulas developed here.

The next main article, quaternion kinematics and angular velocity, derives the differential equations that propagate the passive frame quaternion from body or reference resolved angular velocity.

Sources and convention notes

Euler angle conversion formulas are particularly sensitive to frame direction, sequence order, intrinsic versus extrinsic language, and active versus passive interpretation. A formula should therefore be accompanied by its defining matrix or quaternion product.

Henderson provides an important aerospace reference for Euler angle, quaternion, and transformation matrix relationships. Moore provides an openly licensed modern treatment of reference frame orientation. Sommer and coauthors provide a useful convention analysis for Hamilton versus flipped quaternion multiplication and passive frame transformations.

Bibliography

1
D. M. Henderson, Euler Angles, Quaternions, and Transformation Matrices: Working Relationships, JSC-12960, NASA Johnson Space Center, Mission Planning and Analysis Division, 1977. Engineering reference. NASA Technical Reports Server search https://ntrs.nasa.gov/search?q=JSC-12960
2
J. K. Moore, Learn Multibody Dynamics, chapter “Orientation of Reference Frames.” Distributed under CC BY 4.0. Learn Multibody Dynamics https://moorepants.github.io/learn-multibody-dynamics/orientation.html
3
H. Sommer, I. Gilitschenski, M. Bloesch, S. Weiss, R. Siegwart, and J. Nieto, “Why and How to Avoid the Flipped Quaternion Multiplication,” Aerospace, vol. 5, no. 3, article 72, 2018. Published under CC BY 4.0. Publisher article https://www.mdpi.com/2226-4310/5/3/72
4
W. R. Hamilton, Elements of Quaternions, 2nd ed., edited by C. J. Joly, Longmans, Green, and Co., 1899. Public domain historical source. Internet Archive scan https://archive.org/details/elementsofquater01hamiuoft

License

Unless otherwise noted, this PhysicsLibrary entry is intended for release under the Creative Commons Attribution ShareAlike 4.0 International license.



"quaternions and Euler angles" is owned by bloftin.
(view preamble)
View style:
See Also: quaternion series overview and article guide, Notation Quaternions for Physics and Engineering: Orientation, quaternion definition and basic algebra, example of quaternion definition and basic algebra, quaternion product

Keywords:  quaternion, Euler angles, yaw pitch roll, 321 sequence, Tait-Bryan angles, gimbal lock, attitude parameterization

Attachments:
example of quaternions and Euler angles (Example) by bloftin

Cross-references: differential equations, quaternion kinematics and angular velocity, relation, quaternions and direction cosine matrices, testing, functions, Euler Angle, operator, representation, manifold, matrix product, quaternion product, vector, matrix, commute, reference frame, formulas, scalar, velocity, quaternions, Euler Angles
There are 4 references to this object.

This is version 4 of quaternions and Euler angles, born on 2026-08-24, modified 2026-08-27.
Object id is 1103, canonical name is QuaternionsAndEulerAngles.
Accessed 93 times total.

Classification:
Physics Classification02.40.Yy (Geometric mechanics )
 02.10.Hh (Rings and algebras)
 45.40.-f (Dynamics and kinematics of rigid bodies)
Pending Errata and Addenda
None.
Discussion
Style: Expand: Order:

No messages.

Interact
rate | post | correct | update request | add example | add (any)