summaryrefslogtreecommitdiff
path: root/1172/CH6/EX6.17/Example6_17.sce
diff options
context:
space:
mode:
Diffstat (limited to '1172/CH6/EX6.17/Example6_17.sce')
-rwxr-xr-x1172/CH6/EX6.17/Example6_17.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/1172/CH6/EX6.17/Example6_17.sce b/1172/CH6/EX6.17/Example6_17.sce
new file mode 100755
index 000000000..f85805e22
--- /dev/null
+++ b/1172/CH6/EX6.17/Example6_17.sce
@@ -0,0 +1,11 @@
+clc
+//Given that
+E = 1 // energy of electron in MeV
+c = 3e8 // speed of light in m/s
+m_0 = 9e-31 // rest mass of electron
+// sample problem 17 page No. 229
+printf("\n \n\n # Problem 17 # \n")
+printf("\n Standard formula used \n m = m_o* sqrt ( 1- (v/c)^2) \n and \n E=m*c^2")
+m = E * 1.6e-13 / c^2// calculation of mass of electron
+v = c * sqrt(1 - (m_0 / m)^2) // calculation of Velocity of electron
+printf ("\n Velocity of electron is %e m/s.",v )