Monday, December 12, 2011

Planck's Constant from an LED

In this experiment we will use different colored LEDs or light emitting diodes to help us determine the value of Planck's constant. To do this we will have an apparatus that closely resembles the one we use in the Color and Spectra Experiment. However instead of a tube of gas we will use LEDs in their place. We will still use the rulers, diffraction gradient, and make measurements as before. In addition to calculating the LEDs wavelength we will also measure the voltage across each of the LEDs. We will then plot a graph of voltage vs. 1/wavelength to obtain a relationship between voltage and wavelength. This should result in a linear line with a definite slope. If we take this slope and multiply q and divide by c we should the obtain the value of Planck's constant which is 6.626*10^-34 J*s. A picture of the apparatus is bellow.
To begin the experiment we connect each of the LEDs one at a time in series with a 680 ohm resistor to a power supply. We then use the equation (lambda)=(D*d)/[sqrt(L^2+D^2)] to calculate the wavelength of each of the LEDs. L was 1.29 +/- 0.005 meters and d was 1.67*10^-6 +/- 0.015 meters. The values for D of each of the different colored LEDs are given below. Each of the values have an uncertainty of +/-0.01

Red: 0.54 m
Yellow: 0.49 m

Green: 0.42 m
Blue: 0.38 m
The wavelengths were then calculated with corresponding uncertainties of +/-1.15*10^-8 meters.
Red: 644.9 nm
Yellow: 593.0 nm
Green: 517.0 nm
Blue: 471.9 nm
Next we measure the voltage across each of the LEDs.
Red: 1.86 ohms
Yellow: 1.90 ohms
Green: 2.50 ohms
Blue: 2.66 ohms
We then plotted voltage vs. 1/wavelength and received the following graph.
The slope of our equation is 1.573*10^-6 meters. Multiplying by q and dividing by the speed of light we get a value for Planck's constant to be 8.756E-34 J*s.The true value for Planks constant is 6.626*10^-34. This gives us a percent error of 32%. This percent difference is very high but not surprising considering the apparatus we used and the inaccuracies of the measurements. Remember, in the previous experiment we used a graph to account for any discrepancy in the wavelength to reduce the error; in this experiment we were unable to do that. To reduce the error we would have to make more accurate measurements, account for the small angle approximation, and make sure the our rulers were place exactly perpendicular. Also I would have been useful to know the true wavelengths that each of the LEDs gave off so that we could have something to compare our data too. In this experiment we were also able to see that the red LED consumed the least amount of energy while the blue LED used the most amount of energy. This matches what the equation E=hc/(lambda) tells us.

Color and Spectra

In this experiment we used a diffraction gradient to measure the spectral lines of a white light source and that given off by an unknown gas. The purpose of the first part of this experiment is to make sure that we have to appropriate setup and that we can me accurate measurements with our apparatus. In the second part of the experiment we will measure the spectral line spacing and record their color. We would then match these lines with known spectral lines a sever different elements and determine what was our unknown gas.

To begin the experiment would first take a two meter long ruler and place it perpendicular to a one meter long ruler so that the two rulers formed an "L" shape. Where the two ruler met we placed our light source. At the opposite end of two meter long ruler we placed our diffraction gradient. We were careful to make it so the light source sat right at the end of the ruler so that the diffraction gradient was exactly two meters away (within uncertainty). In a dark room we turned on our light source and looked trough the diffraction gradient. We then made measurements where the visual spectrum laid along the one meter long ruler for the white light source. For the unknown gas we did the same except we noted where the spectral lines fell along the one meter long ruler and their color. The setup with the unknown gas is shown below.

In this experiment we will be using the equation (lambda)=(D*d)/[sqrt(L^2+D^2)] where lambda is our wavelength, L is 2 meters, D is the distance along the one meter ruler we will be recording, and d is the slit spacing in the diffraction gradient which is 1.67*10^-6 meters.

For the first part of the experiment were we used the light bulb we measured the length of the spectrum and where we saw the colors red, yellow, green, blue, and violet. We then got the following values. All measurements have an uncertainty of +/- 0.005 meters
Violet: 0.435 m
Blue: 0.495 m
Green: 0.585 m
Yellow: 0.65 m
Red 0.76 m
The entire visible spectrum ranged from 0.42 m to 0.855 m. Using the above equation we find that our spectrum ranged from 341 nm to 652 nm. The true visual spectrum ranges from about 380 nm to 750 nm. This indicates that our spectrum has been shifted to the left and compressed slightly. We will later plot a graph and use an equation to account for this.

