Lösungen der Aufgaben rüberkopiert.
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
syms x
|
||||
|
||||
f(x) = log(x);
|
||||
|
||||
F(x) = int(f, x);
|
||||
|
||||
disp(F);
|
||||
@@ -0,0 +1,7 @@
|
||||
syms x a b n
|
||||
|
||||
f(x) = nthroot(a*x-b,n);
|
||||
|
||||
F(x) = int(f, x);
|
||||
|
||||
disp(F);
|
||||
@@ -0,0 +1,7 @@
|
||||
syms x a b n c
|
||||
|
||||
f(x) = x / sin(a * x)^2;
|
||||
|
||||
F(x) = int(f, x);
|
||||
|
||||
disp(F);
|
||||
@@ -0,0 +1,7 @@
|
||||
syms x a b n c
|
||||
|
||||
f(x) = 1 / (b + c * exp(a * x));
|
||||
|
||||
F(x) = int(f, x);
|
||||
|
||||
disp(F);
|
||||
@@ -0,0 +1,9 @@
|
||||
syms x a b n c
|
||||
|
||||
f(x) = tan(a * x) / (1 + tan(a * x));
|
||||
|
||||
F(x) = int(f, x);
|
||||
|
||||
F(x) = simplify(F, Steps=10000, Seconds=30);
|
||||
|
||||
disp(F);
|
||||
Reference in New Issue
Block a user