summaryrefslogtreecommitdiff
path: root/2459/CH11/EX11.8/Ex11_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '2459/CH11/EX11.8/Ex11_8.sce')
-rw-r--r--2459/CH11/EX11.8/Ex11_8.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2459/CH11/EX11.8/Ex11_8.sce b/2459/CH11/EX11.8/Ex11_8.sce
new file mode 100644
index 000000000..93fd88c30
--- /dev/null
+++ b/2459/CH11/EX11.8/Ex11_8.sce
@@ -0,0 +1,15 @@
+//chapter11
+//example11.8
+//page209
+
+alpha1=0.9
+alpha2=0.98
+alpha3=0.99
+
+beta1=alpha1/(1-alpha1)
+beta2=alpha2/(1-alpha2)
+beta3=alpha3/(1-alpha3)
+
+printf("for alpha=0.9, beta=%.1f \n",beta1)
+printf("for alpha=0.98, beta=%.1f \n",beta2)
+printf("for alpha=0.99, beta=%.1f \n",beta3)