Skip to main content
🔬 Advanced

মধ্যবিন্দু ক্যালকুলেটর

Find the midpoint between two points in 2D space. Enter coordinates (x₁,y₁) and (x₂,y₂).

এই ক্যালকুলেটর কীভাবে ব্যবহার করবেন

  1. x₁ লিখুন
  2. y₁ লিখুন
  3. x₂ লিখুন
  4. y₂ লিখুন
  5. গণনা করুন বোতামে ক্লিক করুন
  6. ক্যালকুলেটরের নিচে প্রদর্শিত ফলাফলটি পড়ুন

The Midpoint Formula Explained

The midpoint of a line segment is the point exactly halfway between two endpoints. For points (x₁,y₁) and (x₂,y₂), the midpoint M is: M = ((x₁+x₂)/2, (y₁+y₂)/2). This formula averages the x-coordinates and y-coordinates separately, which makes intuitive sense — the midpoint's x-coordinate is the mean of the two x values.

Example: midpoint between (2,4) and (8,10): Mx = (2+8)/2 = 5, My = (4+10)/2 = 7. Midpoint = (5,7). Verify: the distance from (2,4) to (5,7) = √(9+9) = √18. Distance from (5,7) to (8,10) = √(9+9) = √18. Equal distances confirm it's the midpoint. ✓

The midpoint formula extends to 3D: M = ((x₁+x₂)/2, (y₁+y₂)/2, (z₁+z₂)/2). And to n dimensions: each coordinate of the midpoint is the average of the corresponding coordinates of the two points. This generalization is used in algorithms, machine learning, and optimization.

Midpoints in Geometry and Proof

Midpoints are central to many geometric theorems. The Triangle Midsegment Theorem: the segment connecting midpoints of two sides of a triangle is parallel to the third side and half its length. This result is the basis of many geometric constructions and proofs.

The midpoint theorem for quadrilaterals: connecting the midpoints of any quadrilateral's sides forms a parallelogram (Varignon's theorem). The median of a triangle connects a vertex to the midpoint of the opposite side. All three medians of a triangle intersect at the centroid, located 2/3 of the way from each vertex to the opposite midpoint.

In coordinate geometry, midpoints help find centers of circles (the center is equidistant from all points on the circle, and the midpoint of any diameter is the center). To find a circle's center given a diameter with endpoints: use the midpoint formula. This is essential in geometric construction problems.

Midpoints in Navigation, Design, and Algorithms

Midpoint calculations appear in many practical domains. In GPS and navigation, finding the midpoint between two locations gives the halfway point for a road trip or the center of a geographic region. The haversine formula calculates midpoints on a sphere (great-circle midpoint) for accurate geographic calculations.

In computer graphics, Bézier curves and subdivision algorithms repeatedly compute midpoints to smooth and interpolate curves. The De Casteljau algorithm evaluates a Bézier curve at any parameter by recursively bisecting control point segments. Midpoint subdivision creates fractal-like terrain heightmaps in game development.

In binary search, the midpoint of a sorted array range is computed each iteration: mid = (low + high) / 2. This halves the search space each step, giving O(log n) time complexity. Note: in languages with fixed-size integers, (low + high) can overflow; the safe form is low + (high - low) / 2.

সর্বশেষ আপডেট: March 2026

Frequently Asked Questions

How do I find a missing endpoint if I know the midpoint?

If midpoint M=(5,7) and one endpoint A=(2,4), solve: (2+x)/2=5 → x=8; (4+y)/2=7 → y=10. Missing endpoint B=(8,10). The formula: B = (2×Mx - Ax, 2×My - Ay).

Is the midpoint always inside the segment?

Yes, by definition. The midpoint lies exactly between the two endpoints and is always part of the line segment connecting them.

Can you find the midpoint of more than two points?

The midpoint is defined for exactly two points. For more points, you'd calculate the centroid: average all x-coordinates and all y-coordinates. For n points: centroid = (Σxᵢ/n, Σyᵢ/n).