diff options
Diffstat (limited to '1322/CH24/EX24.10')
-rwxr-xr-x | 1322/CH24/EX24.10/214ex4.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1322/CH24/EX24.10/214ex4.sce b/1322/CH24/EX24.10/214ex4.sce new file mode 100755 index 000000000..6196438cd --- /dev/null +++ b/1322/CH24/EX24.10/214ex4.sce @@ -0,0 +1,15 @@ + +//3rd term of G.P is 4.5 and 9th is 16.2
+clear;
+clc;
+close;
+// nth term=a*r^(n-1)
+term3=4.5;//given data
+//'a*r^(3-1)=4.5 ---equ(1)'
+term9=16.2;//given
+//'a*r^(9-1)=16.2 ---equ(2)'
+mprintf("\n the common ratio is :\n");
+format(7)
+r=(16.2/4.5)^(1/6)//equ(2)/equ(1)
+
+
|