summaryrefslogtreecommitdiff
path: root/3665/CH6/EX6.14
diff options
context:
space:
mode:
Diffstat (limited to '3665/CH6/EX6.14')
-rw-r--r--3665/CH6/EX6.14/Ex6_14.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3665/CH6/EX6.14/Ex6_14.sce b/3665/CH6/EX6.14/Ex6_14.sce
new file mode 100644
index 000000000..884730ce9
--- /dev/null
+++ b/3665/CH6/EX6.14/Ex6_14.sce
@@ -0,0 +1,16 @@
+clc//
+//
+//
+
+//Variable declaration
+E=1.5*9.1*10^-31; //energy(joule)
+m=1.676*10^-27; //mass(kg)
+h=6.62*10^-34; //planck's constant
+
+//Calculation
+v=sqrt(2*E/m);
+lamda=h/(m*v); //wavelength(m)
+
+//Result
+printf("\n wavelength is %0.3f *10^-6 m",lamda*10^6)
+printf("\n answer varies due to rounding off errors")