summaryrefslogtreecommitdiff
path: root/1271/CH11/EX11.37
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1271/CH11/EX11.37
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1271/CH11/EX11.37')
-rwxr-xr-x1271/CH11/EX11.37/37.txt3
-rwxr-xr-x1271/CH11/EX11.37/example11_37.sce11
2 files changed, 14 insertions, 0 deletions
diff --git a/1271/CH11/EX11.37/37.txt b/1271/CH11/EX11.37/37.txt
new file mode 100755
index 000000000..be2b99528
--- /dev/null
+++ b/1271/CH11/EX11.37/37.txt
@@ -0,0 +1,3 @@
+ Relativistic mass of proton is 1.600000e-27 kg,
+ Here relativistic mass is same as rest mass
+ hence proton is at rest and speed and kinetic energy of proton will be zero
diff --git a/1271/CH11/EX11.37/example11_37.sce b/1271/CH11/EX11.37/example11_37.sce
new file mode 100755
index 000000000..c53736985
--- /dev/null
+++ b/1271/CH11/EX11.37/example11_37.sce
@@ -0,0 +1,11 @@
+clc
+// Given that
+E = 900 // total relativistic energy of proton in Mev
+m = 1.63-27 // rest mass of proton in kg
+c = 3e8 // velocity of photon in meter/sec
+// Sample Problem 37 on page no. 11.32
+printf("\n # PROBLEM 37 # \n")
+printf(" Standard formula used \n")
+printf(" E = m*c^2 \n ")
+m_ = (E * 1.6e-13) / (c)^2
+printf("\n Relativistic mass of proton is %e kg,\n Here relativistic mass is same as rest mass\n hence proton is at rest and speed and kinetic energy of proton will be zero",m_)