Experiment 107: Interference of Waves

Size: px
Start display at page:

Download "Experiment 107: Interference of Waves"

Transcription

1 PHYSICS 10 Experiment 107: Interference of Waves Experiment 107: Interference of Waves Aims The aims of this experiment are to illustrate efficient methods of adding together waves of the same frequency and to apply these methods to understanding interference and diffraction of light. Adding sinusoidal waveforms Many phenomena in Physics involve the combination of two or more sinusoidal signals (i.e., functions of time) of the same frequency, but with different amplitudes and phases. For example, when receiving a television signal, there may be several paths from the transmitting station to the receiver. Besides the direct path, there can be additional paths due to reflections off features in the landscape. These signals interfere with each other, causing the phenomenon of ghosting on the TV screen. Although television uses signals which are more complicated than sinusoids, we first need to understand how to combine these simpler signals. Since coherent, monochromatic light consists essentially of sinusoidal variations of the electric field, the theory we develop is directly applicable to the phenomena of optical interference and the diffraction of light from objects. Recall that a sinusoidal waveform is one of the form f (t) = Acos(ωt + φ) where A is the (real) amplitude, φ is the phase, and ω is the angular frequency (which is π times the frequency). We have chosen to use a cosine rather than a sine, but this does not lead to any loss of generality since sin θ = cos(θ π/). Consider what happens when we add together two sinusoidal waveforms of the same frequency f 1 (t) = A 1 cos(ωt + φ 1 ), and f (t) = A cos(ωt + φ ). If you have not encountered it before, it is perhaps a little surprising that the sum of these signals turns out to be another sinusoidal waveform of the same frequency. (1) Use Matlab to plot graphs of the functions f 1 (t) = 4 cos(t 1), f (t) = 3 cos(t + 0.5) and of f 1 (t) + f (t) on the same set of axes for t in the range π to +π. Observe that the sum is also a sinusoidal waveform of the same frequency, so that it can be written as Acos(ωt + φ). From your graph, estimate the amplitude A and the phase φ. We seek a quick way of finding the amplitude and phase of the sum without adding the two functions point by point over an interval. In order to do this, we note that we can write Acos(ωt + φ) = Re [Aexp i (ωt + φ)] = Re [ Ae iφ e iωt], where i is the square root of 1, and we have made use of Euler s identity, namely that exp(iθ) = cosθ +isinθ. The complex number A = Ae iφ is called the complex amplitude of the sinusoidal waveform. The advantage of writing sinusoidal waveforms like this becomes apparent when we wish to add two of them. If we write A 1 cos(ωt + φ 1 ) = Re [ A 1 e iφ 1 e iωt ] A cos(ωt + φ 1 ) = Re [ A e iφ e iωt ] then A 1 cos(ωt + φ 1 ) + A cos(ωt + φ 1 ) = Re [( A 1 e iφ 1 + A e iφ ) e iωt ].

2 PHYSICS 10 Experiment 107: Interference of Waves 107- This shows that the sum is also a sinsoidal signal whose complex amplitude is A 1 e iφ 1 + A e iφ. We have reduced the problem of adding two waveforms to the problem of adding together two complex numbers. From a complex amplitude A, we recover the real amplitude A from the modulus A and the phase φ from the argument arg (A). In Matlab, the modulus is found using the function abs, and the argument (in radians) is found using the function angle. () The complex amplitudes of the two sinusoidal waveforms added together in step (1) are 4e i( 1) and 3e i(0.5). Use Matlab to add together these two complex amplitudes to find the complex amplitude A of the sum. Calculate A and arg(a), comparing these with your graphical results. Similarly, we can add more than two sinusoidal waveforms of the same frequency. The result is always a sinusoidal waveform of the same frequency. The complex amplitude of the sum is found by adding together the complex amplitudes of the individual waveforms. Young s double slit experiment In 1801, Thomas Young carried out an experiment demonstrating the wave nature of light. He allowed light to pass through two closely set pinholes onto a screen, and observed that the light beams spread out from each hole and overlapped. In the overlapping region, bands of bright light alternated with bands of darkness. This is called an interference pattern, and Young correctly identified its origin as being due to the addition of waves passing through each of the two holes. Today, the experiment is usually carried out using two narrow, closely spaced slits illuminated by plane waves of light. Each point on the screen is illuminated by light from both slits. Since the path lengths from each of the two slits to a point on the screen are generally different, the waves arriving at the point have slightly different amplitudes and phases. These waves add together, and the intensity of the light at the point is proportional to the square of the real amplitude of the sum. Suppose that the complex amplitude of the light at a slit is A. After it travels through a distance r, the signal is given by [ ] Aexp i (ωt kr) Re r where k = π/λ is the wavenumber of the light, and λ is the wavelength. The factor of 1 r indicates that the amplitude decreases with distance, in accordance with the inverse square law for the light intensity. The complex amplitude of the light at the point r away from the slit is thus given by Aexp( ikr)/r. y r 1 P y P y 1 y θ r x D Figure 1: Young s double slit experiment

