summaryrefslogtreecommitdiff
path: root/1172/CH6/EX6.10/Example6_10.sce
blob: 95eaefc194e9e7c5b98152e07edb8ea7e9bbf832 (plain)
1
2
3
4
5
6
7
8
9
10
clc
//Given that
c = 3e8 // speed of light in m/s
m_0 = 1 // atomic mass in amu
m = 3 * m_0 // relativistic mass
// sample problem 10 page No. 225
printf("\n \n\n # Problem 10 # \n")
printf("\n Standard formula used  l = l_o * sqrt ( 1- (v/c)^2)")
v = c * sqrt(1- (m_0 / m)^2) // calculation of Velocity of particle
printf ("\n Velocity of particle is %f c.", v / c )