diff options
author | JODBaer <55744603+JODBaer@users.noreply.github.com> | 2022-06-13 09:18:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-13 09:18:25 +0200 |
commit | 3010b2b87e56a8e2fbc2476b9971d9ef886f17a0 (patch) | |
tree | 9de92825e4293741d7d617d40e661fb5863bb8b9 /buch/chapters/060-integral/experiments | |
parent | Merge branch 'AndreasFMueller:master' into master (diff) | |
parent | flow (diff) | |
download | SeminarSpezielleFunktionen-3010b2b87e56a8e2fbc2476b9971d9ef886f17a0.tar.gz SeminarSpezielleFunktionen-3010b2b87e56a8e2fbc2476b9971d9ef886f17a0.zip |
Merge branch 'AndreasFMueller:master' into master
Diffstat (limited to '')
-rw-r--r-- | buch/chapters/060-integral/experiments/rxy.maxima | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/buch/chapters/060-integral/experiments/rxy.maxima b/buch/chapters/060-integral/experiments/rxy.maxima new file mode 100644 index 0000000..0d5a56d --- /dev/null +++ b/buch/chapters/060-integral/experiments/rxy.maxima @@ -0,0 +1,9 @@ +y: sqrt(a*x^2+b*x+c); + +F: log(x + b/(2 * a) + y/sqrt(a))/sqrt(a); + +f: diff(F, x); + +ratsimp(f); + +ratsimp(y*f); |