summaryrefslogtreecommitdiff
path: root/1172/CH6/EX6.14.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1172/CH6/EX6.14.1
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 '1172/CH6/EX6.14.1')
-rwxr-xr-x1172/CH6/EX6.14.1/6_14a.txt5
-rwxr-xr-x1172/CH6/EX6.14.1/Example6_14a.sce13
2 files changed, 18 insertions, 0 deletions
diff --git a/1172/CH6/EX6.14.1/6_14a.txt b/1172/CH6/EX6.14.1/6_14a.txt
new file mode 100755
index 000000000..147c757a8
--- /dev/null
+++ b/1172/CH6/EX6.14.1/6_14a.txt
@@ -0,0 +1,5 @@
+ # Problem 14a #
+
+ Standard formula used
+ E = m*c^2
+ Ratio of relativistic mass and rest mass of particle is 1.953602e+03.
diff --git a/1172/CH6/EX6.14.1/Example6_14a.sce b/1172/CH6/EX6.14.1/Example6_14a.sce
new file mode 100755
index 000000000..6d761628b
--- /dev/null
+++ b/1172/CH6/EX6.14.1/Example6_14a.sce
@@ -0,0 +1,13 @@
+clc
+//Given that
+E = 1e9 // energy of electron in eV
+c = 3e8 // speed of light in m/s
+m_0 = 9.1e-31 // mass of electron in kg
+// sample problem 14 page No. 227
+printf("\n \n\n # Problem 14a # \n")
+printf("\n Standard formula used \n E = m*c^2")
+m = E / c^2 * 1.6e-19 // calculation of relativistic mass of particle
+ratio = m / m_0// calculation of Ratio of relativistic mass and rest mass of particle
+printf ("\n Ratio of relativistic mass and rest mass of particle is %e.",ratio )
+
+