In the next part of our experiment we replaced the light with a tube filled with an unknown  gas. A large voltage is run across the tube which allows it to glow. We then looked through the diffraction gradient and measured the spectral lines. The values are below with uncertainties of +/-0.0025 m
Violet: 0.5225 m
Green: 0.6075 m
Yellow: 0.645 m
Red: 0.665 m
Using the above equation we found the wavelength at each of our lines. All values have an uncertainty of +/-4nm
Violet: 422nm
Green: 485nm
Yellow: 513nm
Red: 642nm
Using a chart with spectral lines of known gases we compared the spectral lines of our unknown gas. We then determined that our lines most closely resembled the lines in mercury.

To help correct our values we then looked at the spectral lines of hydrogen and made our measurements. Hydrogen was used because it has fewer spectral lines and a plot could be graphed that corrected for the shift in the previous sections of the experiment. We obtained the following values for hydrogen.
Violet/Blue: 0.465 m
Green: 0.506 m
Orange/Yellow: 0.621 m
Red: 0.708 m
The corresponding wavelengths are as follows. All values have an uncertainty of +/- 11nm
Violet/Blue: 378 nm
Green: 410 nm
Orange/Yellow: 495 nm
Red: 557 nm
After plotting the values into excel we plotted our data to give us our correction factor which resulted in the equation (lambda)_actual=1.051*(lambda_exp)+4.538. Using this equation we were given our corrected wavelengths. All the values have an uncertainty of +/- 16 nm.
Violet/Blue: 402nm
Green: 435nm
Orange/Yellow: 525nm
Red: 590nm

After the calibration we found that  our results were fairly close to the true values for each of the corresponding colors with the largest percent difference being 5%. This falls well within our range of uncertainty and can be accounted for by the uncertainty of our measurements.

Modeling Wave Packets Using Python

 In this project we wrote a computer code in Python to help visualize wave packets. We also used Pylab to show the code as a series of graphs. In order to make our graphs we had to write our code in a series of steps. The first step was to create a sine graph. Next we manipulated that graph so that we could show several harmonics or several sine graphs of differing periodicity. After that was completed we then generated a Gaussian. After that was completed we then had to combine the sine functions and the Gaussian to generate a wave packet. This was very complicated to do and took us the most amount of time to resolve. When this was all completed we were able to generate normalized graphs that visually depicted wave packets. The code we used to do this is bellow. The code is "messy" so many lines were canceled out with ## so that everything would run like we wanted. However is is possible to obtain the sine functions and the Gaussian separately by canceling out the appropriate line and removing the ##s where necessary.

from pylab import*
harmonics= 20
center=harmonics/2
sigma=1
coeff=1/((sqrt(2*pi))*sigma)
gauss_list=[]
domain_list2=[]
L=10
knot= 2*pi/L
b_list=[]
kdomain=[]
##
##for k in arange(0,200,0.1):
##    bofk=(1/(knot))
##    b_list.append(bofk)
##    kdomain.append(k)
####plot(kdomain,b_list)
##




for x in range(1,harmonics):
    gauss=coeff*exp(-(x-center)**2/(2.*sigma**2))
    gauss_list.append(gauss)
    domain_list2.append(x)
  
##A_coeff_1=1
##wave_constant_1=1
##sine1_list=[]
##domain_list=[]
##for x in arange(-pi,pi,0.1):
##    sine1=A_coeff_1*sin(wave_constant_1*x)
##    sine1_list.append(sine1)
##    domain_list.append(x)
w=1
Fourier_Series=[]

for i in range(1,harmonics):
    sine_function=[]
    x=[]
    for t in arange(-pi,pi,0.01):
        sine_f=gauss_list[i-1]*sin(i*w*t)
        sine_function.append(sine_f)
        x.append(t)
    ##plot(x,sine_function)
    Fourier_Series.append(sine_function)

superposition=zeros(len(sine_function))
for function in Fourier_Series:
    for i in range(len(function)):
        superposition[i]+=function[i]
print kdomain
plot(x,superposition)
##plot(domain_list2,gauss_list)
##plot(domain_list,sine1_list)
show()

20.2 Quantum Mechanics: Particle in a Box

 In this activity we will learn about the probability of finding a particle in a box and how these 'particles' have a wave-like nature which can be defined by the de Broglie relation. We will also learn about the ground state energy of these particles.

Question#1: From your study of mechanical waves, what is the longest wavelength standing wave on a string of length L?

Answer: The longest wavelength a standing wave can have on a string that is L long is 2L.

