blob: 9695efcf3e451e880b5c79da2d270e936a019c35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Ex4_11
clc;
// Given:
Ma=4;//mass of alpha particle
Mr=228;// mass of Th
Ea=4; //in MeV
// Solution:
Er=(Ma/Mr)*Ea;// energy of recoil
Et=Ea+Er;// total energy of transition
dM=Et/931;// net mass loss in u
printf("The net mass loss is = %f u",dM)
|