Physlib

Physlib.SpaceAndTime.Space.CrossProduct

The cross product on Euclidean vectors in three dimensions

i. Overview

In this module we define the cross product on `EuclideanSpace ℝ (Fin 3)`, and prove various properties about it related to time derivatives and inner products.

ii. Key results

- `⨯ₑ₃` : The cross product on `EuclideanSpace ℝ (Fin 3)`. - `time_deriv_cross_commute` : Time derivatives move out of cross products. - `inner_cross_self` : Inner product of a vector with the cross product of another vector and itself is zero. - `inner_self_cross` : Inner product of a vector with the cross product of itself and another vector is zero.

iii. Table of contents

  • A. The notation for the cross product
  • B. Time derivatives move out of cross products
  • C. Inner product of vectors with cross products involving themselves

iv. References

A. The notation for the cross product

B. Time derivatives move out of cross products

C. Inner product of vectors with cross products involving themselves

5 declarations

definition

Cross product a×e3ba \times_{e3} b in R3\mathbb{R}^3

The operation a×e3ba \times_{e3} b represents the cross product of two vectors aa and bb in the three-dimensional Euclidean space R3\mathbb{R}^3 (modeled as `EuclideanSpace ℝ (Fin 3)`). It is defined by calculating the standard cross product of the vectors' components in (Fin 3R)(\text{Fin } 3 \to \mathbb{R}) and converting the result back into the Euclidean space type.

theorem

s×(Df(t)(1))=D(s×f)(t)(1)s \times (Df(t)(1)) = D(s \times f)(t)(1)

Let sR3s \in \mathbb{R}^3 be a constant vector and f:TimeR3f: \text{Time} \to \mathbb{R}^3 be a differentiable function from a one-dimensional time space into a three-dimensional Euclidean space. For any time tTimet \in \text{Time}, the cross product of ss with the value of the Frechet derivative of ff at tt applied to the unit scalar 1R1 \in \mathbb{R} is equal to the Frechet derivative of the function ts×f(t)t \mapsto s \times f(t) evaluated at tt and applied to 11. That is, s×(Df(t)(1))=D(ts×f(t))(t)(1) s \times (Df(t)(1)) = D(t' \mapsto s \times f(t'))(t)(1) where DD denotes the Frechet derivative over the real numbers and ×\times denotes the cross product in R3\mathbb{R}^3.

theorem

s×dfdt=ddt(s×f)s \times \frac{df}{dt} = \frac{d}{dt}(s \times f)

Let sR3s \in \mathbb{R}^3 be a constant vector and f:TimeR3f: \text{Time} \to \mathbb{R}^3 be a differentiable function from a one-dimensional time space into a three-dimensional Euclidean space. For any time tTimet \in \text{Time}, the cross product of ss with the time derivative of ff at tt is equal to the time derivative of the function ts×f(t)t' \mapsto s \times f(t') evaluated at tt. That is, s×dfdt(t)=ddt(s×f(t)) s \times \frac{df}{dt}(t) = \frac{d}{dt}(s \times f(t)) where ×\times denotes the cross product in R3\mathbb{R}^3 and ddt\frac{d}{dt} denotes the time derivative (defined as the Fréchet derivative applied to the unit scalar 11).

theorem

v,w×v=0\langle v, w \times v \rangle = 0

For any vectors v,wR3v, w \in \mathbb{R}^3 in the three-dimensional Euclidean space, the inner product of vv and the cross product of ww and vv is zero, that is, v,w×v=0\langle v, w \times v \rangle = 0.

theorem

v(v×w)=0v \cdot (v \times w) = 0

For any vectors vv and ww in the 3D Euclidean space R3\mathbb{R}^3, the inner product of vv with the cross product of vv and ww is zero. That is, v(v×w)=0v \cdot (v \times w) = 0.