Was ist der Abstand von (2, 3, 5) und (2, 7, 4)?

Was ist der Abstand von (2, 3, 5) und (2, 7, 4)?
Anonim

Antworten:

# sqrt17 #

Erläuterung:

Um den Abstand zwischen den beiden Punkten zu berechnen, verwenden Sie die 3D-Version des #color (blau) "Entfernungsformel" #

#color (rot) (| bar (ul (Farbe (weiß) (a / a)) Farbe (schwarz) (d = sqrt ((x_2-x_1) ^ 2 + (y_2-y_1) ^ 2 + (z_2-z_1) ^ 2)) Farbe (weiß) (a / a) |))) #

woher # (x_1, y_1, z_1) "und" (x_2, y_2, z_2) "sind 2 Koordinatenpunkte" #

Lassen # (x_1, y_1, z_1) = (2,3,5) "und" (x_2, y_2, z_2) = (2,7,4) #

#rArr d = sqrt ((2-2) ^ 2 + (7-3) ^ 2 + (4-5) ^ 2 #

# = sqrt (0 + 16 + 1) = sqrt17 #