answersLogoWhite

0

(Distance between the points)2 = (difference of the two x-values)2 + (difference of the two y-values)2

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is approximate distance between the points (1-2) and (-93) on a coordinate grid?

If you mean points of (1, -2) and (-9, 3) then the distance is about 11 units using the distance formula


What is the 3-D distance formula?

The 3-D distance formula depends upon what the two points are that you are trying to find the distance between. In order to find the formula, you need to enter 2 sets of coordinates in the 3 dimensional Cartesian coordinate system, and then calculate the distance between the points.


What is the distance between the points named by -3 1 and -7 1 on the coordinate plane?

If you mean points of (-3, 1) and (-7, 1) then using the distance formula it is 10 units


What is the distance between (-24) and (54) on a coordinate grid?

If you mean points of (-2, 4) and (5, 4) then using the distance formula it is 7


What is the distance between the points -2 2 and 2 -2?

the distance formula for coordinates is : d=square root of ( 2nd x coordinate minus 1st x coordinate)squared plus(2nd y coordinate minus 1st y coordinate) squared sorry if it's a little confusing


What is the half distance formula and how is it used in mathematics?

The half distance formula is a mathematical formula used to find the midpoint between two points on a coordinate plane. It is calculated by averaging the x-coordinates and y-coordinates of the two points separately. This formula is commonly used in geometry and algebra to determine the center point between two given points.


What is is the approximate distance between two points (negative 51) and ( negative 23) on a coordinate grid?

If you mean points of (-5, 1) and (-2, 3) then using the distance formula it is the square root of 13 or about 3.6


What is the distance between the points named by (3 1) and (7 1) on the coordinate plane?

Using the distance formula from (3, 1) to (7, 1) is 4 units


How do you find coordinates of two points to find distance between them?

Use the distance formula. SQRT( (y1-y2)^2 + (x1-x2)^2) ) x1 and y1 are the first coordinate pair x2 and y2 are the second coordinate pair


What is the approximate distance between the points -51 and -23 on a coordinate grid?

If you mean points of (-5, 1) and (-2, 3) then using the distance formula it is the square root of 13 or about 3.61 rounded to 2 decimal places


What are 1.2.4 journal the distance formula answers apex?

In mathematics, the distance formula is used to calculate the distance between two points in a coordinate plane. The formula is given by d = √((x₂ - x₁)² + (y₂ - y₁)²), where (x₁, y₁) and (x₂, y₂) are the coordinates of the two points. To find the answers for 1.2.4 in a journal related to the distance formula, you would need to refer to the specific context or question provided in the journal. The answers would involve substituting the given coordinates into the formula and calculating the distance between the two points.


What is the implementation of the distance function in C for calculating the distance between two points in a program?

To implement the distance function in C for calculating the distance between two points in a program, you can use the formula for Euclidean distance: double distance sqrt(pow((x2 - x1), 2) pow((y2 - y1), 2)); This formula calculates the distance between two points (x1, y1) and (x2, y2) in a Cartesian coordinate system.