summaryrefslogtreecommitdiff
path: root/3768/CH5/EX5.11/Ex5_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '3768/CH5/EX5.11/Ex5_11.sce')
-rw-r--r--3768/CH5/EX5.11/Ex5_11.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3768/CH5/EX5.11/Ex5_11.sce b/3768/CH5/EX5.11/Ex5_11.sce
new file mode 100644
index 000000000..58ca4589f
--- /dev/null
+++ b/3768/CH5/EX5.11/Ex5_11.sce
@@ -0,0 +1,14 @@
+//Example number 5.11, Page number 89
+
+clc;clear;
+close;
+
+//Variable declaration
+me=9.1*10**-31; //mass(kg)
+mp=1.6*10**-27; //mass(kg)
+h=6.626*10**-34; //plank constant
+c=3*10**10; //velocity of light(m/s)
+//Calculation
+lamda=h/sqrt(2*mp*me*c**2)*10**10; //de broglie wavelength(m)
+//Result
+printf("de broglie wavelength is %.5e Angstrom",lamda)