3 PHYSICS 10 Experiment 107: Interference of Waves In the figure, we see that the complex amplitude of the light at the point P is A P = Aexp ( ikr 1) r 1 + Aexp ( ikr ) r and the intensity of the light at P is proportional to A P. If the coordinates of the slits are (0, y 1 ) and (0, y ) and the coordinates of the point P are (D, y P ), it is easy to see using Pythagorus theorem that r l = D + (y P y l ) for l = 1,. The following Matlab function thus computes the complex amplitude A P at the point P on the screen which is a distance D away from the plane of the slits at an angle θ from the x axis. The wavelength of the light used is λ, and the amplitude A at each slit is taken to be equal to one. Note that the variable yslits is a vector whose elements specify the positions of the slits in the plane x = 0. function Ap = interfere(yslits,d,theta,lambda) k = *pi/lambda; yp = D*tan(theta); nslits = length(yslits); Ap = 0; for l = 1:nslits rl = sqrt(d.^+(yp-yslits(l)).^); Ap = Ap + exp(-i*k*rl)./rl; end (3) Consider slits at y 1 = m and y = m (so that their separation is 1 mm), illuminated with green light of wavelength 500 nm. A screen is placed 10 m away. Using the function interfere, calculate and plot the intensity of light on the screen at a set of 501 angles over the range 5 mrad θ 5 mrad. You should find that the function interfere will work even when theta is a vector of angles, so you do not need to use a for statement to loop over the points on the screen. Note that the Matlab function linspace is useful for generating a vector of equally spaced points between two specified values. (4) From your graph, note the angles at which there are maxima and minima in the interference pattern. Explain why it is that there is a maximum at the centre of the screen. Is the spacing between successive maxima and between successive minima equal? Interference with more slits It is now straightforward to calculate the interference from more than two slits, since we simply need to add together the complex amplitudes at the screen of the waves which arise from each slit. The different path lengths lead to different phases (and slightly different amplitudes) for the sinusoidal signals which combine to give the total at the screen. The amplitude at the point P then becomes A P = S Aexp( ikr l ) r l, (1) where S is the number of slits. The intensity at P is (proportional to) A P, as before. (5) Use the function interfere to calculate the intensity of light on the screen when the double slit is successively replaced by a collection of S = 3, 5, 7 and 9 slits. The first and last slits should still be at ±5 10 4, and the remaining slits should be divided evenly between these. A convenient way of doing this in Matlab is to set yslits=linspace(-5e-4,5e-4,s).

4 PHYSICS 10 Experiment 107: Interference of Waves (6) Notice that the interference patterns consist of a number of large primary maxima between which are a number of smaller secondary maxima. From your results, what is the relationship between: (a) The angular separation between the primary maxima, and the separation between the adjacent slits (which is 1 mm / (S 1) for the case of S slits)? (b) The number of secondary maxima between a pair of primary maxima and the number of slits? Interference in the far-field In the examples considered so far, the distance D between the slits and the screen is so large that two approximations can be made which simplify the analysis. These are: Although the real amplitude of the waveform from slit l at the point on the screen is actually A /r l, when D is large, these can all be well-approximated by A /D. In the diagram below, consider the circle centred at P which passes through the origin. This circle has radius R = D/ cosθ. If the circle is large enough, it may be approximated by a straight line in the vicinity of the slits. By considering the geometry at the slits, we see that where y l is the y coordinate of the l th slit. r l R y l sinθ y y l sin θ r l P y l y l θ R x Approximate geometry for large R D Figure : Geometry for far-field interference We can use this to get a handy approximate formula for A P. Substituting r l R y l sin θ in the exponential and r l D (!) in the denominator and using exp( ikr) = 1 we get A P = S Aexp( ikr l ) r l S A D exp( ikr)exp( iky l sin θ) A P A D S exp(iky l sinθ). ()

5 PHYSICS 10 Experiment 107: Interference of Waves (7) Using Eq. () derive an approximate formula for the expected value of A P at primary maxima (for example, at θ = 0). How does this change with S? Does this agree with your results for Question 5? (8) Suppose that we have two slits, one at y 1 = d/ and the other at y = +d/. Show that A P 4 ( ) A kdsin θ D cos Plot a graph of this function for A = 1, D = 10 m, d = 1 mm, λ = 500 nm at a set of 501 angles over the range 5 mrad θ 5 mrad. Compare this graph with that obtained in step (3). Analytically find the values of θ at which the minima and maxima of the intensity arise, and compare these with your previous results. What further approximation is needed in order to conclude that the successive maxima (or minima) are equally spaced in θ? Now let us consider a situation where there are an odd number of slits symmetrically placed around the origin. Suppose that we have S = M + 1 slits located at y coordinates Md, ( M + 1)d,..., (M 1)d, and Md, so that the separation between the slits is d. The intensity at a point P on the screen is now A P A D exp [ik ( M)dsin θ] + exp[ik ( M + 1)dsinθ] + + exp[ikmdsin θ] (3) (9) Show that the sum of exponentials in equation (3) is a geometric series, i.e., that it may be written in the form a + ar + ar + + ar N 1 for a suitable choice of a, r and N. Find expressions for a, r and N appropriate to this series. (10) Using the formula for the finite sum of a geometric series, namely ( ) 1 r a + ar + ar + + ar N 1 N = a 1 r show that A P A D 1 exp [ik (M + 1)dsin θ] 1 exp [ikdsin θ] (11) [Optional] By making use of Euler s identity, show that this may be further simplified to A P A sin [( ) ] M + 1 kdsin θ D sin [ (5) 1kdsin θ] (1) Using either (4) or (5), plot a graph of the intensity on the screen for a system of S = 7 slits corresponding to the parameters used in step (5). Note that in this case, d = 1 mm / (S 1) = 1 6 mm. Compare your graph with the one obtained in step (5) for this situation. (4) Diffraction from a single wide slit So far, each slit is assumed to have been very narrow, so that it may be regarded as a source of waves centred at that slit. We can treat a wide slit by supposing it to be made up of many narrow slits spaced so closely together so that they merge into a single slit. In order to model a slit of width w, we can consider M + 1 slits separated by d = w/ (M), letting M, so that the distance between the first and last slit always remains at w. We also need to decrease the amplitude A from each slit as M becomes large, so that the intensity on the screen remains finite. (13) Starting from equation (5), consider what happens as M, d 0 and A 0 in such a way that w = Md and A/d = 1 remain constant. Using the fact that sinx x when x is small (and is measured in radians), conclude that A P sin [ 1 kw sin θ] D [ 1 k sin θ] (6)

