summaryrefslogtreecommitdiff
path: root/1172/CH3/EX3.16.1
diff options
context:
space:
mode:
Diffstat (limited to '1172/CH3/EX3.16.1')
-rwxr-xr-x1172/CH3/EX3.16.1/3_16a.txt6
-rwxr-xr-x1172/CH3/EX3.16.1/Example3_16a.sce11
2 files changed, 17 insertions, 0 deletions
diff --git a/1172/CH3/EX3.16.1/3_16a.txt b/1172/CH3/EX3.16.1/3_16a.txt
new file mode 100755
index 000000000..d908530d0
--- /dev/null
+++ b/1172/CH3/EX3.16.1/3_16a.txt
@@ -0,0 +1,6 @@
+
+ # Problem 16a #
+
+ Standard formula Used
+ For Lyman series 1/lambda = R*((1/2) ^2 - (1/n) ^2)
+ Wavelength of first line of Lyman series is 1215.436038 Angstrom.
diff --git a/1172/CH3/EX3.16.1/Example3_16a.sce b/1172/CH3/EX3.16.1/Example3_16a.sce
new file mode 100755
index 000000000..93ba623b5
--- /dev/null
+++ b/1172/CH3/EX3.16.1/Example3_16a.sce
@@ -0,0 +1,11 @@
+clc
+//Given that
+R = 1.097 // Rydberg’s constant
+n1 = 1 // transition state no
+n2 = 2 // transition state no
+//Sample Problem 16a page No. 142
+printf("\n\n\n # Problem 16a # \n")
+printf ("\n Standard formula Used \n For Lyman series 1/lambda = R*((1/2) ^2 - (1/n) ^2)")
+nu1 = R * (n2^2 - n1^2) / (n1^2 * n2^2) //calculation of frequency of first line of Lyman series
+lambda1 = 1/ nu1//calculation of Wavelength of first line of Lyman series
+printf ("\n Wavelength of first line of Lyman series is %f Angstrom. ", lambda1 *1000)