blob: 5c5ab1213c65a47044bdaecf59e7f98dcbef8cb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Refer to Example 12.3
Ro= 155; //initial activity, Ci
Lambda= 2.11*(10^(-6)); //decay constant, s^(-1)
t= 7; //days
t= t*86400; //converting to s
R= Ro*((%e)^(-(Lambda*t))); //final activity, Ci
disp(R,"The activity after one week, in Ci, is: ")
//Result
// The activity after one week, in Ci, is:
// 43.262972
|