summaryrefslogtreecommitdiff
path: root/Modern_Physics_By_G.Aruldas/Chapter18_2.ipynb
blob: b99ff1378024a17264eb30273522bfe7e5ec3660 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
{
 "metadata": {
  "name": "",
  "signature": "sha256:0f6dea1f19194326599a9bca2989e912ed17e32f1ffb8d9305e16c13f8cacf2c"
 },
 "nbformat": 3,
 "nbformat_minor": 0,
 "worksheets": [
  {
   "cells": [
    {
     "cell_type": "heading",
     "level": 1,
     "metadata": {},
     "source": [
      "18: Radioactive decay"
     ]
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example number 18.1, Page number 347"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#importing modules\n",
      "import math\n",
      "from __future__ import division\n",
      "\n",
      "#Variable declaration\n",
      "N0=1;   #assume\n",
      "\n",
      "#Calculation\n",
      "f=(N0/2)/N0;   #fraction after t1/2\n",
      "f1=(N0/4)/N0;   #fraction after 2 half lives\n",
      "f2=(N0/(2**5))/N0;   #fraction after 5 half lives\n",
      "f3=(N0/(2**10))/N0;   #fraction after 10 half lives\n",
      "\n",
      "#Result\n",
      "print \"fraction after 2 half lives is\",f1\n",
      "print \"fraction after 5 half lives is\",f2\n",
      "print \"fraction after 10 half lives is\",f3"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "fraction after 2 half lives is 0.25\n",
        "fraction after 5 half lives is 0.03125\n",
        "fraction after 10 half lives is 0.0009765625\n"
       ]
      }
     ],
     "prompt_number": 1
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example number 18.2, Page number 348"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#importing modules\n",
      "import math\n",
      "from __future__ import division\n",
      "\n",
      "#Variable declaration\n",
      "thalf=2.7*24*60*60;   #half life(s)\n",
      "m=1*10**-6;   #mass(gm)\n",
      "Na=6.02*10**23;   #avagadro number(atoms/mol)\n",
      "M=198;    #molar mass(g/mol)\n",
      "t=8*24*60*60;\n",
      "\n",
      "#Calculation\n",
      "lamda=0.693/thalf;    #decay constant(per sec)\n",
      "N=m*Na/M;    #number of nuclei(atoms)\n",
      "A0=lamda*N;    #activity(disintegrations per sec)\n",
      "A=A0*math.exp(-lamda*t);    #activity for 8 days(decays per sec)\n",
      "\n",
      "#Result\n",
      "print \"decay constant is\",round(lamda*10**6,2),\"*10**-6 per sec\"\n",
      "print \"activity is\",round(A0/10**9,2),\"*10**9 disintegrations per sec\"\n",
      "print \"activity for 8 days is\",round(A/10**9,2),\"*10**9 decays per sec\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "decay constant is 2.97 *10**-6 per sec\n",
        "activity is 9.03 *10**9 disintegrations per sec\n",
        "activity for 8 days is 1.16 *10**9 decays per sec\n"
       ]
      }
     ],
     "prompt_number": 10
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example number 18.3, Page number 348"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#importing modules\n",
      "import math\n",
      "from __future__ import division\n",
      "\n",
      "#Variable declaration\n",
      "thalf=5570*365*24*60*60;   #half life(s)\n",
      "dNbydt=3.7*10**10*2*10**-3;   #number of decays per sec\n",
      "m=14;\n",
      "Na=6.02*10**23;   #avagadro number(atoms/mol)\n",
      "\n",
      "#Calculation\n",
      "lamda=0.693/thalf;    #decay constant(per sec)\n",
      "N=dNbydt/lamda;    #number of atoms\n",
      "mN=m*N/Na;   #mass of 2mCi(g)\n",
      "\n",
      "#Result\n",
      "print \"mass of 2mCi is\",round(mN*10**4,2),\"*10**-4 g\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "mass of 2mCi is 4.36 *10**-4 g\n"
       ]
      }
     ],
     "prompt_number": 23
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example number 18.5, Page number 353"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#importing modules\n",
      "import math\n",
      "from __future__ import division\n",
      "\n",
      "#Variable declaration\n",
      "thalf=1.25*10**9;   #half life(yr)\n",
      "r=10.2;   #ratio of number of atoms\n",
      "\n",
      "#Calculation\n",
      "a=1+r;\n",
      "lamda=0.693/thalf;    #decay constant(per yr)\n",
      "t=math.log(a)/lamda;   #time(yr)\n",
      "\n",
      "#Result\n",
      "print \"the rock is\",round(t/10**9,2),\"*10**9 yrs old\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "the rock is 4.36 *10**9 yrs old\n"
       ]
      }
     ],
     "prompt_number": 12
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example number 18.6, Page number 356"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#importing modules\n",
      "import math\n",
      "from __future__ import division\n",
      "\n",
      "#Variable declaration\n",
      "mU=232.037131;    #atomic mass of U(u)\n",
      "mHe=4.002603;   #atomic mass of He(u)\n",
      "E=931.5;    #energy(MeV)\n",
      "KE=5.32;   #kinetic energy of alpha particle(MeV)\n",
      "\n",
      "#Calculation\n",
      "mTh=mU-mHe-(KE/E);   #atomic mass of Th(u)\n",
      "\n",
      "#Result\n",
      "print \"atomic mass of Th is\",round(mTh,5),\"u\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "atomic mass of Th is 228.02882 u\n"
       ]
      }
     ],
     "prompt_number": 14
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example number 18.7, Page number 359"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#importing modules\n",
      "import math\n",
      "from __future__ import division\n",
      "\n",
      "#Variable declaration\n",
      "E=931.5;    #energy(MeV)\n",
      "mX=11.011433;   #mass of 11C(u)\n",
      "mXdash=11.009305;  #mass of 11B(u)\n",
      "me=0.511;\n",
      "\n",
      "#Calculation\n",
      "Q=(E*(mX-mXdash))-(2*me);    #Q value for decay(MeV)\n",
      "\n",
      "#Result\n",
      "print \"maximum energy is\",round(Q,2),\"MeV.minimum energy is zero\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "maximum energy is 0.96 MeV.minimum energy is zero\n"
       ]
      }
     ],
     "prompt_number": 16
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example number 18.8, Page number 359"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#importing modules\n",
      "import math\n",
      "from __future__ import division\n",
      "\n",
      "#Variable declaration\n",
      "mK=39.963999;    #mass of K(u)\n",
      "mAr=39.962384;   #mass of Ar(u)\n",
      "E=931.5;    #energy(MeV)\n",
      "\n",
      "#Calculation\n",
      "Q=(mK-mAr)*E;   #kinetic energy of neutrino(MeV)\n",
      "\n",
      "#Result\n",
      "print \"kinetic energy of neutrino is\",round(Q,3),\"MeV\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "kinetic energy of neutrino is 1.504 MeV\n"
       ]
      }
     ],
     "prompt_number": 18
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example number 18.9, Page number 360"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#importing modules\n",
      "import math\n",
      "from __future__ import division\n",
      "\n",
      "#Variable declaration\n",
      "mN=12.018613;    #mass of N(u)\n",
      "mC=12;   #mass of C(u)\n",
      "me=0.000549;   #mass of me(u)\n",
      "E=931.5;    #energy(MeV)\n",
      "Egamma=4.43;   #energy of emitted gamma ray(MeV)\n",
      "\n",
      "#Calculation\n",
      "Q=(mN-mC-(2*me))*E;   #Q value(MeV)\n",
      "Emax=Q-Egamma;   #maximum kinetic energy(MeV)\n",
      "\n",
      "#Result\n",
      "print \"maximum kinetic energy is\",round(Emax,2),\"MeV\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "maximum kinetic energy is 11.89 MeV\n"
       ]
      }
     ],
     "prompt_number": 20
    }
   ],
   "metadata": {}
  }
 ]
}