Question #2: What is the momentum of the longest wavelength standing wave in a box of length L?

Answer: De Broglie stated that the momentum of a particle is plank's constant divided 2L.

Question #3: Assuming the particle is not traveling at relativistic speeds, determine an expression for the ground state energy.

Answer: If the particle is not traveling at relativistic speeds then we know that for the momentum, p=mv and for the kinetic energy,  K = 1/2mv^2. If we use De Broglie's equation for momentum (p = h/2L) we see that K = h^2/(8mL).

Question #4: If the size of the box is increased, will the ground state energy increase or decrease?

Answer: As L increase we can see from the equation above that the ground state energy will decrease.

Question #5: In the limit of a very large box, what will happen to the ground state energy and the spacing between allowed energy levels? Can this result explain why quantum effects are not noticable in everyday, macroscopic situations?

Answer: As L increases to macroscopic levels the ground state energy decrease to such a insignificant amount that it is almost impossible to detect by conventional methods for measuring energy.

Question #6: In the limit of a very massive particle, what will happen to the ground state energy and the spacing between allowed energy levels?

Answer: Since mass is also in the divisor in the above equation very massive objects also a negligible ground state energy.

Question #7: If a measurement is made of the particle's position while in the ground state, at what position is it most likely to be detected?

Answer: The particle is most likely to be found  in the center of the box.

Question #8: The most likely position to detect the particle, when it is in the ground state, is in the center of the box. Does this observation depend on either the mass of the particle or the size of the box?

Answer: No because the wave function is independent of the mass and the particle is always most likely to be found at the center of the box.

Question #9: The most likely position to detect the particle, when it is in the ground state, is in the center of the box. Does this observation hold true at higher energy levels?

Answer: No, for for example the most likely place to find the particle when it is in the first excited state is at L/4 and 3L/4.

Question #10: In the limit of large n, what will happen to the spacing between regions of high and low probability of detection? Does this agree with what is observed in everyday, macroscopic situations?

Answer: In the limit of a large n the probability density function gets "squished" together and appears to be constant. This means that the particle has become a "free particle" and has an equal probability to be found in all locations.

Programing in Python

z

17.2 Modern Physics: Relativity of Length

In this online activity we learned how relativity distorts the length of objects as they approach the speed of light. We will be using length contraction equation L=L_0/sqrt[1-(v^2/c^2)]. As in the previous activity questions will be followed with a screenshot and the appropriate answers.

Question #1: Imagine riding on the left end of the light clock. A pulse of light departs the left end, travels to the right end, reflects, and returns to the left end of the light clock. Does your measurement of this round-trip time interval depend on whether the light clock is moving or stationary relative to the earth?
Answer: The round trip time depends on whether the clock is stationary or moving.

Question#2: Will the round-trip time interval for the light pulse as measured on the earth be longer, shorter, or the same as the time interval measured on the light clock?

Answer: The round-trip time will be measured to be shorter than the time measured relative to the earth.

Question #3: You have probably noticed that the length of the moving light clock is smaller than the length of the stationary light clock. Could the round-trip time interval as measured on the earth be equal to the product of the Lorentz factor and the proper time interval if the moving light clock were the same size as the stationary light clock?
Answer: Yes, if the loreanzt factor is known and the time required  for a moving clock to travel a given distance we can use the formula stated at the beginning of the activity to calculate the time required to reach the same distance relative to the stationary frame.

Question #4: A light clock is 1000 m long when measured at rest. How long would earth-bound observer's measure the clock to be if it had a Lorentz factor of 1.3 relative to the earth?
 Answer: The Lorentz factor is 1.3, and the length is 1000m at rest, so we use the formula given at the beginning of this activity to calculate the contracted length. We obtain 1000/1.3  = 769 meters.

17.1 Modern Physics: Relativity of Time

This online activity was used to help us understand the basic concepts of relativity. In these problems we will explore how space and time are distorted as different frames approach the speed of light. We will make use of the time dilation equation which is (delta)t' = (delta)t/sqrt[1-(v^2/c^2)]. Screenshots of each of the question a posted below with their corresponding answers.

Question#1: How does the distance traveled by the light pulse on the moving light clock compare to the distance traveled by the light pulse on the stationary light clock?
Answer: The distance traveled by the moving light clock is greater than the distance travel by the stationary light clock.


Question #2: Given that the speed of the light pulse is independent of the speed of the light clock, how does the time interval for the light pulse to travel to the top mirror and back on the moving light clock compare to on the stationary light clock?
Answer: Since the speed of light is constant, the moving light clock must travel a further distance and therefore must take more time to complete one cycle.

