I can't understand this math. Can anyone help me sort it out? It's related to my homework.
2026-03-26 12:05:03.1774526703
Euler equation and angular acceleration explanation
555 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in MATRIX-EQUATIONS
- tensor differential equation
- Can it be proved that non-symmetric matrix $A$ will always have real eigen values?.
- Real eigenvalues of a non-symmetric matrix $A$ ?.
- How to differentiate sum of matrix multiplication?
- Do all 2-variable polynomials split into linear factors over the space of $2 \times 2$ complex matrices?
- Big picture discussion for iterative linear solvers?
- Matrix transformations, Eigenvectors and Eigenvalues
- Jordan chevaley decomposition and cyclic vectors
- If $A$ is a $5×4$ matrix and $B$ is a $4×5$ matrix
- Simplify $x^TA(AA^T+I)^{-1}A^Tx$
Related Questions in MATRIX-CALCULUS
- How to compute derivative with respect to a matrix?
- Definition of matrix valued smooth function
- Is it possible in this case to calculate the derivative with matrix notation?
- Monoid but not a group
- Can it be proved that non-symmetric matrix $A$ will always have real eigen values?.
- Gradient of transpose of a vector.
- Gradient of integral of vector norm
- Real eigenvalues of a non-symmetric matrix $A$ ?.
- How to differentiate sum of matrix multiplication?
- Derivative of $\log(\det(X+X^T)/2 )$ with respect to $X$
Related Questions in ROTATIONS
- Properties of a eclipse on a rotated plane to see a perfect circle from the original plane view?
- why images are related by an affine transformation in following specific case?(background in computer vision required)
- Proving equations with respect to skew-symmetric matrix property
- Finding matrix linear transformation
- A property of orthogonal matrices
- Express 2D point coordinates in a rotated and translated CS
- explicit description of eigenvector of a rotation
- Finding the Euler angle/axis from a 2 axes rotation but that lies on the original 2 axes' plane
- How to find a rectangle's rotation amount that is inscribed inside an axis-aligned rectangle?
- Change of basis with rotation matrices
Related Questions in CLASSICAL-MECHANICS
- An underdetermined system derived for rotated coordinate system
- Bouncing ball optimization
- Circular Motion Question - fully algebraic
- How can I solve this pair of differential equations?
- How to solve $-\frac{1}{2}gt^2\sin \theta=x$ when $x$ equals $0$
- Find the acceleration and tension in pulley setup
- Derive first-order time derivatives in a second-order dynamic system
- Phase curves of a spherical pendulum
- Velocity dependent force with arbitrary power
- An explanation for mathematicians of the three-body problem using a simple example, and the moons of Saturn
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?

The first equation with $\dot\omega$ is simply re-arranging the original Euler equation and solving for $\dot\omega$. If you have sufficient symmetry in the rotating object, then the product-of-inertia terms (the off-diagonal terms in the inertia tensor) are zero, which is what this text says. That means you have only the moment-of-inertia terms: the ones on the main diagonal. It's relatively straight-forward to invert a diagonal matrix, assuming there are no zero entries on the main diagonal: simply do the multiplicative inverse of each diagonal entry. So far, then, we have $$\dot\omega=I^{-1}(\tau-\omega\times(I\omega))=I^{-1}\tau-I^{-1}(\omega\times(I\omega)).$$ Note that $\tau$ is a vector, so the first term in the last equation there is just writing out $I^{-1}\tau$ in components. As for the cross product, recall that it's defined as follows: $$\mathbf{x}\times\mathbf{y}=\det\left[\begin{matrix}\mathbf{i} &\mathbf{j} &\mathbf{k} \\ x_1 &x_2 &x_3 \\ y_1 &y_2 &y_3\end{matrix}\right]=\mathbf{i}(x_2y_3-x_3y_2)-\mathbf{j}(x_1y_3-x_3y_1)+\mathbf{k}(x_1y_2-x_2y_1).$$ So, building up the expression they have, we do \begin{align*} I&=\left[\begin{matrix}I_{xx} &0 &0\\ 0 &I_{yy} &0 \\ 0 &0 &I_{zz}\end{matrix}\right], \\ \omega&=\left[\begin{matrix}\omega_x\\ \omega_y \\ \omega_z\end{matrix}\right], \quad \text{so} \\ I\omega&=\left[\begin{matrix}I_{xx}\omega_x \\ I_{yy}\omega_y \\ I_{zz}\omega_z\end{matrix}\right],\\ \omega\times(I\omega)&=\det\left[\begin{matrix}\mathbf{i} &\mathbf{j} &\mathbf{k} \\ \omega_x &\omega_y &\omega_z \\ I_{xx}\omega_x &I_{yy}\omega_y &I_{zz}\omega_z \end{matrix}\right]\\ &=\left[\begin{matrix}I_{zz}\omega_y\omega_z-I_{yy}\omega_y\omega_z \\ -(I_{zz}\omega_x\omega_z-I_{xx}\omega_x\omega_z)\\ I_{yy}\omega_x\omega_y-I_{xx}\omega_x\omega_y\end{matrix}\right] \\ &=\left[\begin{matrix}(I_{zz}-I_{yy})\omega_y\omega_z \\ (I_{xx}-I_{zz})\omega_x\omega_z\\ (I_{yy}-I_{xx})\omega_x\omega_y\end{matrix}\right], \; \text{so that finally,} \\ I^{-1}(\omega\times(I\omega))&=\left[\begin{matrix}\left(\frac{I_{zz}-I_{yy}}{I_{xx}}\right)\omega_y\omega_z \\ \left(\frac{I_{xx}-I_{zz}}{I_{yy}}\right)\omega_x\omega_z\\ \left(\frac{I_{yy}-I_{xx}}{I_{zz}}\right)\omega_x\omega_y\end{matrix}\right]. \end{align*} I've double-checked this work, and it looks to me like the authors might be off by a minus sign. Can anyone else confirm?
Does that help?