How Far Is Point B? Three Tools for Maps, Coordinates and Magnitude

Scale calculator for maps and plans, coordinate distance and midpoint finder, and absolute value tool. Three new math calculators with practical examples.

Natalia Skrzek · 12 June 2026 · 7 min read

A 1:500 architectural plan shows a wall measuring 3.6 cm. Multiply by 500 and the real wall is 18 meters. That conversion takes five seconds on paper. But when you have forty measurements to check across three floor plans, a calculator saves you from at least one misplaced decimal point.

Scale is one of today's three new math tools, alongside a coordinate distance calculator and an absolute value calculator. Different problems, one shared theme: figuring out the actual size, position or magnitude of something.


Scale Calculator - from plan centimeters to real meters

The calculator takes a scale ratio (1:100, 1:50000, whatever you need), a measurement, and a direction. "Real dimension" means you measured something on paper and want the actual size. "Map dimension" means you know the real size and want to know how long the line on your drawing should be.

Scale Calculator showing 5 cm on a 1:100 plan equals 500 cm real dimension

Enter 1:100, select "Real dimension", type 5 cm. Result: 500 cm, which is 5 meters. A standard building plan at 1:100 maps 1 centimeter on paper to 1 meter in reality. Simple ratio, but the kind of thing you want double-checked when ordering materials or verifying room sizes.

Scales vary wildly depending on the context:

ScaleWhere you see it1 cm on paper =
1:50Detailed floor plan, cross-sections50 cm
1:100Standard building plan1 m
1:500Site plan, land survey5 m
1:25000Hiking map250 m
1:50000Topographic / military map500 m

Model builders use scales like 1:18 (diecast cars), 1:72 (aircraft models) or 1:87 (HO gauge model railways). The calculator handles all of these. Just type the ratio and the measurement.


Coordinate Calculator - distance and midpoint from four numbers

Two points. Four coordinates. The calculator returns the Euclidean distance between them and the midpoint of the line segment connecting them. Plus the full formula, every step shown.

Coordinate Calculator showing distance 5 between points (1,2) and (4,6) with midpoint (2.5, 4.0)

Enter A = (1, 2) and B = (4, 6). The distance is 5.0000. The midpoint is (2.50, 4.00). The formula reads: d = sqrt((4-1)^2 + (6-2)^2) = sqrt(9 + 16) = sqrt(25) = 5.

If that looks familiar, it should. The distance formula is just the Pythagorean theorem applied to a coordinate grid. Draw a right triangle with horizontal leg (x2 - x1) and vertical leg (y2 - y1). The hypotenuse is the distance.

Where does this come up outside a math textbook?

  • Game development: collision detection checks whether two sprites are within a certain distance. That is this formula running dozens of times per frame.
  • Screen layout: a designer checking whether two UI elements are evenly spaced. Pixel coordinates, same formula.
  • Land surveying: local coordinate grids, boundary markers, distance between stakes. Surveyors convert GPS to planar coordinates and run exactly this calculation.
  • Robotics: a robot arm moving from one position to another. The straight-line distance determines travel time, cable length, energy consumption.

The midpoint formula is simpler - just average each coordinate. But it matters when you need to split a line segment precisely in half. Fence posts, cable supports, structural beams - anything that needs a center point.


Absolute Value - when direction does not matter

The absolute value of a number is its distance from zero. Positive numbers stay the same. Negative numbers lose their sign. That is it.

Absolute Value Calculator showing |-7| = 7, negative number changes sign to positive

Enter -7. Result: |x| = 7. The explanation reads: "negative number changes sign to positive." Enter 42 and the result is 42 - non-negative numbers stay unchanged.

Sounds trivial until you realize how often you need to ignore direction and care only about size. Temperature dropped 8 degrees - the change is 8 regardless of direction. A bolt is 0.03 mm off target - the error is 0.03 whether it is too large or too small. A stock moved 5 dollars - the magnitude of the move is 5 no matter which way.

In equations, absolute value creates two cases. |x - 3| = 5 means x is exactly 5 units away from 3 on the number line. That gives two answers: x = 8 (five to the right) and x = -2 (five to the left). The calculator handles the simple case - computing |x| for a single number - but understanding the concept unlocks the harder problems.

InputxWhy
-100100Negative drops its sign
-0.50.5Works with decimals
00Zero is already at distance zero
3.143.14Positive stays unchanged

Maps, grids and magnitudes

These three calculators look unrelated at first glance. Scale is about maps. Coordinates are about geometry. Absolute value is about number properties. But they share a core idea: converting raw numbers into something meaningful.

A scale ratio without a calculator is just a fraction. Coordinates without the distance formula are just four numbers. A negative value without absolute value is just a number with a minus sign. The tools do the conversion so you can focus on the answer.


Tools discussed in this article

More Math tools

Try specific values