Distance Math Example 4

Follow the full solution, then compare it with the other examples linked below.

Example 4

hard
Find the distance between points A(1,2,3)A(1, 2, 3) and B(4,6,3)B(4, 6, 3) in 3D space.

Solution

  1. 1
    Step 1: The 3D distance formula is d=(x2โˆ’x1)2+(y2โˆ’y1)2+(z2โˆ’z1)2d = \sqrt{(x_2-x_1)^2+(y_2-y_1)^2+(z_2-z_1)^2}.
  2. 2
    Step 2: d=(4โˆ’1)2+(6โˆ’2)2+(3โˆ’3)2=9+16+0=25=5d = \sqrt{(4-1)^2+(6-2)^2+(3-3)^2} = \sqrt{9+16+0} = \sqrt{25} = 5.

Answer

d=5d = 5 units
The 3D distance formula is a natural extension of the 2D version using the Pythagorean theorem in three dimensions. Since the z-coordinates are equal here, the distance reduces to a 2D calculation. This formula generalises to nn dimensions.

About Distance

The length of the shortest path between two points, always a non-negative real number.

Learn more about Distance โ†’

More Distance Examples