diff options
Diffstat (limited to '2465/CH3/EX3.10/Example_10.sce')
-rw-r--r-- | 2465/CH3/EX3.10/Example_10.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2465/CH3/EX3.10/Example_10.sce b/2465/CH3/EX3.10/Example_10.sce new file mode 100644 index 000000000..334f2bd4d --- /dev/null +++ b/2465/CH3/EX3.10/Example_10.sce @@ -0,0 +1,17 @@ +//Chapter-3,Example 10,Page 59
+clc;
+close;
+
+t_half = 5577 //half life of carbon(14)
+
+amnt = 1/6 // amount of carbon in fresh wood
+
+t= 2.303*t_half*log10(1/amnt)/0.693
+
+printf('the age of the wood is')
+
+disp(t)
+
+printf('years')
+
+//mistake in textbook
|