summaryrefslogtreecommitdiff
path: root/3768/CH11/EX11.1/Ex11_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3768/CH11/EX11.1/Ex11_1.sce')
-rw-r--r--3768/CH11/EX11.1/Ex11_1.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3768/CH11/EX11.1/Ex11_1.sce b/3768/CH11/EX11.1/Ex11_1.sce
new file mode 100644
index 000000000..a4b76db19
--- /dev/null
+++ b/3768/CH11/EX11.1/Ex11_1.sce
@@ -0,0 +1,16 @@
+//Example number 11.1, Page number 246
+
+clc;clear;
+close;
+
+//Variable declaration
+e=1.6*10**-19; //charge(coulomb)
+v=3*10**3; //velocity of matter wave(m/s)
+h=6.6*10**-34; //plank's constant(Js)
+lamda=600*10**-9; //wavelength(m)
+//Calculation
+Ej=h*v/lamda; //matter wave energy(J)
+E=Ej/e; //matter wave energy(eV)
+//Result
+printf("matter wave energy is %.2e eV",E)
+//answer given in the book is wrong