Mo Logo [Home] [Lexikon] [Aufgaben] [Tests] [Kurse] [Begleitmaterial] [Hinweise] [Mitwirkende] [Publikationen]

Mathematik-Online-Lexikon:

Differentiation mit Maple


A B C D E F G H I J K L M N O P Q R S T U V W X Y Z Übersicht

Ableitungen lassen sich in MAPLE mit dem Befehl diff berechnen.

> diff(sin(x)^2, x);

$\displaystyle 2\,\mathrm{sin}(x)\,\mathrm{cos}(x)
$

Höhere Ableitungen lassen sich ebenfalls bestimmen, man beachte dabei die verkürzte Schreibweise mit Hilfe des Operators $.

> diff(sin(x)^2, x,x,x);

$\displaystyle - 8\,\mathrm{sin}(x)\,\mathrm{cos}(x)
$

> diff(sin(x)^2, x$3);

$\displaystyle - 8\,\mathrm{sin}(x)\,\mathrm{cos}(x)
$

Bei Verwendung des Operators Diff wird die Ableitung nicht sofort, sondern erst bei einer später folgenden Berechnung ausgwertet.

> Diff(sin(x)^2, x);

$\displaystyle {\frac {\partial }{\partial x}}\,\mathrm{sin}(x)^{2}
$

> f := x -> Diff(sin(x)^2, x);

$\displaystyle f := x \rightarrow \mathrm{Diff}(\mathrm{sin}(x)^{2}, \,x)
$

> int(f(x), x=0..Pi/2);

$\displaystyle 1
$

(Autor: Marcus Reble)

siehe auch:


  automatisch erstellt am 5.  3. 2012