summaryrefslogtreecommitdiff
path: root/3648/CH26/EX26.4/Ex26_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH26/EX26.4/Ex26_4.sce')
-rw-r--r--3648/CH26/EX26.4/Ex26_4.sce13
1 files changed, 13 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)