summaryrefslogtreecommitdiff
path: root/3515/CH3/EX3.16/Ex_3_16.sce
diff options
context:
space:
mode:
Diffstat (limited to '3515/CH3/EX3.16/Ex_3_16.sce')
-rw-r--r--3515/CH3/EX3.16/Ex_3_16.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/3515/CH3/EX3.16/Ex_3_16.sce b/3515/CH3/EX3.16/Ex_3_16.sce
new file mode 100644
index 000000000..28c47d296
--- /dev/null
+++ b/3515/CH3/EX3.16/Ex_3_16.sce
@@ -0,0 +1,19 @@
+// Exa 3.16
+format('v',7);
+clc;
+clear;
+close;
+// Given data
+// bita= alpha/(1-alpha)
+// At alpha= 0.5
+alpha= 0.5;
+bita= alpha/(1-alpha);
+disp(bita,"At alpha=0.5, the value of bita is : ")
+// At alpha= 0.9
+alpha= 0.9;
+bita = alpha/(1-alpha);
+disp(bita,"At alpha=0.9, the value of bita is : ")
+// At alpha= 0.5
+alpha= 0.999;
+bita= alpha/(1-alpha);
+disp(bita,"At alpha=0.999, the value of bita is : ")