Question #3: Imagine yourself riding on the light clock. In your frame of reference, does the light pulse travel a larger distance when the clock is moving, and hence require a larger time interval to complete a single round trip?

Answer: In the moving frame of reference, the light pulse does not travel a greater distance, thus the time required for the light to make one cycle in the moving frame is the same time as the light to make one cycle in the stationary frame.

Question #4: Will the difference in light pulse travel time between the earth's timers and the light clock's timers increase, decrease, or stay the same as the velocity of the light clock is decreased?
 Answer: If the velocity of the light clock is decreased, the difference of earth's timer and the light clock's timers also decreases.

Question #5:  Using the time dilation formula, predict how long it will take for the light pulse to travel back and forth between mirrors, as measured by an earth-bound observer, when the light clock has a Lorentz factor (γ) of 1.2.
 Answer: The time dilation of a moving clock with a Lorentz factor of 1.2 will have a time 1.2 times that of the original time.

Question #6: If the time interval between departure and return of the light pulse is measured to be 7.45 µs by an earth-bound observer, what is the Lorentz factor of the light clock as it moves relative to the earth?
 Answer: The measured time is 7.45 µs, we used the simulator and found that the Lorentz factor is around 1.12, which is what about the same number we calculated.

Tuesday, October 18, 2011

Experiment 12: CD Diffraction

In this experiment we used a laser with a known wavelength to measure the width of the grooves in a compact disk. To do this we first set up the experiment with a laser at an angle of about 45 degrees to the normal of the surface of the disk. As the laser became hit the surface of the CD the laser beam would diffract and split into multiple beams of light. The reason why we decided to place the CD at a 45 degree angle was so the the diffracted beams could be shown a white board that was facing parallel to the laser beam before hitting the CD. The picture below better illustrates the apperatus.


Using this setup we measured the distance from the CD to the white board to be 0.070 meters +/- 0.0005. We also know that the wavelength of the laser to be 670 nm +/- 0.10 and that the distance from the central maximum to the first maximum is 0.028 m +/- 0.0005. Using the equation y=[m*(lambda)*x]/a where x = 0.7 meters, lambda = 670*10^-9 meters, m = 1, and y = 0.028 meters we can solve for (a) (the slit spacing in the CD). As a result we found that the CD was 1.675*10^-6 meters. The accepted value for the slit spacing is 1.6*10^-6 meters which gives us a percent difference of 4.6%. This falls well within our percent uncertainty of 31%.

This experiment allowed us to find a real world application for laser diffraction and how it can be used to measure defects in CD spacing. With more precise instrumentation would could significantly decrease our percent uncertainty and difference to more accurately the CD's spacing. Also, in this experiment we made a small angle approximation in order to use our equation y=[m*(lambda)*x]/a. Uncertainty due to this approximation was unaccounted for but because of the small angles between the central and first maximums this uncertainty could be safely ignored.

Tuesday, October 11, 2011

Experiment 11: Measuring a Human Hair

In this experiment we used the a micrometer and a laser to measure and compare the thickness of a human hair. We began by using the laser and pointing it directly at the hair. We then measured the diffraction of light, the distance our image was from the object, and knew that the wavelength of our laser to be about 670 nm +/- 20 nm.


We then took three trials and on each trial we measured the distance from the hair to the image on a board, the node number, y_m, and lamda which we took to be 670 nm +/- 20nm. We then used the equation d=L*m*(lamda)/y to find the thickness of the hair d.


Trial
Length (L, m)
Node Number (m)
y (m)
Lamda (m, +/- 20 nm)
d (m)
1
1.68
4
0.063
6.7E-07
7.15E-05
2
2
4
0.076
6.7E-07
7.05E-05
3
3.62
3
0.11
6.7E-07
6.61E-05

We found after three trails the thickness of the hair to be about  6.9*10^(-5) meters thick. This fits within our estimation that the thickness of the hair would be between 1.7*10^(-5) to 1.8*10^(-4) meters thick. Using the micrometer we found the thickness of the hair to be about 7*10^(-5) meters which falls well within our trials for the thickness of the hair.

Experiment 10: Lenses

We began this experiment by measuring the focal distance of the lens that were were using. To do this we used the sun as our source and moved the lens until the light was focused at a single point. We then measured the distance from this point to the lens. We determined that the focal distance for our particular lens to be about 19.5 centimeters. We then shined an image through our lens and measured the object distance, image distance, object height, image height, and we calculated the magnification. We also stated whether or not the image was inverted.


