summaryrefslogtreecommitdiff
path: root/3636/CH3/EX3.11
diff options
context:
space:
mode:
Diffstat (limited to '3636/CH3/EX3.11')
-rw-r--r--3636/CH3/EX3.11/Ex3_11.sce17
-rw-r--r--3636/CH3/EX3.11/Ex3_11.txt2
2 files changed, 19 insertions, 0 deletions
diff --git a/3636/CH3/EX3.11/Ex3_11.sce b/3636/CH3/EX3.11/Ex3_11.sce
new file mode 100644
index 000000000..e7c43a42d
--- /dev/null
+++ b/3636/CH3/EX3.11/Ex3_11.sce
@@ -0,0 +1,17 @@
+clc;
+clear;
+E=1.43 //in eV
+h=4.14*10^-15 //plancks constant in e*V*s
+c=3*10^8 //in m/s
+
+//Calculation
+//a)
+v=E/h
+
+//b)
+lamda=c/v
+
+mprintf("a)minimum frequency= %.3e Hz\n",v)
+mprintf("b)wavelength= %.1e m",lamda) //The answers vary due to round off error
+
+
diff --git a/3636/CH3/EX3.11/Ex3_11.txt b/3636/CH3/EX3.11/Ex3_11.txt
new file mode 100644
index 000000000..3271f8e42
--- /dev/null
+++ b/3636/CH3/EX3.11/Ex3_11.txt
@@ -0,0 +1,2 @@
+ a)minimum frequency= 3.454e+14 Hz
+b)wavelength= 8.7e-07 m \ No newline at end of file