Tested tool guide
Tested browser tools
Checked August 16, 2026
What Coordinate Geometry Toolkit does, with a checked example
Coordinate Geometry Toolkit turns plotted or entered Cartesian points into the standard relationships between them: midpoint, straight-line distance, slope, and the equation of the line through two points. It can also compare two lines and identify their intersection on the coordinate plane. A common surprise is that a vertical line has no finite slope and cannot be written in slope-intercept form; its equation is x = constant.
Worked example
A concrete input and expected output from the current implementation.
Input
Point A = (0, 0); Point B = (3, 4)
->
Expected output
Midpoint: (1.5, 2); distance: 5; slope: 4/3; line equation: y = (4/3)x
The midpoint averages x and y separately: ((0 + 3)/2, (0 + 4)/2) = (1.5, 2). The coordinate differences are 3 and 4, so the distance is sqrt(3^2 + 4^2) = 5, the slope is 4/3, and the line has zero intercept because it passes through the origin.