summaryrefslogtreecommitdiff
path: root/3535/CH2/EX2.4/Ex2_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3535/CH2/EX2.4/Ex2_4.sce')
-rw-r--r--3535/CH2/EX2.4/Ex2_4.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/3535/CH2/EX2.4/Ex2_4.sce b/3535/CH2/EX2.4/Ex2_4.sce
new file mode 100644
index 000000000..040b6a860
--- /dev/null
+++ b/3535/CH2/EX2.4/Ex2_4.sce
@@ -0,0 +1,12 @@
+//Chapter 2, Example 2.4, Page 39
+clc
+clear
+//Recoil Kinetic Energy
+m1 = 9.109*10**-31 // kg
+c1 = 2.998*10**8 // m/s
+E = 3 //Mev
+mc2 = (m1*c1*c1)/(1.602*10**-13) // converting to MeV
+E1 = 1/((1/E)+(1/mc2)*(1-cos(%pi/4)))
+printf("\n Recoil kinetic energy = %f MeV",E1);
+
+//Answers may vary due to round off error