summaryrefslogtreecommitdiff
path: root/1970/CH4/EX4.9
diff options
context:
space:
mode:
Diffstat (limited to '1970/CH4/EX4.9')
-rwxr-xr-x1970/CH4/EX4.9/Ch04Exa9.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1970/CH4/EX4.9/Ch04Exa9.sce b/1970/CH4/EX4.9/Ch04Exa9.sce
new file mode 100755
index 000000000..e380e02ff
--- /dev/null
+++ b/1970/CH4/EX4.9/Ch04Exa9.sce
@@ -0,0 +1,10 @@
+// Scilab code Exa4.9 : : Page-180 (2011)
+clc; clear;
+N_A = 1000; // Number of count observed for radiation A
+N_B = 2000; // Number of count observed for radiation B
+r = N_A/N_B; // Ratio of count A to the count B
+E_r = sqrt(1/N_A+1/N_B); // Statistical error
+printf("\nThe statistical error of the measured ratio = %4.2f", E_r*r);
+
+// Result
+// The statistical error of the measured ratio = 0.02 (Wrong answer in the textbook) \ No newline at end of file