6 PHYSICS 10 Experiment 107: Interference of Waves (14) Plot a graph of this function for D = 10 m, w = 1 mm, λ = 500 nm at a set of 501 angles over the range 5 mrad θ 5 mrad. The function interfere can also be used to calculate an approximation to the diffraction pattern from a wide slit by using a large number of closely-spaced narrow slits. For example, if we set yslits=linspace(-5e-4,5e-4,01) this is a good approximation to a single slit of width w = 1 mm. An advantage of using the function interfere is that we can obtain the diffraction pattern when the distance between the slits and the screen is no longer large. In this situation, it becomes much more difficult to obtain analytical expressions for the diffraction pattern, although the principle of its formation (i.e., the addition of sinusoidal waveforms of varying phase) is still the same. (15) Use the function interfere with the 01 closely-spaced slits approximating a single wide slit of width w = 1 mm. Using λ = 500 nm at a set of 501 angles over the range 5 mrad θ 5 mrad, plot graphs of the intensity at the screen for D = 10 m, 3 m, 1 m and 0.3 m. Also obtain a graph for D = 0.1 m, but you will need to change the range of θ in this case to 0 mrad θ 0 mrad. Instead of plotting the pattern as a function of θ for this last case, it is interesting to plot it as a function of y P = D tan θ. Notice how the graph for D = 10 m resembles that which you found in step (14). As D is decreased, the pattern changes gradually. What can you conclude about the pattern for small D?

Interference. Physics 102 Workshop #3. General Instructions

Interference. Physics 102 Workshop #3. General Instructions Interference Physics 102 Workshop #3 Name: Lab Partner(s): Instructor: Time of Workshop: General Instructions Workshop exercises are to be carried out in groups of three. One report per group is due by

More information

Interference and Diffraction

Interference and Diffraction Chapter 14 nterference and Diffraction 14.1 Superposition of Waves... 14-14. Young s Double-Slit Experiment... 14-4 Example 14.1: Double-Slit Experiment... 14-7 14.3 ntensity Distribution... 14-8 Example

More information

Fraunhofer Diffraction

Fraunhofer Diffraction Physics 334 Spring 1 Purpose Fraunhofer Diffraction The experiment will test the theory of Fraunhofer diffraction at a single slit by comparing a careful measurement of the angular dependence of intensity

More information

6) How wide must a narrow slit be if the first diffraction minimum occurs at ±12 with laser light of 633 nm?

6) How wide must a narrow slit be if the first diffraction minimum occurs at ±12 with laser light of 633 nm? Test IV Name 1) In a single slit diffraction experiment, the width of the slit is 3.1 10-5 m and the distance from the slit to the screen is 2.2 m. If the beam of light of wavelength 600 nm passes through

More information

Physics 111 Homework Solutions Week #9 - Tuesday

Physics 111 Homework Solutions Week #9 - Tuesday Physics 111 Homework Solutions Week #9 - Tuesday Friday, February 25, 2011 Chapter 22 Questions - None Multiple-Choice 223 A 224 C 225 B 226 B 227 B 229 D Problems 227 In this double slit experiment we

More information

Diffraction and Young s Single Slit Experiment

Diffraction and Young s Single Slit Experiment Diffraction and Young s Single Slit Experiment Developers AB Overby Objectives Preparation Background The objectives of this experiment are to observe Fraunhofer, or far-field, diffraction through a single

More information

INTERFERENCE OF SOUND WAVES

INTERFERENCE OF SOUND WAVES 1/2016 Sound 1/8 INTERFERENCE OF SOUND WAVES PURPOSE: To measure the wavelength, frequency, and propagation speed of ultrasonic sound waves and to observe interference phenomena with ultrasonic sound waves.

More information

Physics 41 Chapter 38 HW Key

Physics 41 Chapter 38 HW Key Physics 41 Chapter 38 HW Key 1. Helium neon laser light (63..8 nm) is sent through a 0.300-mm-wide single slit. What is the width of the central imum on a screen 1.00 m from the slit? 7 6.38 10 sin θ.11

More information

AP Physics B Ch. 23 and Ch. 24 Geometric Optics and Wave Nature of Light

AP Physics B Ch. 23 and Ch. 24 Geometric Optics and Wave Nature of Light AP Physics B Ch. 23 and Ch. 24 Geometric Optics and Wave Nature of Light Name: Period: Date: MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. 1) Reflection,

More information

Trigonometric Functions: The Unit Circle

Trigonometric Functions: The Unit Circle Trigonometric Functions: The Unit Circle This chapter deals with the subject of trigonometry, which likely had its origins in the study of distances and angles by the ancient Greeks. The word trigonometry

More information

Diffraction of Laser Light

Diffraction of Laser Light Diffraction of Laser Light No Prelab Introduction The laser is a unique light source because its light is coherent and monochromatic. Coherent light is made up of waves, which are all in phase. Monochromatic

More information

2 Session Two - Complex Numbers and Vectors

2 Session Two - Complex Numbers and Vectors PH2011 Physics 2A Maths Revision - Session 2: Complex Numbers and Vectors 1 2 Session Two - Complex Numbers and Vectors 2.1 What is a Complex Number? The material on complex numbers should be familiar

More information

ANALYTICAL METHODS FOR ENGINEERS

ANALYTICAL METHODS FOR ENGINEERS UNIT 1: Unit code: QCF Level: 4 Credit value: 15 ANALYTICAL METHODS FOR ENGINEERS A/601/1401 OUTCOME - TRIGONOMETRIC METHODS TUTORIAL 1 SINUSOIDAL FUNCTION Be able to analyse and model engineering situations

More information

Week 13 Trigonometric Form of Complex Numbers

Week 13 Trigonometric Form of Complex Numbers Week Trigonometric Form of Complex Numbers Overview In this week of the course, which is the last week if you are not going to take calculus, we will look at how Trigonometry can sometimes help in working

More information

G. GRAPHING FUNCTIONS

G. GRAPHING FUNCTIONS G. GRAPHING FUNCTIONS To get a quick insight int o how the graph of a function looks, it is very helpful to know how certain simple operations on the graph are related to the way the function epression

More information

Diffraction of a Circular Aperture

Diffraction of a Circular Aperture Diffraction of a Circular Aperture Diffraction can be understood by considering the wave nature of light. Huygen's principle, illustrated in the image below, states that each point on a propagating wavefront

