diff options
Diffstat (limited to '3648/CH26/EX26.4')
-rw-r--r-- | 3648/CH26/EX26.4/Ex26_4.sce | 13 | ||||
-rw-r--r-- | 3648/CH26/EX26.4/Ex26_4.txt | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/3648/CH26/EX26.4/Ex26_4.sce b/3648/CH26/EX26.4/Ex26_4.sce new file mode 100644 index 000000000..fad109339 --- /dev/null +++ b/3648/CH26/EX26.4/Ex26_4.sce @@ -0,0 +1,13 @@ +//Example 26_4
+clc();
+clear;
+//To find the longest wavelength of light capable of ionizing hydrogen atom
+//First method
+R=1.097*10^7 //Units in meter^-1
+lamda=(1/R)*10^9 //Units in meters
+//Second method
+E=13.6 //units in eV
+e1=1 //units in eV
+lamda3=1240 //Units in eV
+lamda2=(e1/E)*(lamda3) //Units in nm
+printf("The longest wavelength of light capable of ionizing hydrogen atom is lamda=%.1f nm",lamda2)
diff --git a/3648/CH26/EX26.4/Ex26_4.txt b/3648/CH26/EX26.4/Ex26_4.txt new file mode 100644 index 000000000..d16ad5b97 --- /dev/null +++ b/3648/CH26/EX26.4/Ex26_4.txt @@ -0,0 +1 @@ +The longest wavelength of light capable of ionizing hydrogen atom is lamda=91.2 nm
\ No newline at end of file |