Cinématique du Point Matériel en 3D et Cas Avancés
TL;DR
You'll learn how to describe an object's motion in full 3D space using vectors for position, velocity, and acceleration. We'll explore different coordinate systems to simplify problems and tackle relative motion between moving frames. This topic builds on your 2D understanding, adding depth and complexity for more realistic scenarios.
1. The Mental Model
Imagine tracking a fly in your room. Its position changes in all three dimensions, and its speed and direction are constantly shifting. Cinématique du point matériel en 3D is simply the mathematical toolkit to precisely describe that fly's journey, even when the room itself is moving.
2. The Core Material
When moving from 2D to 3D kinematics, you're essentially adding a z-component to all your vector quantities. Everything you learned about position, velocity, and acceleration in 2D still applies, but now in three orthogonal directions.
### Position, Vitesse, Accélération en 3D
In a Cartesian coordinate system (your standard x, y, z axes), the position vector $\vec{r}(t)$ of a point P at time $t$ is:
$\vec{r}(t) = x(t)\vec{i} + y(t)\vec{j} + z(t)\vec{k}$
Where $\vec{i}$, $\vec{j}$, $\vec{k}$ are the unit vectors along the x, y, and z axes, respectively.
The velocity vector $\vec{v}(t)$ is the first derivative of the position vector with respect to time:
$\vec{v}(t) = \frac{d\vec{r}}{dt} = \dot{x}(t)\vec{i} + \dot{y}(t)\vec{j} + \dot{z}(t)\vec{k}$
Here, $\dot{x}(t)$ means $\frac{dx}{dt}$, and so on. The magnitude of the velocity vector is the speed: $||\vec{v}|| = \sqrt{\dot{x}^2 + \dot{y}^2 + \dot{z}^2}$.
The acceleration vector $\vec{a}(t)$ is the first derivative of the velocity vector (or second derivative of position) with respect to time:
$\vec{a}(t) = \frac{d\vec{v}}{dt} = \ddot{x}(t)\vec{i} + \ddot{y}(t)\vec{j} + \ddot{z}(t)\vec{k}$
Again, $\ddot{x}(t)$ means $\frac{d^2x}{dt^2}$.
### Coordonnées Spécifiques (Cylindriques et Sphériques)
Sometimes, the motion itself or the geometry of the problem makes Cartesian coordinates messy. That's when cylindrical or spherical coordinates become your best friends.
Coordonnées Cylindriques ($\rho, \phi, z$)
Think of these as polar coordinates in the xy plane, with an added z component.
- $\rho$: radial distance from the z-axis (like r in polar).
- $\phi$: azimuthal angle (angle around the z-axis).
- $z$: height along the z-axis (same as Cartesian z)