Wat is de afstand tussen (3, -1, 1) en (4, 1, -3)?

Wat is de afstand tussen (3, -1, 1) en (4, 1, -3)?
Anonim

Antwoord:

#sqrt (21) #

Uitleg:

De 3D-versie van de stelling van Pythagoras vertelt ons dat die afstand tussen twee punten # (X_1, y_1, z_1) # en # (X_2, y_2, z_2) # is

#color (wit) ("XXXXX") sqrt ((Deltax) ^ 2 + (Delta y) ^ 2 + (Delta z) ^ 2) #

#color (wit) ("XXX") = sqrt ((x_2-x_1) ^ 2 + (y_2-y_1) ^ 2 + (z_2-z_1) ^ 2) #

In dit geval met punten #(3,-1,1)# en #(4,1,-3)#

de afstand is

#color (wit) ("XXX") sqrt ((4-3) ^ 2 + (1 - (- 1)) ^ 2 + ((- 3) -1) ^ 2) #

#color (wit) ("XXX") = sqrt (1 ^ 2 + 2 ^ 2 + (- 4) ^ 2) #

#color (wit) ("XXX") = sqrt (21) #