Let5.10
; then
.
Differentiating with respect to
by XII,
,
therefore,
, by (5.2). But since
is a function of
, this may be substituted in the formula
, by (5.1), giving
Here's how to use SAGE to compute an example of this rule:
[fontsize=\scriptsize,fontfamily=courier,fontshape=tt,frame=single,label=\sage]
sage: t = var("t")
sage: x = var("x")
sage: solve(x == cos(t),t)
[t == acos(x)]
sage: f = solve(x == cos(t),t)[0].rhs()
sage: f
acos(x)
sage: diff(f,x)
-1/sqrt(1 - x^2)
This (1) computes
directly as the inverse function of
(SAGE can use the notation
in addition to
), (2) computes
its derivative.
david joyner 2008-08-11