From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2465/CH5/EX5.6/Ex5_6.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 2465/CH5/EX5.6/Ex5_6.sce (limited to '2465/CH5/EX5.6') diff --git a/2465/CH5/EX5.6/Ex5_6.sce b/2465/CH5/EX5.6/Ex5_6.sce new file mode 100644 index 000000000..f607293bc --- /dev/null +++ b/2465/CH5/EX5.6/Ex5_6.sce @@ -0,0 +1,17 @@ +//Chapter-5,Example 6,Page 123 +clc(); +close(); + +t_half=1600 //half life period + +k=0.693/t_half //rate constant + +a=100 + +x= 80 + +t=(2.303/k)*log10(a/(a-x)) + +printf('\n the time taken t = %.2f years', t) + +//mistake in textbook -- cgit