blob: 93ba623b5fa9e38d03ac4994f50dfe0bc3ec872a (
plain)
1
2
3
4
5
6
7
8
9
10
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)
|