summaryrefslogtreecommitdiff
path: root/3701/CH5
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3701/CH5
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3701/CH5')
-rw-r--r--3701/CH5/EX5.10/Ex5_10.sce11
-rw-r--r--3701/CH5/EX5.2/Ex5_2.sce11
-rw-r--r--3701/CH5/EX5.3/Ex5_3.sce17
-rw-r--r--3701/CH5/EX5.4/Ex5_4.sce12
-rw-r--r--3701/CH5/EX5.5/Ex5_5.sce12
-rw-r--r--3701/CH5/EX5.6/Ex5_6.sce12
-rw-r--r--3701/CH5/EX5.8/Ex5_8.sce13
7 files changed, 88 insertions, 0 deletions
diff --git a/3701/CH5/EX5.10/Ex5_10.sce b/3701/CH5/EX5.10/Ex5_10.sce
new file mode 100644
index 000000000..ef298d140
--- /dev/null
+++ b/3701/CH5/EX5.10/Ex5_10.sce
@@ -0,0 +1,11 @@
+////Given
+v=6000*10**-10 //Wavelength in m
+t=10**-8 //s
+c=3*10**8
+
+//Calculation
+//
+v1=v**2/(2.0*%pi*c*t)
+
+//Result
+printf("\n width of a line %0.15f m",v1)
diff --git a/3701/CH5/EX5.2/Ex5_2.sce b/3701/CH5/EX5.2/Ex5_2.sce
new file mode 100644
index 000000000..a6a5c12fa
--- /dev/null
+++ b/3701/CH5/EX5.2/Ex5_2.sce
@@ -0,0 +1,11 @@
+////Given
+r=10.0**-14 //m
+h=1.054*10**-34 //Js
+m=1.67*10**-27
+
+//Calculation
+p=h/r
+E=(h**2/(2*m*(r**2)))/(1.6*10**-13)
+
+//Result
+printf("\n Kinetic energy %0.2f Mev",E)
diff --git a/3701/CH5/EX5.3/Ex5_3.sce b/3701/CH5/EX5.3/Ex5_3.sce
new file mode 100644
index 000000000..b5636d784
--- /dev/null
+++ b/3701/CH5/EX5.3/Ex5_3.sce
@@ -0,0 +1,17 @@
+////Given
+clear
+E=100 //ev
+m=9.1*10**-31
+e=1.6*10**-19
+h=1.054*10**-34
+x=10.0**-6 //m
+
+//Calculation
+//
+p=sqrt(2*m*E*e)
+p1=h/x
+theta=p1/p
+
+//Result
+printf("\n uncertainty in the angle of emergence %0.1f *10**-4 radians",theta*10**4)
+printf("\n 4 seconds of arc")
diff --git a/3701/CH5/EX5.4/Ex5_4.sce b/3701/CH5/EX5.4/Ex5_4.sce
new file mode 100644
index 000000000..323f5db24
--- /dev/null
+++ b/3701/CH5/EX5.4/Ex5_4.sce
@@ -0,0 +1,12 @@
+////Given
+p=0.2*10**-3*10 //Kg m/s
+h=1.054*10**-34
+x=1*10**-2 //m
+
+//Calculation
+p1=h/x
+a=p1/p
+
+//Result
+printf("\n uncertainty in the angle of emergence %e radians",a)
+printf("\n 1.1*10**-24 seconds of arc")
diff --git a/3701/CH5/EX5.5/Ex5_5.sce b/3701/CH5/EX5.5/Ex5_5.sce
new file mode 100644
index 000000000..992874d17
--- /dev/null
+++ b/3701/CH5/EX5.5/Ex5_5.sce
@@ -0,0 +1,12 @@
+////Given
+m=50*10**-3 //kgram
+accuracy=0.01
+v=300 //m/s
+h=1.054*10**-34
+
+//Calculation
+p=m*(v*accuracy)/100.0
+x=h/p
+
+//Result
+printf("\n position of the bullet %e m",x)
diff --git a/3701/CH5/EX5.6/Ex5_6.sce b/3701/CH5/EX5.6/Ex5_6.sce
new file mode 100644
index 000000000..a6d3219e0
--- /dev/null
+++ b/3701/CH5/EX5.6/Ex5_6.sce
@@ -0,0 +1,12 @@
+////Given
+t=10.0**-12 //s
+h1=1.054*10**-34
+h=6.625*10**-34
+
+//Calculation
+E=h1/t
+v=E/h
+
+//Result
+printf("\n uncertainity in energy is %e J",E)
+printf("\n uncertainity in frequency is %e Hz",v)
diff --git a/3701/CH5/EX5.8/Ex5_8.sce b/3701/CH5/EX5.8/Ex5_8.sce
new file mode 100644
index 000000000..bb237c0b1
--- /dev/null
+++ b/3701/CH5/EX5.8/Ex5_8.sce
@@ -0,0 +1,13 @@
+////Given
+r=5*10**-15 //m
+h=1.05*10**-34
+m=1.67*10**-27
+e=1.6*10**-13
+
+//Calculation
+xmax=2*r //maximum uncertainity in the position of the nucleon
+pmin=h/xmax //minimum uncertainity in the momentum of particle
+Kmin=pmin**2/(2.0*m*e)
+
+//Result
+printf("\n minimum kinetic energy is %0.1f Mev",Kmin)