How to Find the Midpoint Between Two Points
Finding the midpoint between two points is simpler than it might sound. You're essentially averaging the x-coordinates and averaging the y-coordinates separately. That gives you a new point that lands exactly in the middle of the two originals.
All you need are the coordinates of your two points. Label them however you like, but the convention is to call them Point 1 with coordinates (x₁, y₁) and Point 2 with coordinates (x₂, y₂). Once you have those, you're ready to plug them into the formula.
No special tools required. A basic calculator handles the arithmetic just fine, though doing it by hand is totally manageable for most values.