¿Cuál es la distancia entre (-11, -11) y (21, -22)?

¿Cuál es la distancia entre (-11, -11) y (21, -22)?
Anonim

Responder:

# sqrt1145 ~~ 33.84 "to 2 dec. places" #

Explicación:

# "usando la fórmula de distancia" color (azul) "#

# • color (blanco) (x) d = sqrt ((x_2-x_1) ^ 2 + (y_2-y_1) ^ 2) #

# "let" (x_1, y_1) = (- 11, -11) "y" (x_2, y_2) = (21, -22) #

# d = sqrt ((21 - (- 11)) ^ 2 + (- 22 - (- 11)) ^ 2 #

#color (blanco) (x) = sqrt (32 ^ 2 + (- 11) ^ 2) #

#color (blanco) (d) = sqrt (1024 + 121) = sqrt1145 ~~ 33.84 #