Wat is de afstand tussen (8, 6, 2) en (3, 4, 1)?

Wat is de afstand tussen (8, 6, 2) en (3, 4, 1)?
Anonim

Antwoord:

# Sqrt30 #

Uitleg:

Gebruik de #color (blauw) "3D-versie van de afstandsformule" #

Gegeven 2 coördinaatpunten # (x_1, y_1, z_1) "en" (x_2, y_2, z_2) #

Dan is de afstand tussen hen (d)

#color (rood) (| bar (ul (kleur (wit) (a / a) kleur (zwart) (d = sqrt ((x_2-x_1) ^ 2 + (y_2-y_1) ^ 2 + (z_2-z_1) ^ 2) kleur (wit) (a / a) |))) #

laat # (x_1, y_1, z_1) = (8,6,2) "en" (x_2, y_2, z_2) = (3,4,1) #

# D = sqrt ((3-8) ^ 2 + (4-6) ^ 2 + (1-2) ^ 2) = sqrt (25 + 4 + 1) = sqrt30 #