aboutsummaryrefslogtreecommitdiffstats
path: root/buch/chapters/110-elliptisch/agm/agm.maxima
diff options
context:
space:
mode:
authorLordMcFungus <mceagle117@gmail.com>2022-07-22 21:28:45 +0200
committerGitHub <noreply@github.com>2022-07-22 21:28:45 +0200
commit23f17598c1742c70f442b94044a20aa821022c5a (patch)
treea945540ee6a4e86b37df2f01e3a91584b4797c4f /buch/chapters/110-elliptisch/agm/agm.maxima
parentMerge pull request #2 from AndreasFMueller/master (diff)
parentMerge pull request #25 from JODBaer/master (diff)
downloadSeminarSpezielleFunktionen-23f17598c1742c70f442b94044a20aa821022c5a.tar.gz
SeminarSpezielleFunktionen-23f17598c1742c70f442b94044a20aa821022c5a.zip
Merge pull request #3 from AndreasFMueller/master
update
Diffstat (limited to 'buch/chapters/110-elliptisch/agm/agm.maxima')
-rw-r--r--buch/chapters/110-elliptisch/agm/agm.maxima26
1 files changed, 26 insertions, 0 deletions
diff --git a/buch/chapters/110-elliptisch/agm/agm.maxima b/buch/chapters/110-elliptisch/agm/agm.maxima
new file mode 100644
index 0000000..c7facd4
--- /dev/null
+++ b/buch/chapters/110-elliptisch/agm/agm.maxima
@@ -0,0 +1,26 @@
+/*
+ * agm.maxima
+ *
+ * (c) 2022 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
+ */
+
+S: 2*a*sin(theta1) / (a+b+(a-b)*sin(theta1)^2);
+
+C2: ratsimp(diff(S, theta1)^2 / (1 - S^2));
+C2: ratsimp(subst(sqrt(1-sin(theta1)^2), cos(theta1), C2));
+C2: ratsimp(subst(S, sin(theta), C2));
+C2: ratsimp(subst(sqrt(1-S^2), cos(theta), C2));
+
+D2: (a^2 * cos(theta)^2 + b^2 * sin(theta)^2)
+ /
+ (a1^2 * cos(theta1)^2 + b1^2 * sin(theta1)^2);
+D2: subst((a+b)/2, a1, D2);
+D2: subst(sqrt(a*b), b1, D2);
+D2: ratsimp(subst(1-S^2, cos(theta)^2, D2));
+D2: ratsimp(subst(S, sin(theta), D2));
+D2: ratsimp(subst(1-sin(theta1)^2, cos(theta1)^2, D2));
+
+Q: D2/C2;
+Q: ratsimp(subst(x, sin(theta1), Q));
+
+Q: ratsimp(expand(ratsimp(Q)));