summaryrefslogtreecommitdiff
path: root/1172/CH3/EX3.3
diff options
context:
space:
mode:
Diffstat (limited to '1172/CH3/EX3.3')
-rwxr-xr-x1172/CH3/EX3.3/3_3.txt5
-rwxr-xr-x1172/CH3/EX3.3/Example3_3.sce11
2 files changed, 16 insertions, 0 deletions
diff --git a/1172/CH3/EX3.3/3_3.txt b/1172/CH3/EX3.3/3_3.txt
new file mode 100755
index 000000000..d79debeab
--- /dev/null
+++ b/1172/CH3/EX3.3/3_3.txt
@@ -0,0 +1,5 @@
+ # Problem 3 #
+
+ Standard formula Used
+ E = h*c/lambda
+ Shortest wavelength emitted is 0.310500 Angstrom.
diff --git a/1172/CH3/EX3.3/Example3_3.sce b/1172/CH3/EX3.3/Example3_3.sce
new file mode 100755
index 000000000..d238a255a
--- /dev/null
+++ b/1172/CH3/EX3.3/Example3_3.sce
@@ -0,0 +1,11 @@
+clc
+//Given that
+applied_voltage = 4e4 // in volt
+h = 6.624e-34 // plank's constant
+c = 3e8 // speed of light
+e = 1.6e-19 // charge on electron
+//Sample Problem 3 Page No. 136
+printf("\n\n\n # Problem 3 # \n")
+printf("\n Standard formula Used \n E = h*c/lambda")
+lambda = h * c / ( e * applied_voltage) *1e10 //calculation of Shortest wavelength emitted
+printf("\n Shortest wavelength emitted is %f Angstrom.", lambda)