Trig Function - Point to all six values

Trig function calculator that takes an (x, y) point on the unit circle and returns the angle, quadrant, reference angle, and all six trig values at once.

Updated: June 18, 2026 • Free Tool

Trig Function

Results

Angle (degrees)
0deg
Angle (radians) 0rad
sin (sine) 0
cos (cosine) 0
tan (tangent) 0
csc (cosecant) 0
sec (secant) 0
cot (cotangent) 0
Quadrant 0
Reference angle (degrees) 0deg
Radius (distance from origin) 0

What This Tool Does

A trig function calculator is a single tool that takes a point on the unit circle and returns the angle that point makes with the positive x-axis together with all six trigonometric function values (sin, cos, tan, csc, sec, cot). Type the (x, y) coordinates, pick whether to keep the point as-is or normalize it to the unit circle, and the result panel shows the angle in degrees and radians, every trig value, the quadrant, the reference angle, and the radius of the input point.

  • Point-to-angle reverse lookup: Read the angle of a point on the unit circle without re-deriving atan2 by hand, especially when the (x, y) coordinates are decimal values.
  • All six trig values in one panel: Get sin, cos, tan, csc, sec, and cot from a single point so the reciprocal functions stay consistent with the primary pair.
  • Quadrant and sign cross-checks: Confirm whether a trig function is positive, negative, zero, or undefined at the angle implied by a point.
  • Reference-angle and radius read-out: Read the reference angle and the radius in the same panel, useful when the input comes from a graph or a screenshot.

The reverse-lookup form of this tool is the natural complement of an angle-to-point calculator. The site already exposes a peer that returns the (cos, sin) point from any angle, and this trig function calculator runs the direction the other way.

The (x, y) coordinate input is also a more visual workflow. Sketch a point on the unit circle, read its coordinates, and let the tool do the algebra.

If you already have the angle and want the (cos, sin) point on the unit circle, the Unit Circle Calculator does that direction in one panel, while this tool runs the reverse lookup from a point to the angle and all six values.

How the Tool Works

The tool reads the (x, y) point from the input boxes, optionally divides (x, y) by its length to snap it onto the unit circle, and then uses the two-argument arctangent atan2(y, x) to recover the angle in the correct branch. Sin and cos are read directly from the point, and tan, csc, sec, and cot are computed as ratios of x and y so the trig function calculator returns all six values from the same coordinate.

theta = atan2(y, x), sin = y, cos = x, tan = y/x, sec = 1/x, csc = 1/y, cot = x/y
  • x: The x coordinate of the point. Acts as the cosine of the angle on the unit circle.
  • y: The y coordinate of the point. Acts as the sine of the angle on the unit circle.
  • mode: The point mode. 'exact' trusts the point as already on the unit circle; 'normalize' divides by its length first.
  • angleDeg: The angle in degrees, recovered with atan2(y, x).

Worked example: point (0.5, 0.8660254) on the unit circle

x = 0.5, y = 0.8660254, mode = exact

atan2(0.8660254, 0.5) = 1.0471976 radians = 60 deg. sin = 0.8660254, cos = 0.5, tan = 1.7320508, csc = 1.1547005, sec = 2, cot = 0.5773503. Radius = 1, reference angle = 60 deg.

theta = 60 deg, sin = 0.8660254, cos = 0.5, tan = 1.7320508, csc = 1.1547005, sec = 2, cot = 0.5773503, quadrant I

The point (0.5, 0.8660254) is the standard 60 deg reference, so all six values match the well-known sin 60 = sqrt(3)/2 family.

According to Wikipedia: Trigonometric functions, the six trigonometric functions sin, cos, tan, csc, sec, and cot are defined on the unit circle as sin(theta) = y, cos(theta) = x, tan(theta) = y/x, csc(theta) = 1/y, sec(theta) = 1/x, and cot(theta) = x/y.

According to Wikipedia: Radian, one degree equals pi/180 radians

When the result panel shows sin = y and you only need a single deep-dive on the sine value (graph, period, special values), the Sin Calculator returns the sine of an angle without the reciprocal csc row getting in the way.

Key Concepts Explained

These four concepts come up every time you read trig function values from a point on the unit circle, and they are the building blocks for understanding what the tool shows you.

