diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2780/CH1/EX1.12 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2780/CH1/EX1.12')
-rwxr-xr-x | 2780/CH1/EX1.12/Ex1_12.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/2780/CH1/EX1.12/Ex1_12.sce b/2780/CH1/EX1.12/Ex1_12.sce new file mode 100755 index 000000000..f0a047b6d --- /dev/null +++ b/2780/CH1/EX1.12/Ex1_12.sce @@ -0,0 +1,8 @@ +clc
+//to calculate velocity of beta particle
+c=3*10^8 //light velocity(m/s)
+u1=0.9*c //velocity of the beta particle relative to the atom in the direction of motion
+v=0.25*c //velocity of the radioactive atom relative to an experimenter
+u=(u1+v)/(1+u1*v/c^2)
+disp(" velocity of the beta particle as observed by the experimenter is u="+string(u)+"m/s")
+//answer is given in terms of c in the book =0.94c
|