Function reference · Trigonometry

sin

Computes the sine of an angle in radians.

Nerdamer returns exact symbolic values for common rational multiples of pi, simplifies sine's odd symmetry, and evaluates supported inverse-trigonometric compositions.

Examples

These examples use Nerdamer Notation.

Use an exact special angle.

sin(pi/6)
// → 1/2

Keep a symbolic angle.

sin(x)

Interfaces

The same operation is available through the interfaces below.

Nerdamer Notation · nerdamer API

Nerdamer Notation

Use this form inside input passed to nerdamer(...).

sin(arg1)

nerdamer.sin

Call the operation through the default nerdamer import.

nerdamer.sin(x: ExpressionInput): Expression

Parameters

NameTypeDescription
xExpressionInputThe angle in radians.

Returns

Expression — The sine of `x`.

Browse the nerdamer API →

← Back to Reference