More information

COMPLEX NUMBERS. a bi c di a c b d i. a bi c di a c b d i For instance, 1 i 4 7i 1 4 1 7 i 5 6i

COMPLEX NUMBERS. a bi c di a c b d i. a bi c di a c b d i For instance, 1 i 4 7i 1 4 1 7 i 5 6i COMPLEX NUMBERS _4+i _-i FIGURE Complex numbers as points in the Arg plane i _i +i -i A complex number can be represented by an expression of the form a bi, where a b are real numbers i is a symbol with

More information

EDEXCEL NATIONAL CERTIFICATE/DIPLOMA UNIT 5 - ELECTRICAL AND ELECTRONIC PRINCIPLES NQF LEVEL 3 OUTCOME 4 - ALTERNATING CURRENT

EDEXCEL NATIONAL CERTIFICATE/DIPLOMA UNIT 5 - ELECTRICAL AND ELECTRONIC PRINCIPLES NQF LEVEL 3 OUTCOME 4 - ALTERNATING CURRENT EDEXCEL NATIONAL CERTIFICATE/DIPLOMA UNIT 5 - ELECTRICAL AND ELECTRONIC PRINCIPLES NQF LEVEL 3 OUTCOME 4 - ALTERNATING CURRENT 4 Understand single-phase alternating current (ac) theory Single phase AC

More information

a cos x + b sin x = R cos(x α)

a cos x + b sin x = R cos(x α) a cos x + b sin x = R cos(x α) In this unit we explore how the sum of two trigonometric functions, e.g. cos x + 4 sin x, can be expressed as a single trigonometric function. Having the ability to do this

More information

SIGNAL PROCESSING & SIMULATION NEWSLETTER

SIGNAL PROCESSING & SIMULATION NEWSLETTER 1 of 10 1/25/2008 3:38 AM SIGNAL PROCESSING & SIMULATION NEWSLETTER Note: This is not a particularly interesting topic for anyone other than those who ar e involved in simulation. So if you have difficulty

More information

AP PHYSICS C Mechanics - SUMMER ASSIGNMENT FOR 2016-2017

AP PHYSICS C Mechanics - SUMMER ASSIGNMENT FOR 2016-2017 AP PHYSICS C Mechanics - SUMMER ASSIGNMENT FOR 2016-2017 Dear Student: The AP physics course you have signed up for is designed to prepare you for a superior performance on the AP test. To complete material

More information

Higher Education Math Placement

Higher Education Math Placement Higher Education Math Placement Placement Assessment Problem Types 1. Whole Numbers, Fractions, and Decimals 1.1 Operations with Whole Numbers Addition with carry Subtraction with borrowing Multiplication

More information

ALGEBRA 2/TRIGONOMETRY

ALGEBRA 2/TRIGONOMETRY ALGEBRA /TRIGONOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION ALGEBRA /TRIGONOMETRY Thursday, January 9, 015 9:15 a.m to 1:15 p.m., only Student Name: School Name: The possession

More information

INTERFERENCE OBJECTIVES PRE-LECTURE. Aims

INTERFERENCE OBJECTIVES PRE-LECTURE. Aims 53 L4 INTERFERENCE Aims OBJECTIVES When you have finished this chapter you should understand how the wave model of light can be used to explain the phenomenon of interference. You should be able to describe

More information

Understanding Poles and Zeros

Understanding Poles and Zeros MASSACHUSETTS INSTITUTE OF TECHNOLOGY DEPARTMENT OF MECHANICAL ENGINEERING 2.14 Analysis and Design of Feedback Control Systems Understanding Poles and Zeros 1 System Poles and Zeros The transfer function

More information

3.5.4.2 One example: Michelson interferometer

3.5.4.2 One example: Michelson interferometer 3.5.4.2 One example: Michelson interferometer mirror 1 mirror 2 light source 1 2 3 beam splitter 4 object (n object ) interference pattern we either observe fringes of same thickness (parallel light) or

More information

Dear Accelerated Pre-Calculus Student:

Dear Accelerated Pre-Calculus Student: Dear Accelerated Pre-Calculus Student: I am very excited that you have decided to take this course in the upcoming school year! This is a fastpaced, college-preparatory mathematics course that will also

More information

Using light scattering method to find The surface tension of water

Using light scattering method to find The surface tension of water Experiment (8) Using light scattering method to find The surface tension of water The aim of work: The goals of this experiment are to confirm the relationship between angular frequency and wave vector

More information

Angles and Quadrants. Angle Relationships and Degree Measurement. Chapter 7: Trigonometry

Angles and Quadrants. Angle Relationships and Degree Measurement. Chapter 7: Trigonometry Chapter 7: Trigonometry Trigonometry is the study of angles and how they can be used as a means of indirect measurement, that is, the measurement of a distance where it is not practical or even possible

More information

South Carolina College- and Career-Ready (SCCCR) Pre-Calculus

South Carolina College- and Career-Ready (SCCCR) Pre-Calculus South Carolina College- and Career-Ready (SCCCR) Pre-Calculus Key Concepts Arithmetic with Polynomials and Rational Expressions PC.AAPR.2 PC.AAPR.3 PC.AAPR.4 PC.AAPR.5 PC.AAPR.6 PC.AAPR.7 Standards Know

More information

Interferometers. OBJECTIVES To examine the operation of several kinds of interferometers. d sin = n (1)

Interferometers. OBJECTIVES To examine the operation of several kinds of interferometers. d sin = n (1) Interferometers The true worth of an experimenter consists in his pursuing not only what he seeks in his experiment, but also what he did not seek. Claude Bernard (1813-1878) OBJECTIVES To examine the

More information

Georgia Department of Education Kathy Cox, State Superintendent of Schools 7/19/2005 All Rights Reserved 1

