summaryrefslogtreecommitdiff
path: root/3756/CH1
diff options
context:
space:
mode:
Diffstat (limited to '3756/CH1')
-rw-r--r--3756/CH1/EX1.1/Ex1_1.sce15
-rw-r--r--3756/CH1/EX1.10/Ex1_10.sce16
-rw-r--r--3756/CH1/EX1.11/Ex1_11.sce16
-rw-r--r--3756/CH1/EX1.12/Ex1_12.sce16
-rw-r--r--3756/CH1/EX1.13/Ex1_13.sce17
-rw-r--r--3756/CH1/EX1.14/Ex1_14.sce14
-rw-r--r--3756/CH1/EX1.15/Ex1_15.sce16
-rw-r--r--3756/CH1/EX1.16/Ex1_16.sce22
-rw-r--r--3756/CH1/EX1.17/Ex1_17.sce17
-rw-r--r--3756/CH1/EX1.18/Ex1_18.sce15
-rw-r--r--3756/CH1/EX1.19/Ex1_19.sce18
-rw-r--r--3756/CH1/EX1.2/Ex1_2.sce17
-rw-r--r--3756/CH1/EX1.20/Ex1_20.sce24
-rw-r--r--3756/CH1/EX1.21/Ex1_21.sce17
-rw-r--r--3756/CH1/EX1.22/Ex1_22.sce17
-rw-r--r--3756/CH1/EX1.23/Ex1_23.sce15
-rw-r--r--3756/CH1/EX1.24/Ex1_24.sce14
-rw-r--r--3756/CH1/EX1.25/Ex1_25.sce15
-rw-r--r--3756/CH1/EX1.26/Ex1_26.sce16
-rw-r--r--3756/CH1/EX1.27/Ex1_27.sce14
-rw-r--r--3756/CH1/EX1.29/Ex1_29.sce19
-rw-r--r--3756/CH1/EX1.3/Ex1_3.sce16
-rw-r--r--3756/CH1/EX1.30/Ex1_30.sce14
-rw-r--r--3756/CH1/EX1.31/Ex1_31.sce14
-rw-r--r--3756/CH1/EX1.32/Ex1_32.sce15
-rw-r--r--3756/CH1/EX1.4/Ex1_4.sce17
-rw-r--r--3756/CH1/EX1.5/Ex1_5.sce16
-rw-r--r--3756/CH1/EX1.6/Ex1_6.sce16
-rw-r--r--3756/CH1/EX1.7/Ex1_7.sce20
-rw-r--r--3756/CH1/EX1.8/Ex1_8.sce18
-rw-r--r--3756/CH1/EX1.9/Ex1_9.sce15
31 files changed, 511 insertions, 0 deletions
diff --git a/3756/CH1/EX1.1/Ex1_1.sce b/3756/CH1/EX1.1/Ex1_1.sce
new file mode 100644
index 000000000..d67269714
--- /dev/null
+++ b/3756/CH1/EX1.1/Ex1_1.sce
@@ -0,0 +1,15 @@
+clc
+//
+//
+//
+
+//Variable declaration
+D=0.5 //Distance from Screen in cm
+d=0.5 //Distance between parallel slits in cm
+lambdaa=5890 //Wavelength
+
+//Calculations
+Beta=(D*lambdaa)/(d)/10**4 // in degrees
+
+//Result
+printf("\n The Fringe width in Youngs Double Slit Experiment is Beta= %1.4f*10**-3 m", Beta)
diff --git a/3756/CH1/EX1.10/Ex1_10.sce b/3756/CH1/EX1.10/Ex1_10.sce
new file mode 100644
index 000000000..456e187e7
--- /dev/null
+++ b/3756/CH1/EX1.10/Ex1_10.sce
@@ -0,0 +1,16 @@
+clc
+//
+//
+//
+
+//Variable declaration
+d=7.5*10**-4 //slit separation
+Beta=0.094*10**-2 //Fringe width
+D=1.2 //Distance from Screen
+
+
+//Calculations
+lambdaa=(Beta*d*10**10)/D
+
+//Result
+printf("\n The wavelength is %i Angstrom",lambdaa)
diff --git a/3756/CH1/EX1.11/Ex1_11.sce b/3756/CH1/EX1.11/Ex1_11.sce
new file mode 100644
index 000000000..3299913fa
--- /dev/null
+++ b/3756/CH1/EX1.11/Ex1_11.sce
@@ -0,0 +1,16 @@
+clc
+//
+//
+//
+
+//Variable declaration
+d=3.6125*10**-3 //slit separation
+D=1 //Distance from Screen
+lambdaa=5870*10**-10 //Wavelength
+
+
+//Calculations
+Beta=(D*lambdaa*10**4)/d
+
+//Result
+printf("\n The Fringe width is %0.3f *10**-4 m",Beta)
diff --git a/3756/CH1/EX1.12/Ex1_12.sce b/3756/CH1/EX1.12/Ex1_12.sce
new file mode 100644
index 000000000..bb623d57d
--- /dev/null
+++ b/3756/CH1/EX1.12/Ex1_12.sce
@@ -0,0 +1,16 @@
+clc
+//
+//
+//
+
+//Variable declaration
+d=0.3*10**-2 //slit separation
+D=1 //Distance from Screen
+Beta=0.0195*10**-2 //Wavelength
+
+
+//Calculations
+lambdaa=(Beta*d*10**10)/D
+
+//Result
+printf("\n The wavelength is %i *10**-10 m",lambdaa)
diff --git a/3756/CH1/EX1.13/Ex1_13.sce b/3756/CH1/EX1.13/Ex1_13.sce
new file mode 100644
index 000000000..7e1bf52ca
--- /dev/null
+++ b/3756/CH1/EX1.13/Ex1_13.sce
@@ -0,0 +1,17 @@
+clc
+//
+//
+//
+
+//Variable declaration
+n1=62 //fringes
+lambdaa1=5893*10**-10 //Wavelength 1
+lambdaa2=5461*10**-10 //Wavelength 2
+
+
+//Calculations
+n2=(n1*lambdaa1)/lambdaa2
+
+//Result
+printf("\n The number of fringes would be %i ",round(n2))
+
diff --git a/3756/CH1/EX1.14/Ex1_14.sce b/3756/CH1/EX1.14/Ex1_14.sce
new file mode 100644
index 000000000..81a9265d7
--- /dev/null
+++ b/3756/CH1/EX1.14/Ex1_14.sce
@@ -0,0 +1,14 @@
+clc
+//
+//
+//
+
+//Variable declaration
+lambdaa=5.46*10**-7 //Wavelength
+t=6.3*10**-6 //thickness
+
+//Calculations
+mu=((6*lambdaa)/t)+1
+
+//Result
+printf("\n The refractive index is %0.3f ",mu)
diff --git a/3756/CH1/EX1.15/Ex1_15.sce b/3756/CH1/EX1.15/Ex1_15.sce
new file mode 100644
index 000000000..f37c98452
--- /dev/null
+++ b/3756/CH1/EX1.15/Ex1_15.sce
@@ -0,0 +1,16 @@
+clc
+//
+//
+//
+
+//Variable declaration
+s=2.143*10**-3
+mu=1.542 //refractive index
+lambdaa=5893*10**-10 //Wavelength
+Beta=0.347*10**-3
+
+//Calculations
+t=(s*lambdaa*10**6)/(Beta*(mu-1))
+
+//Result
+printf("\n The refractive index is %0.2f mu m",t)
diff --git a/3756/CH1/EX1.16/Ex1_16.sce b/3756/CH1/EX1.16/Ex1_16.sce
new file mode 100644
index 000000000..09bc5e695
--- /dev/null
+++ b/3756/CH1/EX1.16/Ex1_16.sce
@@ -0,0 +1,22 @@
+clc
+//
+//
+//
+
+//Variable declaration
+mu=1.4 //Refractive index
+cosr=0.8631
+t=0.01*10**-3 //thickness
+lambda1=4000*10**-10 //Wavelength 1
+lambda2=5000*10**-10 //Wavelength 2
+
+
+//Calculations
+n1=(2*mu*t*cosr)/lambda1
+n2=(2*mu*t*cosr)/lambda2
+deln=(n1)-(n2)
+
+
+//Result
+printf("\n The number of dark bands seen betwween 4000 A and 5000A is %i ",deln)
+
diff --git a/3756/CH1/EX1.17/Ex1_17.sce b/3756/CH1/EX1.17/Ex1_17.sce
new file mode 100644
index 000000000..a9c466279
--- /dev/null
+++ b/3756/CH1/EX1.17/Ex1_17.sce
@@ -0,0 +1,17 @@
+clc
+//
+//
+//
+
+//Variable declaration
+mu=1.33 //Refractive index
+cosr=0.7989
+lambda1=6.1*10**-5 //Wavelength 1
+lambda2=6*10**-5 //Wavelength 2
+
+
+//Calculations
+t=(lambda1*lambda2*10**-5)/(2*mu*cosr*(lambda1-lambda2)*10**-5)
+
+//Result
+printf("\n The Thickness is %0.4f cm",t)
diff --git a/3756/CH1/EX1.18/Ex1_18.sce b/3756/CH1/EX1.18/Ex1_18.sce
new file mode 100644
index 000000000..8572369c2
--- /dev/null
+++ b/3756/CH1/EX1.18/Ex1_18.sce
@@ -0,0 +1,15 @@
+clc
+//
+//
+//
+
+//Variable declaration
+n=8 //number of fringes
+lambdaa=5893*10**-10 //Wavelength
+mu=1.5 //Refractive index
+cosr=(2*sqrt(2))/3
+//Calculations
+t=(n*lambdaa*10**6)/(2*mu*cosr)
+
+//Result
+printf("\n The Thickness is %0.3f mu m",t)
diff --git a/3756/CH1/EX1.19/Ex1_19.sce b/3756/CH1/EX1.19/Ex1_19.sce
new file mode 100644
index 000000000..2c02b4f63
--- /dev/null
+++ b/3756/CH1/EX1.19/Ex1_19.sce
@@ -0,0 +1,18 @@
+clc
+//
+//
+//
+
+//Variable declaration
+mu=4/3 //refractive index
+t=1.5 //thickness
+cosr=0.7603
+lambdaa=5*10**-7 //Wavelength
+
+
+//Calculations
+n=(2*mu*t*cosr*10**-6)/lambdaa
+
+//Result
+printf("\n The order of interference of dark band is %i ",n)
+
diff --git a/3756/CH1/EX1.2/Ex1_2.sce b/3756/CH1/EX1.2/Ex1_2.sce
new file mode 100644
index 000000000..29ddb8295
--- /dev/null
+++ b/3756/CH1/EX1.2/Ex1_2.sce
@@ -0,0 +1,17 @@
+clc
+//
+//
+//
+
+//Variable declaration
+D=2 //Distance from screen
+lambdaa=5100 //Wavelength
+Beta=0.02 //Fringe Width
+x=10 //No. of fringes
+
+
+//Calculations
+d=(x*D*lambdaa)/Beta/10**6
+
+//Result
+printf("\n The Double slit separation 2d= %0.3f mu m",d)
diff --git a/3756/CH1/EX1.20/Ex1_20.sce b/3756/CH1/EX1.20/Ex1_20.sce
new file mode 100644
index 000000000..ac1652b77
--- /dev/null
+++ b/3756/CH1/EX1.20/Ex1_20.sce
@@ -0,0 +1,24 @@
+clc
+//
+//
+//
+
+//Variable declaration
+mu=1.33 //refractive index
+n1=0
+n2=1
+n3=2
+t=5*10**-7 //thickness
+
+
+//Calculations
+lambda1=(4*mu*t*10**10)/(2*n1+1)
+lambda2=(4*mu*t*10**10)/(2*n2+1)
+lambda3=(4*mu*t*10**10)/(2*n3+1)
+
+//Result
+printf("\n For n=0 Lambda is %0.3f ",lambda1)
+printf("\n For n=1 Lambda is %i ",lambda2)
+
+printf("\n For n=2 Lambda is %0.3f ",lambda3)
+printf("\n Out of these only %0.3f lies in the visible range for n=2",lambda3)
diff --git a/3756/CH1/EX1.21/Ex1_21.sce b/3756/CH1/EX1.21/Ex1_21.sce
new file mode 100644
index 000000000..992581a50
--- /dev/null
+++ b/3756/CH1/EX1.21/Ex1_21.sce
@@ -0,0 +1,17 @@
+clc
+//
+//
+//
+
+//Variable declaration
+R=100 //radius
+D25=0.8 //Diameter of the 25th ring
+D5=0.3 //Diameter of the 5th ring
+p=20
+
+
+//Calculations
+lambdaa=((D25**2)-(D5**2))*10**8/(4*20*100)
+
+//Result
+printf("\n The Wavelength is %i Angstrom",lambdaa)
diff --git a/3756/CH1/EX1.22/Ex1_22.sce b/3756/CH1/EX1.22/Ex1_22.sce
new file mode 100644
index 000000000..e295200a4
--- /dev/null
+++ b/3756/CH1/EX1.22/Ex1_22.sce
@@ -0,0 +1,17 @@
+clc
+//
+//
+//
+
+//Variable declaration
+n=10 //no. of ring
+D10=0.5 //Diameter of the 10th ring
+lambdaa=5893*10**-8 //Wavelength
+
+//Calculations
+R=(D10**2)/(4*10*5893*10**-8)
+t=(D10**2)*10**4/(8*R)
+
+//Result
+printf("\n The Thickness is %0.3f cm",t)
+printf("\n The Radius is %0.1f cm",R)
diff --git a/3756/CH1/EX1.23/Ex1_23.sce b/3756/CH1/EX1.23/Ex1_23.sce
new file mode 100644
index 000000000..b3104e941
--- /dev/null
+++ b/3756/CH1/EX1.23/Ex1_23.sce
@@ -0,0 +1,15 @@
+clc
+//
+//
+//
+
+//Variable declaration
+n=59 //no. of ring
+lambdaa=6*10**-7 //Wavelength
+R=0.9 //Radius
+
+//Calculations
+D59=sqrt(4*R*n*lambdaa)*10**2
+
+//Result
+printf("\n The Diameter of the nth dark ring is %0.3f cm",D59)
diff --git a/3756/CH1/EX1.24/Ex1_24.sce b/3756/CH1/EX1.24/Ex1_24.sce
new file mode 100644
index 000000000..1898d0f41
--- /dev/null
+++ b/3756/CH1/EX1.24/Ex1_24.sce
@@ -0,0 +1,14 @@
+clc
+//
+//
+//
+
+//Variable declaration
+n=20 //no. of ring
+lambdaaR=0.0103 //Wavelength*R
+
+//Calculations
+D20=sqrt(4*n*lambdaaR)
+
+//Result
+printf("\n The Diameter of the 20th dark ring is %0.3f cm",D20)
diff --git a/3756/CH1/EX1.25/Ex1_25.sce b/3756/CH1/EX1.25/Ex1_25.sce
new file mode 100644
index 000000000..1e0a8e090
--- /dev/null
+++ b/3756/CH1/EX1.25/Ex1_25.sce
@@ -0,0 +1,15 @@
+clc
+//
+//
+//
+
+//Variable declaration
+D3=10**-2
+lambdaa=5890*10**-10
+
+
+//Calculations
+R=(D3*sqrt(3))*10**-2/(24*lambdaa)
+
+//Result
+printf("\n The Radius is %0.2f m",R)
diff --git a/3756/CH1/EX1.26/Ex1_26.sce b/3756/CH1/EX1.26/Ex1_26.sce
new file mode 100644
index 000000000..ca2a953bc
--- /dev/null
+++ b/3756/CH1/EX1.26/Ex1_26.sce
@@ -0,0 +1,16 @@
+clc
+//
+//
+//
+
+//Variable declaration
+n=8 //no. of ring
+D8=0.72*10**-2 //Diameter of the 8th ring
+R=3 //Radius
+
+
+//Calculations
+lambdaa=(D8**2)*10**10/((2*(2*n-1))*R)
+
+//Result
+printf("\n The Wavelength is %i Angstrom",lambdaa)
diff --git a/3756/CH1/EX1.27/Ex1_27.sce b/3756/CH1/EX1.27/Ex1_27.sce
new file mode 100644
index 000000000..e52450dfb
--- /dev/null
+++ b/3756/CH1/EX1.27/Ex1_27.sce
@@ -0,0 +1,14 @@
+clc
+//
+//
+//
+
+//Variable declaration
+c=3*10**10 //Speed of Light in Vacuum
+mu=1.44 //Refractive Index
+
+//Calculations
+u=c*10**-10/mu
+
+//Result
+printf("\n The Velocity in the liquid is %0.2f *10**10 m/s",u)
diff --git a/3756/CH1/EX1.29/Ex1_29.sce b/3756/CH1/EX1.29/Ex1_29.sce
new file mode 100644
index 000000000..c5b3792b6
--- /dev/null
+++ b/3756/CH1/EX1.29/Ex1_29.sce
@@ -0,0 +1,19 @@
+clc
+//
+//
+//
+
+//Variable declaration
+lambdaa=5400*10**-10 //Wavelength
+n1=5
+n2=15
+R=100 //Radius of both rings
+
+//Calculations
+r5=sqrt((R*n1*lambdaa)/2)
+r15=sqrt((R*n2*lambdaa)/2)
+d=(r15)-(r5)
+
+
+//Result
+printf("\n The Distance between 5th and 15th Dark ring is %0.3f m",d)
diff --git a/3756/CH1/EX1.3/Ex1_3.sce b/3756/CH1/EX1.3/Ex1_3.sce
new file mode 100644
index 000000000..abaa730f9
--- /dev/null
+++ b/3756/CH1/EX1.3/Ex1_3.sce
@@ -0,0 +1,16 @@
+clc
+//
+//
+//
+
+//Variable declaration
+D=1 //Distance from screen
+Beta=0.31*10**-3 //Fringe Width
+d=1.9*10**-3 //Slit separation
+
+
+//Calculations
+lambdaa=(Beta*d*10**6)/D
+
+//Result
+printf("\n The Wavelength lamda=%0.4f *10**-6 m",lambdaa)
diff --git a/3756/CH1/EX1.30/Ex1_30.sce b/3756/CH1/EX1.30/Ex1_30.sce
new file mode 100644
index 000000000..94b5c1b65
--- /dev/null
+++ b/3756/CH1/EX1.30/Ex1_30.sce
@@ -0,0 +1,14 @@
+clc
+//
+//
+//
+
+//Variable declaration
+l=0.0025 //Distance moved
+t=0.005 //thickness of mica sheet
+
+//Calculations
+mu=((l/t)+1)
+
+//Result
+printf("\n The Refractive Index is %0.3f ",mu)
diff --git a/3756/CH1/EX1.31/Ex1_31.sce b/3756/CH1/EX1.31/Ex1_31.sce
new file mode 100644
index 000000000..102f536b1
--- /dev/null
+++ b/3756/CH1/EX1.31/Ex1_31.sce
@@ -0,0 +1,14 @@
+clc
+//
+//
+//
+
+//Variable declaration
+l=0.02948*10**-3 //Distance moved
+n=100 //number of fringes
+
+//Calculations
+lambdaa=(2*l)*10**10/n
+
+//Result
+printf("\n The Wavelength is %i Angstrom",lambdaa)
diff --git a/3756/CH1/EX1.32/Ex1_32.sce b/3756/CH1/EX1.32/Ex1_32.sce
new file mode 100644
index 000000000..860de93f0
--- /dev/null
+++ b/3756/CH1/EX1.32/Ex1_32.sce
@@ -0,0 +1,15 @@
+clc
+//
+//
+//
+
+//Variable declaration
+lambdaa1=5896 //Wavelength1
+lambdaa2=5890 //Wavelength2
+
+
+//Calculations
+l=(lambdaa1*lambdaa2)/(2*(lambdaa1-lambdaa2))
+
+//Result
+printf("\n The Distance by which the mirror moved is %i *10**-10 m",l)
diff --git a/3756/CH1/EX1.4/Ex1_4.sce b/3756/CH1/EX1.4/Ex1_4.sce
new file mode 100644
index 000000000..6fab49b8e
--- /dev/null
+++ b/3756/CH1/EX1.4/Ex1_4.sce
@@ -0,0 +1,17 @@
+clc
+//
+//
+//
+
+//Variable declaration
+D=0.04 //Distance from screen
+lambdaa=5890*10**-10 //Wavelength
+d=2*10**-3 //Slit separation
+n=10 //No. of fringes
+
+
+//Calculations
+x10=(n*D*lambdaa*10**-2)/d
+
+//Result
+printf("\n The position of the 10th fringe is %0.3f *10**-4 m",x10)
diff --git a/3756/CH1/EX1.5/Ex1_5.sce b/3756/CH1/EX1.5/Ex1_5.sce
new file mode 100644
index 000000000..e5fa6f310
--- /dev/null
+++ b/3756/CH1/EX1.5/Ex1_5.sce
@@ -0,0 +1,16 @@
+clc
+//
+//
+//
+
+//Variable declaration
+D=0.8 //Distance from screen
+lambdaa=5890*10**-10 //Wavelength
+Beta=9.424*10**-4 //Fringe Width
+
+
+//Calculations
+d=(D*lambdaa*10**-2)/Beta
+
+//Result
+printf("\n The position of the 10th fringe is %e *10**-4 m",d)
diff --git a/3756/CH1/EX1.6/Ex1_6.sce b/3756/CH1/EX1.6/Ex1_6.sce
new file mode 100644
index 000000000..9ec6266b8
--- /dev/null
+++ b/3756/CH1/EX1.6/Ex1_6.sce
@@ -0,0 +1,16 @@
+clc
+//
+//
+//
+
+//Variable declaration
+D=1.1 //Distance from screen
+lambdaa=5900*10**-10 //Wavelength
+d=0.00174 //Fringe separation
+
+
+//Calculations
+Beta=(D*lambdaa*10**-1)/d
+
+//Result
+printf("\n The Fringe width observed at a distance of 1m from BP is %1.1f *10**-5 m",Beta)
diff --git a/3756/CH1/EX1.7/Ex1_7.sce b/3756/CH1/EX1.7/Ex1_7.sce
new file mode 100644
index 000000000..311694357
--- /dev/null
+++ b/3756/CH1/EX1.7/Ex1_7.sce
@@ -0,0 +1,20 @@
+clc
+//
+//
+//
+
+//Variable declaration
+D=2 //Distance from screen
+lambdaa=5890*10**-10 //Wavelength
+mu=1.5 //refractive index of glass
+a=0.25 //distance from slit
+Beta=0.2*10**-3 //Fringe width
+
+
+//Calculations
+alpha=(D*lambdaa*180*10**-6)/(2*a*(mu-1)*Beta*3.14)
+A=(180-2*((alpha)))
+
+
+//Result
+printf("\n The Angle of prism at the vertex is is %i deg 17.8 min",A)
diff --git a/3756/CH1/EX1.8/Ex1_8.sce b/3756/CH1/EX1.8/Ex1_8.sce
new file mode 100644
index 000000000..aaf2d0de7
--- /dev/null
+++ b/3756/CH1/EX1.8/Ex1_8.sce
@@ -0,0 +1,18 @@
+clc
+//
+//
+//
+
+//Variable declaration
+D=1 //Distance from screen
+mu=1.5 //refractive index of glass
+a=0.5 //distance from slit
+Beta=0.0135*10**-2 //Fringe width
+alpha=0.0087 //angleof prism
+
+
+//Calculations
+lambdaa=(Beta*2*a*(mu-1)*alpha*10**10)/D
+
+//Result
+printf("\n The Wavelength is %0.3f Angstrom",lambdaa)
diff --git a/3756/CH1/EX1.9/Ex1_9.sce b/3756/CH1/EX1.9/Ex1_9.sce
new file mode 100644
index 000000000..7e0eb52f0
--- /dev/null
+++ b/3756/CH1/EX1.9/Ex1_9.sce
@@ -0,0 +1,15 @@
+clc
+//
+//
+//
+
+//Variable declaration
+d=0.75 //slit separation
+Beta=0.087*10**-3 //Fringe width
+
+
+//Calculations
+Beta2=Beta*10**3/d
+
+//Result
+printf("\n The fringe width would become %0.3f mm",Beta2)