Trigonometric Functions
Beyond sine and cosine, there are four more trigonometric functions: tangent, cotangent, secant, and cosecant. Each one is built from sine and cosine using ratios or reciprocals. This section covers how to find their exact values, how to handle angles outside the first quadrant, and the key identities that tie everything together.
Exact Values of Trigonometric Functions
Since you already know sine and cosine values from the unit circle, you can find the other four trig functions using these definitions:
- Tangent is the ratio of sine to cosine:
- Cotangent is the reciprocal of tangent (or cosine over sine):
- Secant is the reciprocal of cosine:
- Cosecant is the reciprocal of sine:
Notice that tangent and secant are undefined whenever , and cotangent and cosecant are undefined whenever .
Here are some worked examples at common angles:
- , since both sine and cosine of are
The pattern is always the same: start with the sine and cosine values you've memorized from the unit circle, then plug them into the appropriate ratio or reciprocal.
Reference Angles Beyond the First Quadrant
A reference angle is the acute angle formed between the terminal side of your angle and the x-axis. It tells you which first-quadrant values to use. The quadrant then tells you the sign.
To find a reference angle:
- Determine which quadrant the angle falls in.
- Use the appropriate formula:
- Quadrant II: reference angle =
- Quadrant III: reference angle =
- Quadrant IV: reference angle =
For example, is in Quadrant III, so the reference angle is .
Next, determine the sign using the quadrant. A helpful mnemonic is "All Students Take Calculus" (ASTC), moving counterclockwise from Quadrant I:
- Quadrant I ( to ): All functions positive
- Quadrant II ( to ): Sine and cosecant positive
- Quadrant III ( to ): Tangent and cotangent positive
- Quadrant IV ( to ): Cosine and secant positive
Putting it together: to evaluate , you find the reference angle , recall , and note that cosine is negative in Quadrant III. So .

Even vs. Odd Trigonometric Functions
Even functions satisfy . Their graphs are symmetric about the y-axis.
- Cosine and secant are even: and
Odd functions satisfy . Their graphs are symmetric about the origin.
- Sine, cosecant, tangent, and cotangent are all odd:
This is useful for simplifying expressions. For instance, if you need , you don't need the unit circle again. Since sine is odd, it's just .
Trigonometric Identities and Technology

Fundamental Trigonometric Identities
These identities are true for all values of where the expressions are defined. You'll use them constantly to simplify expressions and verify equations.
Reciprocal Identities:
Quotient Identities:
Pythagorean Identities:
The second and third Pythagorean identities are derived from the first. If you divide by , you get the tangent-secant version. Dividing by gives the cotangent-cosecant version. Knowing this means you only need to memorize the first one.
Technology in Trigonometric Evaluation
Scientific calculators, spreadsheets, and programming languages can all compute trig values. The most common mistake is being in the wrong angle mode, so always check that first.
Calculators:
- Make sure you're in degree mode for degree inputs and radian mode for radian inputs.
- Most calculators have , , and buttons. For , , and , compute the reciprocal manually (e.g., for , calculate ).
Spreadsheets (Excel, Google Sheets):
- Use
=SIN(),=COS(), and=TAN(). These functions expect the angle in radians. - For , enter
=SIN(PI()/3). - There are no built-in
CSC,SEC, orCOTfunctions. Use reciprocals instead:=1/COS(PI()/6)for .
Python:
- Use the
mathmodule:math.sin(),math.cos(),math.tan(). Angles must be in radians. - Python's
mathmodule does not havecsc,sec, orcotfunctions. Use reciprocals:1/math.cos(2*math.pi/3)for .