blob: 6bb3053d91c0f58b01a69d24fc2c64ffe110634a (
plain)
1
2
3
4
5
6
7
8
9
10
|
clc
// Given that
t = 2.1 // half life in minute
r = 60 // percentage fraction of sample which decayed
// Sample Problem 9 on page no. 12.34
printf("\n # PROBLEM 9 # \n")
printf("Standard formula used \n")
printf(" lambda = 0.693 / t_1/2 (Decay constant) \n ")
lambda = 0.693 / t
printf("\n Decay constant is %f per minute.",lambda)
|