how do you find the distance between two graphing points

consider points (a,b,c) and (d,e,f) (in three dimensions)

distance between the points is

sqrt((a-d)^2 + (b-e)^2 + (c-f)^2 )

you use the distance formula:

d = sqrt[ (x2 - x1)^2 + (y2 - y1)^2 ]
where
(x1,y1) = first point
(x2,y2) = second point

hope this helps~ :)

To find the distance between two graphing points, you can use the distance formula. The distance formula is derived from the Pythagorean theorem, which states that in a right triangle, the square of the hypotenuse (the side opposite the right angle) is equal to the sum of the squares of the other two sides.

Here's how to use the distance formula to find the distance between two points (x1, y1) and (x2, y2):

Step 1: Identify the coordinates of the two points. Let's call the first point (x1, y1) and the second point (x2, y2).

Step 2: Calculate the difference in the x-coordinates: Δx = x2 - x1.

Step 3: Calculate the difference in the y-coordinates: Δy = y2 - y1.

Step 4: Square both Δx and Δy: (Δx)^2 and (Δy)^2.

Step 5: Add the squared differences: (Δx)^2 + (Δy)^2.

Step 6: Take the square root of the sum to find the distance: √[(Δx)^2 + (Δy)^2].

By following these steps, you will be able to find the distance between two graphing points. Remember to substitute the actual values into the formula to get the accurate distance.