how would u find the distance between the two points (-4,4) (3,4)

To find the distance between two points in a Cartesian coordinate system, you can use the distance formula, which is derived from the Pythagorean theorem. The distance formula is:

d = √((x2 - x1)^2 + (y2 - y1)^2)

Where:
- (x1, y1) and (x2, y2) are the coordinates of the two points

In your case, the two points are (-4, 4) and (3, 4). So, you can plug these values into the formula:

d = √((-4 - 3)^2 + (4 - 4)^2)
d = √((-7)^2 + (0)^2)
d = √(49 + 0)
d = √49
d = 7

Therefore, the distance between the two points (-4, 4) and (3, 4) is 7 units.