focus expression text field at startup -> version 1.2
[LeanCalc.git] / help / asin
1 NAME
2     asin - inverse trigonometric sine
3
4 SYNOPSIS
5     asin(x [,eps])
6
7 TYPES
8     x           real, -1 <= x <= 1
9     eps         nonzero real, defaults to epsilon()
10
11     return      real
12
13 DESCRIPTION
14     Returns the asin of x to a multiple of eps with error less in
15     absolute value than .75 * eps.
16
17     v = asin(x) is the number in [-pi/2, pi/2] for which sin(v) = x.
18
19 EXAMPLE
20     > print asin(.5, 1e-5), asin(.5, 1e-10), asin(.5, 1e-15), asin(.5, 1e-20)
21     .5236 .5235987756 .523598775598299 .52359877559829887308
22
23 LIMITS
24     none
25
26 LINK LIBRARY
27     NUMBER *qasin(NUMBER *q, NUMBER *epsilon)
28
29 SEE ALSO
30     acos, atan, asec, acsc, acot, epsilon
31