Triangle Incenter Calculator
Solve triangle incenter problems step-by-step with our free calculator. See formulas, worked examples, and clear explanations.
Reviewed for accuracy by Manoj Kumar, Mathematics Educator
Triangle Incenter Calculator
Calculator
Adjust values & calculateEnter your values below. Every result is computed in your browser โ no data is sent to any server.
Formula: I = (a*A + b*B + c*C) / (a + b + c)
Worked example โ Incenter: (1, 1) | Inradius: 1
Formula
I = (a*A + b*B + c*C) / (a + b + c)
The incenter I is the weighted average of the three vertices A, B, C, where the weights a, b, c are the lengths of the sides opposite to each vertex. The inradius r = Area / s, where s is the semi-perimeter.
Worked Examples
Example 1: Incenter of a 3-4-5 Right Triangle
Problem:Find the incenter and inradius of a right triangle with vertices A(0,0), B(4,0), C(0,3).
Solution:Side a (opposite A) = sqrt(16+9) = 5 Side b (opposite B) = sqrt(0+9) = 3 Side c (opposite C) = sqrt(16+0) = 4 Perimeter = 12, Semi-perimeter s = 6 Area = (1/2)(4)(3) = 6 Inradius r = 6/6 = 1 Ix = (5*0 + 3*4 + 4*0)/12 = 12/12 = 1 Iy = (5*0 + 3*0 + 4*3)/12 = 12/12 = 1
Result:Incenter: (1, 1) | Inradius: 1
Example 2: Incenter of an Equilateral Triangle
Problem:Find the incenter of an equilateral triangle with vertices A(0,0), B(6,0), C(3, 5.196).
Solution:All sides equal: a = b = c = 6 Perimeter = 18, Semi-perimeter s = 9 Area = (sqrt(3)/4)(36) = 15.588 Inradius r = 15.588/9 = 1.732 Ix = (6*0 + 6*6 + 6*3)/18 = 54/18 = 3 Iy = (6*0 + 6*0 + 6*5.196)/18 = 31.176/18 = 1.732
Result:Incenter: (3, 1.732) | Inradius: 1.732
Frequently Asked Questions
What is the incenter of a triangle and how is it defined?
The incenter is the point where all three interior angle bisectors of a triangle meet. It is the center of the inscribed circle (incircle), which is the largest circle that fits entirely inside the triangle and is tangent to all three sides. Unlike the circumcenter, the incenter always lies inside the triangle regardless of whether it is acute, right, or obtuse. The incenter is equidistant from all three sides of the triangle, and that distance is called the inradius. It is one of the four classical triangle centers and plays an essential role in geometric constructions and proofs.
How do you calculate the incenter from vertex coordinates?
The incenter is calculated as the weighted average of the three vertex coordinates, where the weight for each vertex equals the length of the opposite side. If the vertices are A, B, C with opposite side lengths a, b, c respectively, then the incenter I = (a*Ax + b*Bx + c*Cx) / (a+b+c) for the x-coordinate and similarly for the y-coordinate. This weighting ensures the point lies on all three angle bisectors. The side lengths are computed using the distance formula between pairs of vertices. This approach is computationally efficient and numerically stable, making it the preferred method in most software implementations.
What is the inradius and how is it related to the triangle area?
The inradius (r) is the radius of the inscribed circle and equals the perpendicular distance from the incenter to any side of the triangle. It is calculated using the elegant formula r = Area / s, where s is the semi-perimeter (half the perimeter). This relationship can be rearranged to show that the triangle area equals r times s, which provides an alternative way to compute triangle area. For an equilateral triangle with side length a, the inradius simplifies to r = a / (2 * sqrt(3)). The inradius is always positive and is maximized (relative to the area) for equilateral triangles, making it a useful measure of how close a triangle is to being equilateral.
What are exradii and how do they relate to the incenter?
Exradii are the radii of the three excircles (escribed circles) of a triangle. Each excircle is tangent to one side of the triangle and to the extensions of the other two sides. The exradius opposite to vertex A is calculated as ra = Area / (s - a), where s is the semi-perimeter. Similarly, rb = Area / (s - b) and rc = Area / (s - c). There is a beautiful relationship: 1/r = 1/ra + 1/rb + 1/rc, where r is the inradius. The exradii are always larger than the inradius, and their product relates to the triangle area through ra * rb * rc = Area * s. These relationships connect the incircle and excircles in fundamental ways.
How does the incenter differ from the centroid and circumcenter?
The incenter, centroid, and circumcenter are all triangle centers but serve different geometric purposes. The centroid is the intersection of medians and represents the center of mass; it always lies inside the triangle at the point (Ax+Bx+Cx)/3, (Ay+By+Cy)/3. The circumcenter is the intersection of perpendicular bisectors and is equidistant from all vertices; it can lie outside for obtuse triangles. The incenter is the intersection of angle bisectors and is equidistant from all sides. Unlike the circumcenter and orthocenter, the incenter does not lie on the Euler line (except for isosceles triangles). Each center answers a different question about the triangle geometry.
What are the practical applications of the incenter?
The incenter has numerous practical applications across engineering, design, and computational geometry. In manufacturing, the incenter helps find the largest circle that can be cut from a triangular piece of material, maximizing material usage. In urban planning, finding the incenter of a triangular region identifies the point equidistant from all three boundaries, ideal for placing facilities. In computer graphics, incenter calculations are used for mesh smoothing and quality metrics in triangulated surfaces. Robotics uses incenter calculations for path planning within triangular regions. In architecture, the incircle helps design rounded elements within triangular spaces, such as circular windows in triangular gables.
Can you find the incenter using only side lengths without coordinates?
You can find the inradius using only side lengths, but determining the absolute position of the incenter requires coordinates or a reference frame. With side lengths a, b, c, compute the semi-perimeter s = (a+b+c)/2, then the area via Heron formula K = sqrt(s(s-a)(s-b)(s-c)), and finally the inradius r = K/s. To find the incenter position, you can establish a coordinate system by placing one side along the x-axis. For example, place vertex A at the origin and B at (c, 0). Then calculate C using the side lengths, and finally apply the incenter formula with these derived coordinates. This approach is commonly used in computational geometry libraries.
What is the incircle and what properties does it have?
The incircle is the largest circle that fits entirely inside a triangle, tangent to all three sides. Its center is the incenter and its radius is the inradius. The incircle touches each side at exactly one point, creating three tangent points. The distances from each vertex to the two adjacent tangent points are equal: from vertex A, both tangent lengths equal s - a, where s is the semi-perimeter. The incircle area divided by the triangle area gives a ratio that is always less than or equal to pi / (3 * sqrt(3)), with equality only for equilateral triangles. This ratio measures how efficiently the circle fills the triangle and is used as a quality metric in finite element mesh generation.
How do angle bisectors determine the incenter?
Each angle bisector of a triangle divides the opposite side in the ratio of the adjacent sides (angle bisector theorem). When all three angle bisectors are drawn, they always meet at a single point, which is the incenter. This concurrency is guaranteed by the angle bisector concurrence theorem. The proof relies on showing that any point on an angle bisector is equidistant from the two sides forming that angle. Since the incenter lies on all three bisectors, it is equidistant from all three sides. The angle bisector from vertex A divides side BC at a point D such that BD/DC = c/b, where b and c are the sides adjacent to vertices B and C respectively.
What happens to the incenter in special types of triangles?
In an equilateral triangle, the incenter coincides with the centroid, circumcenter, and orthocenter because all four centers are at the same point due to perfect symmetry. The inradius equals a / (2 * sqrt(3)) where a is the side length. In an isosceles triangle, the incenter lies on the axis of symmetry (the perpendicular bisector of the base), and two of the exradii are equal. In a right triangle with legs a and b and hypotenuse c, the inradius simplifies to r = (a + b - c) / 2, which provides a quick calculation method. As a triangle becomes more elongated or degenerate, the inradius approaches zero while the incenter moves toward the longest side.
References
Reviewed for accuracy by Manoj Kumar, Mathematics Educator ยท Editorial policy
Related Calculators
๐งฎTriangle Inequality Theorem Calculator
Calculate triangle inequality theorem with inputs, formulas, and instant results.
๐งฎPascals Triangle Calculator
Calculate pascals triangle with inputs, formulas, and instant results.
๐งฎTriangle Circumcenter Calculator
Calculate triangle circumcenter with inputs, formulas, and instant results.
๐งฎArea of a Right Triangle Calculator
Calculate area of aright triangle with inputs, formulas, and instant results.
๐งฎEquilateral Triangle Calculator
Calculate equilateral triangle with inputs, formulas, and instant results.
๐งฎIsosceles Triangle Calculator
Calculate isosceles triangle with inputs, formulas, and instant results.
๐งฎRight Triangle Calculator
Calculate right triangle with inputs, formulas, and instant results.
๐งฎRight Triangle Side and Angle Calculator
Calculate right triangle side and angle with inputs, formulas, and instant results.