From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1172/CH3/EX3.16.2/Example3_16b.sce | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 1172/CH3/EX3.16.2/Example3_16b.sce (limited to '1172/CH3/EX3.16.2/Example3_16b.sce') diff --git a/1172/CH3/EX3.16.2/Example3_16b.sce b/1172/CH3/EX3.16.2/Example3_16b.sce new file mode 100755 index 000000000..4151748f2 --- /dev/null +++ b/1172/CH3/EX3.16.2/Example3_16b.sce @@ -0,0 +1,11 @@ +clc +//Given that +R = 1.097 // Rydberg’s constant +n1 = 1 // transition state no +n2 = 3 // transition state no +//Sample Problem 16b page No. 142 +printf("\n\n\n # Problem 16b # \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 second line of Lyman series is %d Angstrom. ", lambda1 *1000 ) -- cgit