diff options
Diffstat (limited to '1427/CH20/EX20.6/20_6.sce')
-rw-r--r-- | 1427/CH20/EX20.6/20_6.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1427/CH20/EX20.6/20_6.sce b/1427/CH20/EX20.6/20_6.sce new file mode 100644 index 000000000..75bf88979 --- /dev/null +++ b/1427/CH20/EX20.6/20_6.sce @@ -0,0 +1,8 @@ +//ques-20.6
+//Calculating time for required decomposition
+clc
+th=3.8;//half-life (in days)
+r=1/20;//= N/No
+T=0.693/th;//decay constant
+t=(2.303/T)*log10(1/r);
+printf("The time required is %.2f days.",t);
|