Theorem 23 (Taylor's Theorem in two variables)
Given a function
with all its partial derivatives of order less than or equal to
continuous on
.
Let (
) lie in
, then for every (
) there exists a
between
and
, and a
between
and
such that
with
,
where
and
denote the partial derivatives with respect to
and
respectively.
>
The error term is given by
.
>
This Taylor series expansion can be obtained by the MapleV function 'mtaylor()':
> readlib(mtaylor):mtaylor(ff(x,y),[x=x0,y=y0],4);
>
Now try to reproduce the following result manually:
> f:=(t,y)->t^2-t+t*sin(y)-y^2;
> readlib(mtaylor):mtaylor(f(t,y),[t=1,y=Pi],5);
>