blob: 1b4fd239b7ee189245b6acdcd2d57542b2e73181 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
mf= 1; //mass of each entity, kg
c= 3*(10^8); //velocity of light, m/s
v= 0.6*c; //velocity of fragments relative to original body, m/s
E0= 2*((mf*(c^2))/sqrt(1-((v/c)^2))); //Total energy of fragments
m= E0/(c^2); //mass of original body, kg
disp(m,"The total mass of the stationary body (in kg) is: ")
//Result
// The total mass of the stationary body (in kg) is:
// 2.5
|