TAN() calculates the tangent of an angle, where the input is specified in radians. This trigonometric function is useful for mathematical calculations, engineering applications, and various scientific computations. The tangent function represents the ratio of sine to cosine for a given angle.
TAN(number)
TAN() returns a numeric value
// Tangent of 0 radians
TAN(0) = 0
// Tangent of π radians
TAN(PI()) = 0
// Tangent of cosine of π
TAN(COS(PI())) = -1.5574
// Tangent of 100 radians
TAN(100) = -0.5872
// Additional examples
TAN(PI()/4) = 1.0 // Tangent of 45 degrees
TAN(PI()/6) = 0.5774 // Tangent of 30 degrees
TAN(PI()/3) = 1.7321 // Tangent of 60 degrees