Unit-circle definition

On the unit circle, every point (x, y) satisfies x^2 + y^2 = 1. Cosine is the x-coordinate and sine is the y-coordinate, which is why the six trig functions reduce to sin = y, cos = x, and the four other ratios.

Primary vs reciprocal trig functions

Sin, cos, and tan are the primary trig functions. Csc = 1/sin, sec = 1/cos, and cot = cos/sin are the reciprocal trig functions, and on the unit circle they become csc = 1/y, sec = 1/x, and cot = x/y.

Quadrant label and sign of trig functions

Quadrant I has all six positive, quadrant II has sin and csc positive, quadrant III has tan and cot positive, and quadrant IV has cos and sec positive. The result panel reports the quadrant label and the sign of every trig value.

Reference angle and the principal branch

The reference angle is the acute angle in [0, 90] deg that the angle reduces to once you drop the quadrant sign. The principal branch of atan2 is (-pi, pi] so the recovered angle is always in the standard range.

Reference values are the easiest way to verify the result. The five 30-45-60 points cover quadrants I and II; the negatives cover III and IV by symmetry.

The reference angle row in this tool uses the same acute reduction rule, and the Reference Angle Calculator isolates that reference angle plus the original angle without selecting a trig function first.

How to Use This Tool

Working with the tool only takes a few seconds. Type the (x, y) point, pick whether to keep it as-is or normalize it, and read the angle and all six trig values together with the quadrant, reference angle, and radius.

  1. 1 Enter the x coordinate: Type the x coordinate (cosine) of the point in the first input box. For an on-circle point the value lies in [-1, 1]; for a point off the unit circle, switch the point mode to 'Normalize' in step 3 so the tool snaps the point to radius 1.
  2. 2 Enter the y coordinate: Type the y coordinate (sine) of the point in the second input box. The pair drives the angle and every trig value.
  3. 3 Pick the point mode: Use 'Exact unit circle point' if x^2 + y^2 = 1, or 'Normalize' if your point came from a graph and you want it snapped to radius 1.
  4. 4 Read the angle: The 'Angle (degrees)' and 'Angle (radians)' rows give the angle in both units, recovered with atan2(y, x) so it stays in the correct quadrant.
  5. 5 Read the six trig values: The sin, cos, tan, csc, sec, and cot rows show the value of every trig function. Axis points (x = 0 or y = 0) report 'undefined'.
  6. 6 Check quadrant, reference, and radius: Use the quadrant label, the reference angle, and the radius to confirm the result.

Suppose a homework problem gives the point (3, 4) from a graph. Switch the point mode to 'Normalize', type 3 in the x box and 4 in the y box. The result panel reads angle 53.13 deg, sin 0.8, cos 0.6, tan 1.3333, csc 1.25, sec 1.6667, cot 0.75, quadrant I, reference angle 53.13 deg, and original radius 5.

When the (x, y) point is read from a right triangle and you want to confirm the underlying sides and angle, the Trigonometry Calculator walks through the triangle with the same six trig ratios.

Benefits of Using This Tool

A single tool that returns the angle and all six trig values from an (x, y) point removes the most common friction points in unit-circle and right-triangle problems.

  • Reverse-lookup from a point: Skip the algebra of solving tan = y/x for theta; the tool returns the angle in degrees and radians from a single (x, y) coordinate.
  • All six trig values in one panel: Read sin, cos, tan, csc, sec, and cot at the same angle, with the reciprocals consistent with the primary pair.
  • Visible sign and undefined handling: Tan and sec return 'undefined' on the y-axis, csc and cot on the x-axis, and the origin returns 'undefined' for the angle.
  • Quadrant and reference angle together: Every output includes the unit-circle quadrant and the reference angle, so the ASTC sign rule is verifiable in one screen.
  • Normalize mode for off-circle points: A point not on the unit circle (for example (3, 4)) can be snapped to the nearest unit-circle point in one click, with the original radius reported.

The reciprocal trig functions stay consistent with the primary pair, so csc = 1/sin, sec = 1/cos, and cot = cos/sin match to six decimal places.

The sin-cos, tan-cot, and sec-csc pairs read from a single (x, y) point mirror the cofunction identities, and the Cofunction Calculator surfaces those identities directly when you want a paired comparison.

