Wat is de afstand tussen (-1,15,3) en (3,14,5)?

Wat is de afstand tussen (-1,15,3) en (3,14,5)?
Anonim

Antwoord:

# sqrt21 ~~ 4.58 "tot 2 dec. plaatsen" #

Uitleg:

# "gebruik maken van de 3-dimensionale vorm van de" color (blue) "afstandsformule" #

# • kleur (wit) (x) d = sqrt ((x_2-x_1) ^ 2 + (y_2-y_1) ^ 2 + (z_2-z_1) ^ 2) #

# "let" (x_1, y_1, z_1) = (- 1,15,3), (x_2, y_2, z_2) = (3,14,5) #

# D = sqrt ((3 + 1) ^ 2 + (14-15) ^ 2 + (5-3) ^ 2) #

#color (wit) (d) = sqrt (16 + 1 + 4) = sqrt21 ~~ 4.58 #