Lösungen der Aufgaben rüberkopiert.
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
syms x;
|
||||
|
||||
x_0 = 0;
|
||||
n=4;
|
||||
|
||||
f(x) = log(1+x);
|
||||
|
||||
T(x) = taylor(f,x,x_0);
|
||||
|
||||
disp(T);
|
||||
@@ -0,0 +1,10 @@
|
||||
syms x;
|
||||
|
||||
x_0 = 1;
|
||||
n=5;
|
||||
|
||||
f(x) = 3^x;
|
||||
|
||||
T(x) = taylor(f,x,x_0);
|
||||
|
||||
disp(T);
|
||||
@@ -0,0 +1,10 @@
|
||||
syms x;
|
||||
|
||||
x_0 = 0;
|
||||
n=4;
|
||||
|
||||
f(x) = 1 / (1-x)^3;
|
||||
|
||||
T(x) = taylor(f,x,x_0);
|
||||
|
||||
disp(T);
|
||||
@@ -0,0 +1,10 @@
|
||||
syms x y;
|
||||
|
||||
x_0 = [13; -11];
|
||||
n=3;
|
||||
|
||||
f(x,y) = exp(y/x-2);
|
||||
|
||||
T(x,y) = taylor(f,[x,y],x_0);
|
||||
|
||||
disp(T);
|
||||
@@ -0,0 +1,10 @@
|
||||
syms x y z;
|
||||
|
||||
x_0 = [1,2,3];
|
||||
n=3;
|
||||
|
||||
f(x,y,z) = sin(x*y*z)*sinh(x*y*z);
|
||||
|
||||
T(x,y,z) = taylor(f,[x,y,z],x_0);
|
||||
|
||||
disp(T);
|
||||
Reference in New Issue
Block a user