blob: 6f713ff17ac6ab70eef0225c8b1f5cac633f4d92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Ex4_2
clc;
// Given:
t1=1.3*10^9;// in years
w=0.0119;// wt %
// Solution:
N=(w*6.022*10^23)/(40*100);
k=(0.693*60)/(t1*3.16*10^7);
sa=N*k;// specific activity
printf("The specific activity is = %f dis min^-1 g^-1",sa)
|