Georgia Department of Education Kathy Cox, State Superintendent of Schools 7/19/2005 All Rights Reserved 1 Accelerated Mathematics 3 This is a course in precalculus and statistics, designed to prepare students to take AB or BC Advanced Placement Calculus. It includes rational, circular trigonometric, and inverse

More information

Chapter 17. Orthogonal Matrices and Symmetries of Space

Chapter 17. Orthogonal Matrices and Symmetries of Space Chapter 17. Orthogonal Matrices and Symmetries of Space Take a random matrix, say 1 3 A = 4 5 6, 7 8 9 and compare the lengths of e 1 and Ae 1. The vector e 1 has length 1, while Ae 1 = (1, 4, 7) has length

More information

THE COMPLEX EXPONENTIAL FUNCTION

THE COMPLEX EXPONENTIAL FUNCTION Math 307 THE COMPLEX EXPONENTIAL FUNCTION (These notes assume you are already familiar with the basic properties of complex numbers.) We make the following definition e iθ = cos θ + i sin θ. (1) This formula

More information

Section 6-3 Double-Angle and Half-Angle Identities

Section 6-3 Double-Angle and Half-Angle Identities 6-3 Double-Angle and Half-Angle Identities 47 Section 6-3 Double-Angle and Half-Angle Identities Double-Angle Identities Half-Angle Identities This section develops another important set of identities

More information

DOING PHYSICS WITH MATLAB COMPUTATIONAL OPTICS RAYLEIGH-SOMMERFELD DIFFRACTION INTEGRAL OF THE FIRST KIND

DOING PHYSICS WITH MATLAB COMPUTATIONAL OPTICS RAYLEIGH-SOMMERFELD DIFFRACTION INTEGRAL OF THE FIRST KIND DOING PHYSICS WITH MATLAB COMPUTATIONAL OPTICS RAYLEIGH-SOMMERFELD DIFFRACTION INTEGRAL OF THE FIRST KIND THE THREE-DIMENSIONAL DISTRIBUTION OF THE RADIANT FLUX DENSITY AT THE FOCUS OF A CONVERGENCE BEAM

More information

9.4. The Scalar Product. Introduction. Prerequisites. Learning Style. Learning Outcomes

9.4. The Scalar Product. Introduction. Prerequisites. Learning Style. Learning Outcomes The Scalar Product 9.4 Introduction There are two kinds of multiplication involving vectors. The first is known as the scalar product or dot product. This is so-called because when the scalar product of

More information

Electrical Resonance

Electrical Resonance Electrical Resonance (R-L-C series circuit) APPARATUS 1. R-L-C Circuit board 2. Signal generator 3. Oscilloscope Tektronix TDS1002 with two sets of leads (see Introduction to the Oscilloscope ) INTRODUCTION

More information

GRID AND PRISM SPECTROMETERS

GRID AND PRISM SPECTROMETERS FYSA230/2 GRID AND PRISM SPECTROMETERS 1. Introduction Electromagnetic radiation (e.g. visible light) experiences reflection, refraction, interference and diffraction phenomena when entering and passing

More information

Linear Algebra Notes for Marsden and Tromba Vector Calculus

Linear Algebra Notes for Marsden and Tromba Vector Calculus Linear Algebra Notes for Marsden and Tromba Vector Calculus n-dimensional Euclidean Space and Matrices Definition of n space As was learned in Math b, a point in Euclidean three space can be thought of

More information

Section 9.5: Equations of Lines and Planes

Section 9.5: Equations of Lines and Planes Lines in 3D Space Section 9.5: Equations of Lines and Planes Practice HW from Stewart Textbook (not to hand in) p. 673 # 3-5 odd, 2-37 odd, 4, 47 Consider the line L through the point P = ( x, y, ) that

More information

Section 1.1. Introduction to R n

Section 1.1. Introduction to R n The Calculus of Functions of Several Variables Section. Introduction to R n Calculus is the study of functional relationships and how related quantities change with each other. In your first exposure to

More information

SOLVING TRIGONOMETRIC EQUATIONS

SOLVING TRIGONOMETRIC EQUATIONS Mathematics Revision Guides Solving Trigonometric Equations Page 1 of 17 M.K. HOME TUITION Mathematics Revision Guides Level: AS / A Level AQA : C2 Edexcel: C2 OCR: C2 OCR MEI: C2 SOLVING TRIGONOMETRIC

More information

Holography 1 HOLOGRAPHY

Holography 1 HOLOGRAPHY Holography 1 HOLOGRAPHY Introduction and Background The aesthetic appeal and commercial usefulness of holography are both related to the ability of a hologram to store a three-dimensional image. Unlike

More information

Big Ideas in Mathematics

Big Ideas in Mathematics Big Ideas in Mathematics which are important to all mathematics learning. (Adapted from the NCTM Curriculum Focal Points, 2006) The Mathematics Big Ideas are organized using the PA Mathematics Standards

More information

Algebra 2 Chapter 1 Vocabulary. identity - A statement that equates two equivalent expressions.

Algebra 2 Chapter 1 Vocabulary. identity - A statement that equates two equivalent expressions. Chapter 1 Vocabulary identity - A statement that equates two equivalent expressions. verbal model- A word equation that represents a real-life problem. algebraic expression - An expression with variables.

More information

Unified Lecture # 4 Vectors

Unified Lecture # 4 Vectors Fall 2005 Unified Lecture # 4 Vectors These notes were written by J. Peraire as a review of vectors for Dynamics 16.07. They have been adapted for Unified Engineering by R. Radovitzky. References [1] Feynmann,

More information

ALGEBRA 2/TRIGONOMETRY

ALGEBRA 2/TRIGONOMETRY ALGEBRA /TRIGONOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION ALGEBRA /TRIGONOMETRY Tuesday, June 1, 011 1:15 to 4:15 p.m., only Student Name: School Name: Print your name

More information

Semester 2, Unit 4: Activity 21

Semester 2, Unit 4: Activity 21 Resources: SpringBoard- PreCalculus Online Resources: PreCalculus Springboard Text Unit 4 Vocabulary: Identity Pythagorean Identity Trigonometric Identity Cofunction Identity Sum and Difference Identities

