Compute comprehensive triangle properties from three vertex coordinates including sides, angles, area (shoelace formula), perimeter, centroid, incenter, circumcenter, and orthocenter.
Given three vertex coordinates in the Cartesian plane, a complete picture of a triangle's geometry can be computed. This calculator takes coordinates (x, y) for vertices A, B, and C and derives every important metric: side lengths via the distance formula, interior angles using the dot-product method, area using the shoelace formula, perimeter, and all four classical triangle centers.
The **centroid** is the intersection of medians — the point where the triangle would balance on a pin. The **incenter** is the center of the inscribed circle, equidistant from all three sides. The **circumcenter** is the center of the circumscribed circle, equidistant from all three vertices. The **orthocenter** is where the three altitudes meet.
These centers have deep significance in both pure mathematics and applied fields like engineering, physics, and computer graphics. For instance, the centroid represents the center of mass of a uniform triangular plate, while the circumcenter determines the smallest circle enclosing the triangle.
This calculator gives you instant access to all these properties from just six numbers (three coordinate pairs). It includes visual comparison bars for side lengths and angles, a reference table of triangle center formulas, and eight presets covering common triangle configurations. Whether you're solving a coordinate geometry problem, verifying a construction, or analyzing triangle geometry, everything is a click away.
Coordinate geometry often turns one triangle into several separate computations: distance for side lengths, the shoelace formula for area, vector methods for angles, and special formulas for centers. This calculator collects all of that into one place so you can move from raw coordinates to a full geometric description without re-entering data. It is particularly helpful when studying how the centroid, circumcenter, incenter, and orthocenter shift as a triangle changes shape.
Distance: d = √((x₂−x₁)² + (y₂−y₁)²). Area (Shoelace): A = ½|x₁(y₂−y₃) + x₂(y₃−y₁) + x₃(y₁−y₂)|. Centroid: G = ((x₁+x₂+x₃)/3, (y₁+y₂+y₃)/3). Angle at vertex (dot product): cos(∠) = (u⃗ · v⃗) / (|u⃗||v⃗|).
Result: Area = 6, perimeter = 12, and centroid = (1.3333, 1).
Vertices A(0,0), B(4,0), C(0,3). Side AB = 4, BC = 5, CA = 3. Area = ½|0(0−3)+4(3−0)+0(0−0)| = 6. Centroid = (4/3, 1). Perimeter = 12. Angles: A = 90°, B ≈ 36.87°, C ≈ 53.13°.
Three coordinate pairs are enough to recover nearly every standard property of a triangle. Once the vertices are known, side lengths come from the distance formula, area comes from the shoelace determinant, and interior angles come from vector comparisons. That makes vertex form one of the most powerful ways to study triangles, especially in analytic geometry and graph-based problem solving.
The centroid, incenter, circumcenter, and orthocenter each answer a different question about the same triangle. The centroid is the balance point, the incenter is equally distant from the sides, the circumcenter is equally distant from the vertices, and the orthocenter is where the altitudes meet. Seeing all four at once is valuable because their positions tell you something about whether the triangle is acute, right, obtuse, symmetric, or highly skewed.
This output is especially useful when a class problem asks you to prove something about a figure placed on the Cartesian plane. Instead of computing area in one place, angles in another, and centers on separate scratch work, you can confirm the whole structure from a single set of coordinates. That reduces algebra mistakes and makes it easier to connect numerical evidence to a formal proof.
The shoelace formula computes the area of a polygon from its vertex coordinates. For a triangle with vertices (x₁,y₁), (x₂,y₂), (x₃,y₃), the area is ½|x₁(y₂−y₃) + x₂(y₃−y₁) + x₃(y₁−y₂)|.
The centroid is the arithmetic mean of the three vertices: ((x₁+x₂+x₃)/3, (y₁+y₂+y₃)/3). It is the center of mass and always lies inside the triangle.
Yes. For an obtuse triangle, the circumcenter lies outside the triangle, on the opposite side of the longest side from the obtuse angle.
The orthocenter is the point where the three altitudes of a triangle intersect. An altitude is a perpendicular line from a vertex to the opposite side.
Form vectors from the vertex to the other two vertices, then use the dot-product formula: cos(angle) = (u·v) / (|u||v|). This gives the angle at that vertex.
The order affects labeling (which angle is A, B, C) but not the computed side lengths, area, or centers. The shoelace formula produces the same absolute area regardless of vertex order.