Factors That Affect Your Results

A handful of factors control what this trig function calculator can show. Knowing them up front prevents the most common mistakes.

Whether the point is on the unit circle

In 'exact' mode the tool trusts the (x, y) point as already on the unit circle. The radius row shows the actual length so a non-unit input is visible.

Point mode toggle

In 'normalize' mode the tool divides (x, y) by sqrt(x^2 + y^2), changing x and y to a unit vector. The original radius is still reported.

Axis points where x or y is zero

Tan and sec are undefined on the y-axis (x = 0), and csc and cot are undefined on the x-axis (y = 0). The result panel reports 'undefined' for those rows.

Origin input (0, 0)

At the origin the angle is undefined, the radius is 0, and every trig ratio is undefined. The result panel labels the angle 'undefined' and the quadrant 'axis'.

  • The tool returns a real value for any real (x, y) point. It does not return a complex-valued trig function for points that would need it, because the surrounding problem almost always expects a real answer.
  • The displayed trig values match the true values to roughly 15 significant digits, so treat the result as an approximation rather than an exact symbolic answer.

If the angle comes out negative, that is the principal branch of atan2. -120 deg is the same angle as 240 deg, and the result panel keeps the principal (-180, 180] range so the reference angle is always positive.

According to Wolfram MathWorld: Trigonometric Functions, the unit circle parameterization (cos t, sin t) covers all six trig functions at once, and atan2(y, x) is the standard way to recover t from a point (x, y) so the angle stays in the correct branch.

When the cos row of this tool needs to be inverted back to the principal angle whose cosine equals that value, the Cos Inverse Calculator returns arccos in degrees or radians.

Trig function calculator with x and y coordinate input boxes, point mode selector, and a result panel showing the angle, quadrant, reference angle, and all six trig function values.
Trig function calculator with x and y coordinate input boxes, point mode selector, and a result panel showing the angle, quadrant, reference angle, and all six trig function values.

Frequently Asked Questions

Q: What does the trig function tool do?

A: A trig function calculator takes an (x, y) point on the unit circle and returns the angle that point makes with the positive x-axis, plus all six trigonometric function values (sin, cos, tan, csc, sec, cot) at that angle. The tool also reports the quadrant, reference angle, and the radius of the input point so you can read the full trig profile from one coordinate.

Q: How do I find the angle from a point on the unit circle?

A: Type the (x, y) coordinates of the point in the input boxes, pick 'Exact unit circle point' if x^2 + y^2 = 1, and read the angle in degrees and radians in the result panel. Internally, the calculator uses the two-argument arctangent atan2(y, x) so the angle stays in the correct quadrant branch even when x or y is negative.

Q: Can I get all six trig functions from one point?

A: Yes. Once you enter the (x, y) point, the trig function calculator returns sin = y, cos = x, tan = y/x, csc = 1/y, sec = 1/x, and cot = x/y in one panel. At axis points where x or y is exactly zero, the corresponding ratio is reported as 'undefined' rather than a misleading infinity.

Q: What is the quadrant and reference angle of a point?

A: The quadrant label (I, II, III, IV, or 'axis') is read from the signs of x and y: x > 0 and y > 0 is quadrant I, x < 0 and y > 0 is quadrant II, x < 0 and y < 0 is quadrant III, and x > 0 and y < 0 is quadrant IV. The reference angle is the acute angle in [0, 90] deg that the original angle reduces to once you drop the quadrant sign.

Q: Which trig functions are undefined at axis points?

A: Tan and sec are undefined at every point on the y-axis (x = 0), and csc and cot are undefined at every point on the x-axis (y = 0). At the origin (0, 0) the angle itself is undefined and every ratio is undefined. This tool shows 'undefined' for those rows so the result panel never reports a misleading number.

Q: Why do you use a two-argument arctangent (atan2) instead of a regular arctangent?

A: A regular arctangent arctan(y/x) loses the sign of x, so it cannot tell quadrant I from quadrant III or quadrant II from quadrant IV. The two-argument arctangent atan2(y, x) keeps both signs, so the recovered angle stays in the correct (-pi, pi] branch. That is why this trig function calculator uses atan2 under the hood and reports the angle in the same quadrant as the input point.