summaryrefslogtreecommitdiff
path: root/2780/CH1/EX1.19/Ex1_19.sce
blob: 24ec280b090c88bbf8688953eba26f158951a794 (plain)
1
2
3
4
5
6
7
8
9
10
clc
//to calculate velocity of the parcticle 
c=3*10^8 //light speed(m/s)
// we know that E(energy)=mc^2
// mo=rest mass
//E=3 moc^2=mc^2 or m=3 mo (given that total energy of the particle is thrice its rest energy)  
m=3 // relativistic mass 
//formula is v=c sqrt(1-(mo/m)^2)
v=sqrt(c^2*(1-(1/m)^2))
disp("velocity of the particle is v="+string(v)+"m/s")