summaryrefslogtreecommitdiff
path: root/3755/CH6/EX6.11/Ex6_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '3755/CH6/EX6.11/Ex6_11.sce')
-rw-r--r--3755/CH6/EX6.11/Ex6_11.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3755/CH6/EX6.11/Ex6_11.sce b/3755/CH6/EX6.11/Ex6_11.sce
new file mode 100644
index 000000000..0a964f060
--- /dev/null
+++ b/3755/CH6/EX6.11/Ex6_11.sce
@@ -0,0 +1,16 @@
+clear
+//
+//
+//
+
+//Variable declaration
+h=6.6*10^-34; //planck's constant(J-sec)
+m=9.1*10^-31; //mass of electron(kg)
+c=3*10^8; //velocity of light(m/sec)
+
+//Calculations
+lamda=h*10^10/(m*c); //wavelength of electron(angstrom)
+
+//Result
+printf("\n wavelength of electron is %0.4f angstrom",lamda)
+printf("\n answer in the book varies due to rounding off errors")