More information

ALGEBRA 2/TRIGONOMETRY

ALGEBRA 2/TRIGONOMETRY ALGEBRA /TRIGONOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION ALGEBRA /TRIGONOMETRY Tuesday, January 8, 014 1:15 to 4:15 p.m., only Student Name: School Name: The possession

More information

Lesson 3 DIRECT AND ALTERNATING CURRENTS. Task. The skills and knowledge taught in this lesson are common to all missile repairer tasks.

Lesson 3 DIRECT AND ALTERNATING CURRENTS. Task. The skills and knowledge taught in this lesson are common to all missile repairer tasks. Lesson 3 DIRECT AND ALTERNATING CURRENTS Task. The skills and knowledge taught in this lesson are common to all missile repairer tasks. Objectives. When you have completed this lesson, you should be able

More information

Solutions to Homework 10

Solutions to Homework 10 Solutions to Homework 1 Section 7., exercise # 1 (b,d): (b) Compute the value of R f dv, where f(x, y) = y/x and R = [1, 3] [, 4]. Solution: Since f is continuous over R, f is integrable over R. Let x

More information

Analog and Digital Signals, Time and Frequency Representation of Signals

Analog and Digital Signals, Time and Frequency Representation of Signals 1 Analog and Digital Signals, Time and Frequency Representation of Signals Required reading: Garcia 3.1, 3.2 CSE 3213, Fall 2010 Instructor: N. Vlajic 2 Data vs. Signal Analog vs. Digital Analog Signals

More information

Thnkwell s Homeschool Precalculus Course Lesson Plan: 36 weeks

Thnkwell s Homeschool Precalculus Course Lesson Plan: 36 weeks Thnkwell s Homeschool Precalculus Course Lesson Plan: 36 weeks Welcome to Thinkwell s Homeschool Precalculus! We re thrilled that you ve decided to make us part of your homeschool curriculum. This lesson

More information

How to Graph Trigonometric Functions

How to Graph Trigonometric Functions How to Graph Trigonometric Functions This handout includes instructions for graphing processes of basic, amplitude shifts, horizontal shifts, and vertical shifts of trigonometric functions. The Unit Circle

More information

www.mathsbox.org.uk ab = c a If the coefficients a,b and c are real then either α and β are real or α and β are complex conjugates

www.mathsbox.org.uk ab = c a If the coefficients a,b and c are real then either α and β are real or α and β are complex conjugates Further Pure Summary Notes. Roots of Quadratic Equations For a quadratic equation ax + bx + c = 0 with roots α and β Sum of the roots Product of roots a + b = b a ab = c a If the coefficients a,b and c

More information

Trigonometry Review with the Unit Circle: All the trig. you ll ever need to know in Calculus

Trigonometry Review with the Unit Circle: All the trig. you ll ever need to know in Calculus Trigonometry Review with the Unit Circle: All the trig. you ll ever need to know in Calculus Objectives: This is your review of trigonometry: angles, six trig. functions, identities and formulas, graphs:

More information

Scientific Programming

Scientific Programming 1 The wave equation Scientific Programming Wave Equation The wave equation describes how waves propagate: light waves, sound waves, oscillating strings, wave in a pond,... Suppose that the function h(x,t)

More information

Unit 6 Trigonometric Identities, Equations, and Applications

Unit 6 Trigonometric Identities, Equations, and Applications Accelerated Mathematics III Frameworks Student Edition Unit 6 Trigonometric Identities, Equations, and Applications nd Edition Unit 6: Page of 3 Table of Contents Introduction:... 3 Discovering the Pythagorean

More information

Trigonometry Hard Problems

Trigonometry Hard Problems Solve the problem. This problem is very difficult to understand. Let s see if we can make sense of it. Note that there are multiple interpretations of the problem and that they are all unsatisfactory.

More information

DIFFRACTION AND INTERFERENCE

DIFFRACTION AND INTERFERENCE DIFFRACTION AND INTERFERENCE In this experiment you will emonstrate the wave nature of light by investigating how it bens aroun eges an how it interferes constructively an estructively. You will observe

More information

Trigonometric Functions and Triangles

Trigonometric Functions and Triangles Trigonometric Functions and Triangles Dr. Philippe B. Laval Kennesaw STate University August 27, 2010 Abstract This handout defines the trigonometric function of angles and discusses the relationship between

More information

Friday, January 29, 2016 9:15 a.m. to 12:15 p.m., only

Friday, January 29, 2016 9:15 a.m. to 12:15 p.m., only ALGEBRA /TRIGONOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION ALGEBRA /TRIGONOMETRY Friday, January 9, 016 9:15 a.m. to 1:15 p.m., only Student Name: School Name: The possession

More information

SAT Subject Math Level 2 Facts & Formulas

