How this instrument works
In a right triangle, the tangent of an acute angle is defined as the ratio of the leg opposite it to the leg adjacent to it: tan θ = opposite ⁄ adjacent. Since both legs are also fractions of the hypotenuse — opposite ⁄ hypotenuse and adjacent ⁄ hypotenuse — dividing one by the other cancels the hypotenuse out completely. That single cancellation is why this instrument only asks for two numbers: the third side is present in the geometry but never needed in the arithmetic.
Because opposite and adjacent are lengths of an actual triangle, both are strictly positive, so their ratio is always a positive number and atan of a positive number always lands strictly between 0° and 90°. The angle can approach either boundary — a long opposite side against a short adjacent one pushes θ toward 90°, and the reverse pushes it toward 0° — but it never reaches them, since a triangle with a 0° or 90° interior angle at that vertex has collapsed into a straight line rather than staying a triangle.
Swapping the two inputs hands back the OTHER acute angle for free: atan(adjacent ⁄ opposite) always equals 90° minus atan(opposite ⁄ adjacent), because the two non-right angles of any right triangle are complementary by definition — they must sum to 90° once the 90° corner has already claimed its share of the triangle's 180°. One division does the job that would otherwise take a second, independent calculation.
- Enter the length of the side across from your angle of interest into the Opposite side field.
- Enter the length of the side touching that angle (that is not the hypotenuse) into the Adjacent side field.
- Read Angle for θ = atan(opposite ⁄ adjacent), shown in degrees by default.
- Switch the Angle unit to radians or turns if your next calculation needs one of those instead.
- To get the triangle's other acute angle, swap the two entries and read Angle again.
Worked example — the 3-4-5 triangle's acute angle
Take the carpenter's 3-4-5 triangle: an Opposite side of 3 units and an Adjacent side of 4 units, the same pair of legs used to prove the Pythagorean theorem — only here the target is the angle between them, not the hypotenuse. tan θ = 3 ⁄ 4 = 0.75, and atan(0.75) = 0.6435011087932844 radians, which the Angle field reports by default as 36.86989764584402°, roughly 36.87°.
Swap the two figures — Opposite side 4, Adjacent side 3 — and the field returns 0.9272952180016122 radians, about 53.13°, the OTHER acute angle in the same triangle, since 36.86989764584402° plus 53.13010235415598° sums to exactly 90°. Neither answer needed the hypotenuse of 5 at all: the ratio of the two legs alone fixes both acute angles, which is exactly why this route skips the square-root step that finding a missing side would require.
Questions
Do I need to know the hypotenuse to find this angle?
No. tan θ is defined as opposite ⁄ adjacent, and since each of those legs also equals its own ratio to the hypotenuse, the hypotenuse cancels the moment you divide one leg by the other. Two legs are enough; a third measurement would be redundant, not additionally useful, for finding θ this way.
Why is the resulting angle always between 0° and 90°?
Because opposite and adjacent are both lengths of a real triangle, so they are always positive, and the arctangent of a positive number always falls strictly between 0° and 90°. The angle only reaches those edges in the limit, when one leg shrinks toward zero relative to the other — at which point the shape has flattened into a line and stopped being a triangle.
How do I find the triangle's other acute angle?
Swap the two entries: put your Adjacent side value into Opposite side and vice versa, then read Angle again. The result is 90° minus your first answer, because a right triangle's two acute angles are complementary — they must add to 90° since the right angle already accounts for the other 90° of the triangle's total 180°.
How is this different from the plain arctan calculator on this site?
The plain arctan tool takes one already-computed ratio x, which can be any real number, positive or negative, and simply undoes the tangent function on it. This instrument divides two triangle legs for you and, because both legs are positive lengths, always returns an angle strictly between 0° and 90° — a proper subset of arctan's full −90° to 90° range.
How is this different from the two-argument atan2 calculator?
atan2 keeps its y and x values separate rather than pre-dividing them, so it can place a point anywhere in the full 360° plane, including negative coordinates in any quadrant. Here, opposite and adjacent are lengths of one triangle and can only be positive, so the geometry itself rules out three of the four quadrants atan2 has to handle.
Which unit should I read the angle in, degrees or radians?
Whichever your next step needs — the Angle field can display degrees, radians, or turns, and all three describe the identical angle. Carpentry and surveying figures are usually read in degrees; calculus and programming contexts more often want radians, which is what the underlying atan function returns before conversion.