Qual é a distância entre (7, 4) e (10, 8)?

Qual é a distância entre (7, 4) e (10, 8)?
Anonim

Responda:

#d = 5 # unidades

Explicação:

Distância =#sqrt ((x_2-x_1) ^ 2 + (y_2-y_1) ^ 2 #

Aqui, # x_2 # é 10, # x_1 # é 7, # y_2 # é 8, # y_1 # é 4.

Substituindo e resolvendo nós temos:

#d = sqrt ((10-7) ^ 2 + (8-4) ^ 2 #

#d = sqrt (3 ^ 2 + 4 ^ 2) #

#d = sqrt (9+ 16) #

#d = sqrt (25) #

#d = 5 # unidades