blob: f89b82a5e5c402cef4c9f9085c379dc4e7ab9ea9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//Chapter-3,Example 2,Page 56
clc;
close;
m_alpha=6.646*10^-24 //mass of one alpha particle
n= 2300 // number of alpha particles
M=1*10^-6 //mass of plutonium
//as -(dM/dt)= lamda*M
//also (dM/dt)= n*m_alpha
lamda=n*m_alpha/M
t_half= 0.693/lamda //half life of Plutonium
printf('the half life of Plutonium is %.f years', t_half)
//mistake in text book
|