Object distance (d_o, cm)
Image distance (d_i, cm)
Object height (h_o, cm)
Image height (h_i, cm)
Magnification
Type of Image
100
26.5
3
0.8
0.266
Inverted
80
28.5
3
1
0.333
Inverted
60
32
3
1.5
0.5
Inverted
40
43.5
3
3.5
1.16
Inverted
30
71
3
6.7
2.23
Inverted

We found that in every case the image was inverted, but when be placed the object within the focal distance no image could be seen. Only when you looked though the lens could you see an image in the lens. To describe the relationship between image distance and object distance we took the inverse of d_i and plotted it against the negative inverse of d_o. We then obtain the following graph.



This graph illustrates that the equation 1/d_o + 1/d_i = 1/f. However this graph shows that the focal length of our lens to actually be 20.9 cm long. This is a percent difference of 6.6% which is in a reasonable percent error when considering the error that went into this experiment. If we wished to decrease the percent error we could have used more accurate measuring equipment and have used a different method when it came to measuring the focal length of our lens.

Tuesday, October 4, 2011

Experiment 9: Concave and Convex Mirrors

In this experiment we gained an understanding of how concave and convex mirrors create an image. We began by looking into these two types of mirrors and analyzed the differences between them. After that we used simple geometry to draw diagrams that would help illustrate how each of the mirrors formed their images. The first diagram shows the image from a convex mirror.


The second diagram shows how we found the image in a concave mirror.


To create each of these diagram we began by drawing a line from the object to the center. Then we drew a line from the object parallel to the optic axis and then when the line hit the mirror we drew the line though the focus. Next we drew a line to the focus but when the line hit the mirror we then drew it parallel to the optic axis. Where all these lines intersected was our image. From these diagrams we could easily see where our image was relative to our object and out mirror and whether the image was erect or inverted. We were also able to tell that the image would have some magnification.

Tuesday, September 27, 2011

Experiment 7: Introduction to Reflection and Refraction

The purpose of this experiment is to analyze how a beam of light is reflected and refracted as it enters and exits a semicircular plastic. First we will take a light box and set it up so only a single beam will be emitted. We will then measure the angle of incidence as the beam of light enters the plastic and the angle of refraction as the beam of light exits the plastic.


First we began the experiment so that the light entered the flat side of the of the semicircular plastic. Our first trial would have the light entering at zero degrees to the normal of the flat side. We then measure the angle of refraction as the light exited the semicircular side. We took ten trials were on each trial we increased the angle the light entered the flat side from its normal. After all ten trials were were left with angles Theta_1 (the angle the light made with the normal on the flat side) and Theta_2 (the angle the light made when it was refracted our the curved side). We then calculated sin(Theta_1) and sin(Theta_2) for the corresponding values of Theta. Our recorded results are below.

Trial
Theta_1 (degrees) +/-1.5
Theta_2 (degrees) +/-1.5
sin(Theta_1) (radians)
sin(Theta_2) (radians)
1
0
180
0
0
2
5
177
0.087
0.052
3
10
174
0.174
0.105
4
15             
170
0.259
0.174
5
20
167
0.342
0.225
6
30
162
0.5
0.309
7
40
157
0.643
0.391
8
50
150
0.766
0.5
9
60
147
0.866
0.545
10
70
144
0.940
0.588

Next we did anther ten trials except this time the plastic semicircle was turned 180 degrees so that the light entered the semicircular side and exited the flat side. The trials are shown below.

Trial
Theta_1 (degrees) +/-1.5
Theta_2 (degrees) +/-1.5
sin(Theta_1) (radians)
sin(Theta_2) (radians)
1
0
180
0
0
2
5
175
0.087
0.087
3
10
163
0.174
0.292
4
15
155
0.259
0.423
5
17
150
0.292
0.5
6
20
147
0.342
0.545
7
25
138
0.423
0.669
8
30
128
0.5
0.788
9
35
117
0.574
0.891
10
40
103
0.643
0.974

We then plotted graphs of sin(Theta_1) versus sin(Theta_2) for each of the two data sets.





These two graphs show that there is a linear relationship between the angle at which light enters a surface and at which it exits the other side. This can also be described by Snell's Law which states n_air*sin(θ1)= n_plastic*sin(θ2). By looking at our graphs we can also tell what the index of refraction of the light through the plastic semicircle was somewhere between 1.55 and 1.59 when inaccuracies were taken into account. This gives us and average refraction of light to be 1.57 which is close to the expected index of refraction of a plastic.