What Defines an Oblique Triangle?
An oblique triangle is any triangle that does not contain a 90° angle. Unlike right triangles, which follow specific rules and ratios, oblique triangles encompass a broader category: acute triangles (all angles under 90°), obtuse triangles (one angle over 90°), equilateral triangles (all sides equal), isosceles triangles (two equal sides), and scalene triangles (all sides different).
The key constraint is simple: the three interior angles must sum to 180°, and no angle equals 90°. This flexibility means multiple solutions exist for different input combinations. Some data sets uniquely define a triangle, while others may produce two valid solutions (the ambiguous case).
The Law of Cosines and Heron's Formula
When you know all three sides, use Heron's formula to find area without calculating any angles. First, compute the semi-perimeter, then apply the formula below. When two sides and an included angle are known, the law of cosines finds the third side.
s = (a + b + c) ÷ 2
Area = √[s(s − a)(s − b)(s − c)]
c = √(a² + b² − 2ab·cos(γ))
cos(α) = (b² + c² − a²) ÷ (2bc)
a, b, c— The three sides of the triangles— Semi-perimeter (half the total perimeter)α, β, γ— The angles opposite sides a, b, c respectively
Four Solvable Triangle Configurations
- SSS (Three Sides): Given all three sides, use the law of cosines to find each angle, then Heron's formula for area. This always yields a unique solution.
- SAS (Two Sides + Included Angle): When you know two sides and the angle between them, the law of cosines directly gives the third side, and area follows from 0.5 × a × b × sin(γ). Exactly one triangle exists.
- ASA (Two Angles + Included Side): With two angles and the side connecting them, find the third angle (angles sum to 180°), then use the law of sines to compute the remaining sides.
- AAS (Two Angles + Non-Included Side): When one side is not between the known angles, find the third angle first, then apply the law of sines for the other sides. This configuration is unambiguous.
Common Pitfalls and Considerations
Certain input combinations create complications or ambiguity; knowing these prevents calculation errors.
- SSA creates ambiguity — If you know two sides and an angle <em>not</em> between them (SSA), two different triangles may satisfy the constraints—unless the angle is obtuse or the side opposite the angle is longer. Most calculators either reject SSA input or display both solutions. This ambiguous case requires careful interpretation of which triangle you intend.
- Angle sum must equal 180° — When entering angles, verify they sum to exactly 180°. If they don't, the triangle cannot exist. This is a universal property of Euclidean geometry and serves as a quick sanity check for your input data.
- Side triangle inequality — For any valid triangle, the sum of any two sides must exceed the third side (a + b > c, a + c > b, b + c > a). If your side lengths violate this rule, no triangle exists. Always verify this before interpreting results.
- Unit consistency matters — Ensure all sides use the same unit of measurement and all angles are in degrees (or all in radians). Mixing units or angle formats produces nonsensical outputs. Convert everything upfront to avoid confusion.
Using the Law of Sines
The law of sines relates each side to the sine of its opposite angle: a/sin(α) = b/sin(β) = c/sin(γ). This relationship is essential for ASA and AAS triangles, where you know at least one angle-side pair.
For example, in an AAS configuration with known angles α and β and side b, calculate the third angle γ = 180° − α − β, then find the remaining sides:
a = sin(α) × b ÷ sin(β)
c = sin(γ) × b ÷ sin(β)
The law of sines is powerful because it sidesteps the need for right-angle assumptions, making it the workhorse for general triangle problems.