Last verified · v1.0
Calculator · math
Aaa Triangle Calculator (Angle Angle Angle)
Solve any triangle from three angles and one reference side. Computes sides b and c, area, and perimeter using the Law of Sines.
Inputs
Triangle Result
—
Explain my result
Get a plain-English breakdown of your result with practical next steps.
The formula
How the
result is
computed.
AAA Triangle: Angle-Angle-Angle Solution
An AAA triangle (Angle-Angle-Angle) is defined by three known interior angles. Three angles fully determine a triangle's shape — fixing every ratio between its sides — but they do not constrain its size. Infinitely many similar triangles share the same angle set. To compute actual side lengths and area, the AAA Triangle Calculator requires one reference side, conventionally side a, the side opposite angle A. This elegant constraint ensures that a solution always exists and is unique whenever the angle inputs are geometrically valid.
Step 1: Derive the Third Angle
Because the interior angles of every triangle sum to exactly 180°, angle C is determined directly:
C = 180° − A − B
For example, if A = 45° and B = 60°, then C = 180° − 45° − 60° = 75°. This constraint is a fundamental axiom of Euclidean plane geometry and holds for all triangles, regardless of their size or shape. If the computed C is 0° or negative, the angle pair is invalid and no real triangle exists. Similarly, if either A or B is zero or negative, the inputs fail geometric validity and the calculator should reject them.
Step 2: Apply the Law of Sines
With all three angles established and side a provided, the two unknown sides are computed using the Law of Sines:
a / sin A = b / sin B = c / sin C
This relationship expresses a profound principle: in any triangle, the ratio of each side to the sine of its opposite angle is constant. Rearranging for each unknown:
- b = a × sin B / sin A
- c = a × sin C / sin A
This relationship applies to every triangle — acute, right, or obtuse — making it one of the most versatile tools in plane trigonometry. The law holds because of the proportional relationships inherent in similar triangles: all triangles with the same three angles have sides in identical ratios, and providing one concrete side length scales those ratios to produce the exact dimensions. The law is documented in full by Wolfram MathWorld's Law of Sines and Wikipedia's Law of Sines article.
Worked Numerical Example
Given A = 45°, B = 60°, and a = 10 units:
- C = 180° − 45° − 60° = 75°
- b = 10 × sin 60° / sin 45° = 10 × 0.8660 / 0.7071 ≈ 12.25 units
- c = 10 × sin 75° / sin 45° = 10 × 0.9659 / 0.7071 ≈ 13.66 units
Notice how the sine values scale the reference side a proportionally to produce sides b and c. The larger sine value for angle B relative to angle A means side b is proportionally longer than side a; similarly, the larger sine value for angle C produces side c as the longest side. This ordering of sides always matches the ordering of their opposite angles — a direct consequence of the Law of Sines.
Step 3: Calculate the Area
Once two sides and their included angle are resolved, the area follows from the standard two-side formula:
Area = ½ × a × b × sin C
Applying the example: Area = 0.5 × 10 × 12.25 × sin 75° = 0.5 × 10 × 12.25 × 0.9659 ≈ 59.15 square units. Alternatively, the area can be computed using any other pair of sides and their included angle — for instance, ½ × b × c × sin A or ½ × a × c × sin B — and will yield the same result, confirming internal consistency.
Step 4: Calculate the Perimeter
With all three sides resolved, the perimeter is simply their sum:
P = a + b + c
Example: P = 10 + 12.25 + 13.66 = 35.91 units. The perimeter represents the total distance around the triangle's boundary and is useful for applications such as fencing, material estimation, or path-length calculations.
Why Three Angles Alone Are Insufficient
The AAA condition establishes similarity, not congruence. A 30°–60°–90° triangle can have sides of 1–1.73–2 units or 10–17.3–20 units — the same shape at different scales. As Wikipedia's Solution of Triangles explains, AAA is an underdetermined system without a known side. Providing side a establishes the scale factor, collapsing the infinite family of similar triangles to exactly one unique solution with determinate dimensions.
Validity Conditions
Before solving, two constraints must hold: A + B must be strictly less than 180° (ensuring C > 0°), and all three angle inputs must be positive real numbers. Additionally, the reference side a must be positive; negative or zero side lengths are geometrically meaningless. If any condition fails, the inputs do not describe any real planar triangle and no solution can be computed.
Common Real-World Applications
- Surveying: computing distances between landmarks using angular readings taken from a known baseline.
- Architecture: scaling structural triangles to new dimensions while preserving prescribed angle ratios.
- Astronomy: measuring distances to celestial objects via parallax angles observed across Earth's orbital baseline.
- Navigation: fixing a vessel's position from two known bearings of known angular separation.
- Computer graphics: resizing triangular mesh elements uniformly while maintaining shape fidelity in 3D rendering pipelines.
Reference