Distance entre deux points dans l’espace (3D)
Formule
d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2 + (z_2 - z_1)^2}
Données
| x₁ | 0 |
|---|---|
| y₁ | 0 |
| z₁ | 0 |
| x₂ | 3 |
| y₂ | 4 |
| z₂ | 12 |
Distance entre deux points dans l’espace (3D)
Données
d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2 + (z_2 - z_1)^2}
Résultats
Saisissez une valeur pour afficher les résultats.
\begin{aligned} \Delta x &= x_2 - x_1 \\ &= (3) - (0) \\ &= ? \end{aligned}
\begin{aligned} \Delta y &= y_2 - y_1 \\ &= (4) - (0) \\ &= ? \end{aligned}
\begin{aligned} \Delta z &= z_2 - z_1 \\ &= (12) - (0) \\ &= ? \end{aligned}
\begin{aligned} d &= \sqrt{(\Delta x)^2 + (\Delta y)^2 + (\Delta z)^2} \\ &= \sqrt{(?)^2 + (?)^2 + (?)^2} = ? \end{aligned}