SAT Subject Math Level 2 Facts & Formulas Numbers, Sequences, Factors Integers:..., -3, -2, -1, 0, 1, 2, 3,... Reals: integers plus fractions, decimals, and irrationals ( 2, 3, π, etc.) Order Of Operations: Arithmetic Sequences: PEMDAS (Parentheses

More information

Magnetic Field of a Circular Coil Lab 12

Magnetic Field of a Circular Coil Lab 12 HB 11-26-07 Magnetic Field of a Circular Coil Lab 12 1 Magnetic Field of a Circular Coil Lab 12 Equipment- coil apparatus, BK Precision 2120B oscilloscope, Fluke multimeter, Wavetek FG3C function generator,

More information

Graphs of Polar Equations

Graphs of Polar Equations Graphs of Polar Equations In the last section, we learned how to graph a point with polar coordinates (r, θ). We will now look at graphing polar equations. Just as a quick review, the polar coordinate

More information

Parallel and Perpendicular. We show a small box in one of the angles to show that the lines are perpendicular.

Parallel and Perpendicular. We show a small box in one of the angles to show that the lines are perpendicular. CONDENSED L E S S O N. Parallel and Perpendicular In this lesson you will learn the meaning of parallel and perpendicular discover how the slopes of parallel and perpendicular lines are related use slopes

More information

Biggar High School Mathematics Department. National 5 Learning Intentions & Success Criteria: Assessing My Progress

Biggar High School Mathematics Department. National 5 Learning Intentions & Success Criteria: Assessing My Progress Biggar High School Mathematics Department National 5 Learning Intentions & Success Criteria: Assessing My Progress Expressions & Formulae Topic Learning Intention Success Criteria I understand this Approximation

More information

4 The Rhumb Line and the Great Circle in Navigation

4 The Rhumb Line and the Great Circle in Navigation 4 The Rhumb Line and the Great Circle in Navigation 4.1 Details on Great Circles In fig. GN 4.1 two Great Circle/Rhumb Line cases are shown, one in each hemisphere. In each case the shorter distance between

More information

MATH BOOK OF PROBLEMS SERIES. New from Pearson Custom Publishing!

MATH BOOK OF PROBLEMS SERIES. New from Pearson Custom Publishing! MATH BOOK OF PROBLEMS SERIES New from Pearson Custom Publishing! The Math Book of Problems Series is a database of math problems for the following courses: Pre-algebra Algebra Pre-calculus Calculus Statistics

More information

6. Vectors. 1 2009-2016 Scott Surgent (surgent@asu.edu)

6. Vectors. 1 2009-2016 Scott Surgent (surgent@asu.edu) 6. Vectors For purposes of applications in calculus and physics, a vector has both a direction and a magnitude (length), and is usually represented as an arrow. The start of the arrow is the vector s foot,

More information

Algebra and Geometry Review (61 topics, no due date)

Algebra and Geometry Review (61 topics, no due date) Course Name: Math 112 Credit Exam LA Tech University Course Code: ALEKS Course: Trigonometry Instructor: Course Dates: Course Content: 159 topics Algebra and Geometry Review (61 topics, no due date) Properties

More information

Physics 10. Lecture 29A. "There are two ways of spreading light: to be the candle or the mirror that reflects it." --Edith Wharton

Physics 10. Lecture 29A. There are two ways of spreading light: to be the candle or the mirror that reflects it. --Edith Wharton Physics 10 Lecture 29A "There are two ways of spreading light: to be the candle or the mirror that reflects it." --Edith Wharton Converging Lenses What if we wanted to use refraction to converge parallel

More information

EXPERIMENT O-6. Michelson Interferometer. Abstract. References. Pre-Lab

EXPERIMENT O-6. Michelson Interferometer. Abstract. References. Pre-Lab EXPERIMENT O-6 Michelson Interferometer Abstract A Michelson interferometer, constructed by the student, is used to measure the wavelength of He-Ne laser light and the index of refraction of a flat transparent

More information

Introduction to Complex Numbers in Physics/Engineering

Introduction to Complex Numbers in Physics/Engineering Introduction to Complex Numbers in Physics/Engineering ference: Mary L. Boas, Mathematical Methods in the Physical Sciences Chapter 2 & 14 George Arfken, Mathematical Methods for Physicists Chapter 6 The

More information

7. Beats. sin( + λ) + sin( λ) = 2 cos(λ) sin( )

7. Beats. sin( + λ) + sin( λ) = 2 cos(λ) sin( ) 34 7. Beats 7.1. What beats are. Musicians tune their instruments using beats. Beats occur when two very nearby pitches are sounded simultaneously. We ll make a mathematical study of this effect, using

More information

Math 1B, lecture 5: area and volume

Math 1B, lecture 5: area and volume Math B, lecture 5: area and volume Nathan Pflueger 6 September 2 Introduction This lecture and the next will be concerned with the computation of areas of regions in the plane, and volumes of regions in

More information

TRIGONOMETRY Compound & Double angle formulae

TRIGONOMETRY Compound & Double angle formulae TRIGONOMETRY Compound & Double angle formulae In order to master this section you must first learn the formulae, even though they will be given to you on the matric formula sheet. We call these formulae

More information

v = fλ PROGRESSIVE WAVES 1 Candidates should be able to :

v = fλ PROGRESSIVE WAVES 1 Candidates should be able to : PROGRESSIVE WAVES 1 Candidates should be able to : Describe and distinguish between progressive longitudinal and transverse waves. With the exception of electromagnetic waves, which do not need a material

More information

1 Symmetries of regular polyhedra

1 Symmetries of regular polyhedra 1230, notes 5 1 Symmetries of regular polyhedra Symmetry groups Recall: Group axioms: Suppose that (G, ) is a group and a, b, c are elements of G. Then (i) a b G (ii) (a b) c = a (b c) (iii) There is an

More information

Introduction to Complex Fourier Series

Introduction to Complex Fourier Series Introduction to Complex Fourier Series Nathan Pflueger 1 December 2014 Fourier series come in two flavors. What we have studied so far are called real Fourier series: these decompose a given periodic function

More information

Mathematics Pre-Test Sample Questions A. { 11, 7} B. { 7,0,7} C. { 7, 7} D. { 11, 11}

Mathematics Pre-Test Sample Questions A. { 11, 7} B. { 7,0,7} C. { 7, 7} D. { 11, 11} Mathematics Pre-Test Sample Questions 1. Which of the following sets is closed under division? I. {½, 1,, 4} II. {-1, 1} III. {-1, 0, 1} A. I only B. II only C. III only D. I and II. Which of the following

More information

FTIR Instrumentation

FTIR Instrumentation FTIR Instrumentation Adopted from the FTIR lab instruction by H.-N. Hsieh, New Jersey Institute of Technology: http://www-ec.njit.edu/~hsieh/ene669/ftir.html 1. IR Instrumentation Two types of instrumentation

More information

INTERFERENCE OF SOUND WAVES

INTERFERENCE OF SOUND WAVES 2011 Interference - 1 INTERFERENCE OF SOUND WAVES The objectives of this experiment are: To measure the wavelength, frequency, and propagation speed of ultrasonic sound waves. To observe interference phenomena

More information

Reflection and Refraction

Reflection and Refraction Equipment Reflection and Refraction Acrylic block set, plane-concave-convex universal mirror, cork board, cork board stand, pins, flashlight, protractor, ruler, mirror worksheet, rectangular block worksheet,

More information

DEFINITION 5.1.1 A complex number is a matrix of the form. x y. , y x

DEFINITION 5.1.1 A complex number is a matrix of the form. x y. , y x Chapter 5 COMPLEX NUMBERS 5.1 Constructing the complex numbers One way of introducing the field C of complex numbers is via the arithmetic of matrices. DEFINITION 5.1.1 A complex number is a matrix of

More information

O6: The Diffraction Grating Spectrometer

O6: The Diffraction Grating Spectrometer 2B30: PRACTICAL ASTROPHYSICS FORMAL REPORT: O6: The Diffraction Grating Spectrometer Adam Hill Lab partner: G. Evans Tutor: Dr. Peter Storey 1 Abstract The calibration of a diffraction grating spectrometer

More information

1 TRIGONOMETRY. 1.0 Introduction. 1.1 Sum and product formulae. Objectives

1 TRIGONOMETRY. 1.0 Introduction. 1.1 Sum and product formulae. Objectives TRIGONOMETRY Chapter Trigonometry Objectives After studying this chapter you should be able to handle with confidence a wide range of trigonometric identities; be able to express linear combinations of

More information

Solutions to Exercises, Section 5.1

Solutions to Exercises, Section 5.1 Instructor s Solutions Manual, Section 5.1 Exercise 1 Solutions to Exercises, Section 5.1 1. Find all numbers t such that ( 1 3,t) is a point on the unit circle. For ( 1 3,t)to be a point on the unit circle

More information

2.2 Magic with complex exponentials

2.2 Magic with complex exponentials 2.2. MAGIC WITH COMPLEX EXPONENTIALS 97 2.2 Magic with complex exponentials We don t really know what aspects of complex variables you learned about in high school, so the goal here is to start more or

More information

WAVELENGTH OF LIGHT - DIFFRACTION GRATING

WAVELENGTH OF LIGHT - DIFFRACTION GRATING PURPOSE In this experiment we will use the diffraction grating and the spectrometer to measure wavelengths in the mercury spectrum. THEORY A diffraction grating is essentially a series of parallel equidistant

More information

Lectures notes on orthogonal matrices (with exercises) 92.222 - Linear Algebra II - Spring 2004 by D. Klain

Lectures notes on orthogonal matrices (with exercises) 92.222 - Linear Algebra II - Spring 2004 by D. Klain Lectures notes on orthogonal matrices (with exercises) 92.222 - Linear Algebra II - Spring 2004 by D. Klain 1. Orthogonal matrices and orthonormal sets An n n real-valued matrix A is said to be an orthogonal

More information

Friday 18 January 2013 Morning

Friday 18 January 2013 Morning Friday 18 January 2013 Morning AS GCE PHYSICS B (ADVANCING PHYSICS) G492/01 Understanding Processes / Experimentation and Data Handling *G411640113* Candidates answer on the Question Paper. OCR supplied

More information

x 2 + y 2 = 1 y 1 = x 2 + 2x y = x 2 + 2x + 1

x 2 + y 2 = 1 y 1 = x 2 + 2x y = x 2 + 2x + 1 Implicit Functions Defining Implicit Functions Up until now in this course, we have only talked about functions, which assign to every real number x in their domain exactly one real number f(x). The graphs

More information

Prentice Hall Mathematics: Algebra 2 2007 Correlated to: Utah Core Curriculum for Math, Intermediate Algebra (Secondary)

Prentice Hall Mathematics: Algebra 2 2007 Correlated to: Utah Core Curriculum for Math, Intermediate Algebra (Secondary) Core Standards of the Course Standard 1 Students will acquire number sense and perform operations with real and complex numbers. Objective 1.1 Compute fluently and make reasonable estimates. 1. Simplify

More information

88 CHAPTER 2. VECTOR FUNCTIONS. . First, we need to compute T (s). a By definition, r (s) T (s) = 1 a sin s a. sin s a, cos s a

88 CHAPTER 2. VECTOR FUNCTIONS. . First, we need to compute T (s). a By definition, r (s) T (s) = 1 a sin s a. sin s a, cos s a 88 CHAPTER. VECTOR FUNCTIONS.4 Curvature.4.1 Definitions and Examples The notion of curvature measures how sharply a curve bends. We would expect the curvature to be 0 for a straight line, to be very small

More information

Euler s Formula Math 220

Euler s Formula Math 220 Euler s Formula Math 0 last change: Sept 3, 05 Complex numbers A complex number is an expression of the form x+iy where x and y are real numbers and i is the imaginary square root of. For example, + 3i

More information

Lab Exercise 1: Acoustic Waves

Lab Exercise 1: Acoustic Waves Lab Exercise 1: Acoustic Waves Contents 1-1 PRE-LAB ASSIGNMENT................. 2 1-3.1 Spreading Factor: Spherical Waves........ 2 1-3.2 Interference In 3-D................. 3 1-4 EQUIPMENT........................

More information

Lecture 8 : Coordinate Geometry. The coordinate plane The points on a line can be referenced if we choose an origin and a unit of 20

Lecture 8 : Coordinate Geometry. The coordinate plane The points on a line can be referenced if we choose an origin and a unit of 20 Lecture 8 : Coordinate Geometry The coordinate plane The points on a line can be referenced if we choose an origin and a unit of 0 distance on the axis and give each point an identity on the corresponding

More information

Solution Derivations for Capa #14

Solution Derivations for Capa #14 Solution Derivations for Capa #4 ) An image of the moon is focused onto a screen using a converging lens of focal length (f = 34.8 cm). The diameter of the moon is 3.48 0 6 m, and its mean distance from

More information