-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsixth-form.tex
2239 lines (1624 loc) · 107 KB
/
sixth-form.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\documentclass[a4paper,11pt,twoside]{memoir}
\newcommand{\theversion}{\input{version}}
\usepackage{subfiles}
\usepackage{graphicx}
\usepackage{titlesec}
\usepackage{tikz}
\usepackage[european,siunitx]{circuitikz}
\usepackage{amsmath}
\usepackage{lmodern}
\usepackage{amssymb}
\usepackage{wrapfig}
\usepackage{needspace}
\usepackage{xcolor}
\usepackage{siunitx}
\usepackage{enumitem}
\usepackage{longtable}
\usepackage[utf8x]{inputenc}
\usepackage{framed}
\usepackage{pdfpages}
\usetikzlibrary{decorations.pathmorphing,patterns,decorations.markings,arrows.meta}
\usepackage{pgfplots}
\pgfplotsset{compat=1.8}
\tikzset{>=latex}
\tikzset{->-/.style={decoration={markings, mark=at position #1 with {\arrow{>}}},postaction={decorate}},->-/.default={.5}}
\tikzset{cross/.style={cross out, draw, minimum size=2*(#1-\pgflinewidth), inner sep=0pt, outer sep=0pt},cross/.default={2.5pt}}
\usepackage{hyperref}
\hypersetup{
colorlinks,
linkcolor={red!50!black},
citecolor={blue!50!black},
urlcolor={blue!80!black}
}
\chapterstyle{section}
\newcommand{\ud}{\,\mathrm{d}}
\newcounter{spec}[chapter]
\newcommand{\spec}[1]{\Needspace{5\baselineskip}\textcolor{purple}{$\bullet$\hspace{0.5cm}\textit{#1}}}
\newcommand{\specstar}[1]{\Needspace{5\baselineskip}\textcolor{purple}{\textit{#1}}}
\newcommand{\answer}{\par \textbf{Answer} \par}
\newsavebox{\examplebox}
\newenvironment{example}
{\begin{lrbox}{\examplebox}\begin{minipage}{0.9\textwidth}\textbf{Example Question}\par}
{\end{minipage}\end{lrbox}\fbox{\usebox{\examplebox}}}
\newenvironment{content}{\section*{Content}
\begin{itemize}}{\end{itemize}}
\setlength{\parindent}{0em}
\setlength{\parskip}{1em}
\setsecnumdepth{none}
\setcounter{tocdepth}{0}
\include{formeongithub.tex}
\begin{document}
\raggedbottom
\frontmatter
\small\forkme[east]
\begin{titlingpage}
\vspace*{\fill}
\begin{center}\Huge\bfseries Sixth Form Physics Revision Guide \\ \vspace{3cm} \Large Westminster School
\vfill \today \\ \theversion \end{center}
\thispagestyle{empty}
\end{titlingpage}
\tableofcontents
\mainmatter
\chapter{A1 Materials}
\setcounter{spec}{0}
\section*{Content}
\begin{itemize}
\item elastic and plastic behaviour
\item stress and strain
\end{itemize}
\section*{Candidates should be able to:}
\spec{distinguish between elastic and plastic deformation of a material}
Elastic deformation is defined as deformation where the sample returns to its original length when the load is removed. Plastic deformation involves a permanent change in length of the sample.
\spec{recall the terms brittle, ductile, hard, malleable, stiff, strong and tough, explain their meaning and give examples of materials exhibiting such behaviour}
\begin{description}
\item[Brittle] Brittleness is an indicator of how soon after the yield point a material fractures. Failure will be through the propagation of cracks. A brittle material cannot absorb much energy before breaking. For example, glass and ceramics can be strong but brittle.
\item[Ductile] Ductility is a measure of plastic behaviour under tension. It gives an indication of how easily a material can be drawn into wires i.e. can withstand large strains without breaking. Copper is highly ductile.
\item[Hard] Hardness is a measure of a material's ability to resist impact or scratching. Diamond is an exceptionally hard material.
\item[Malleable] Malleability is a measure of plastic behaviour under compression. It gives an indication of how easily a material can be worked. Metals are ductile and hence relatively easy to form into shapes for use in manufacture.
\item[Stiff] Stiffness measures how much a material resists deformation. A measure of stiffness is the Young Modulus. Glass fibres and steel are both stiff materials.
\item[Strong] A strong material is able to withstand a large stress without failing.
\item[Tough] Toughness is a measure of the ability of a material to resist failure through crack propagation. It is the opposite of brittleness. A tough material is able to absorb a lot of energy without breaking. Plastics/polymers are often tough.
\end{description}
\spec{explain the meaning of, and recall and use the appropriate equations to calculate tensile/compressive stress, tensile/compressive strain, spring constant, strength, breaking stress, stiffness and Young modulus}
Firstly, compressive forces and deformations are those which reduce the length of the sample whereas tensile forces act to increase its length.
\begin{description}
\item[Stress] Stress is defined as the force per unit of cross-sectional area applied to a material. \[ \sigma = \frac{F}{A} \] Stress is measured in pascals (Pa).
\item[Strain] Strain is the fractional extension of a material. \[ \epsilon = \frac{x}{l} \]
where $l$ is the original length.
\item[Spring constant] The spring constant $k$ is the force per unit of extension of a material during its proportional phase of deformation. It is defined by Hooke's Law: \[ F = kx\] The spring constant is often used as a measure of stiffness of an object.
\item[Strength] Strength is often measured as the maximum stress a material can withstand before permanent deformation. This is known as the yield stress.
\item[Breaking stress] This is the stress at which the material fails.
\item[Young modulus] This is a quantitative measure of the stiffness of a material, defined as stress per unit of strain in the proportional region the material's behaviour. \[ E = \frac{\sigma}{\epsilon} \]
\end{description}
\spec{draw force-extension, force-compression and tensile/compressive stress-strain graphs, and explain the meaning of the limit of proportionality, elastic limit, yield point, breaking force and breaking stress}
The gradient of a force-extension graph gives the spring constant.
\begin{figure}[ht]
\begin{center}
\begin{tikzpicture}[scale=1]
\draw[->] (-0.5,0) -- (10,0) node[anchor=north] {$\epsilon$};
\draw[->] (0,-0.5) -- (0,6) node[anchor=east] {$\sigma$};
\draw (0,0) -- (1.5,3) .. controls (2,3.5) .. (2.5,3) .. controls (3,2.8) .. (4,4) .. controls (5.5,5.5) and (8,5.5) .. (10,4.5);
\fill (1.5,3) circle (2pt) node[anchor=south east] {A};
\fill (2,3.4) circle (2pt) node[anchor=south] {B};
\fill (7,5.2) circle (2pt) node[anchor=south] {C};
\fill (10,4.5) circle (2pt) node[anchor=south] {D};
\node[draw, text width = 4cm] at (13,3) {
\begin{description}
\item[A] The limit of proportionality
\item[B] The yield point
\item[C] The ultimate stress (maximium stress)
\item[D] The breaking point
\end{description}
};
\end{tikzpicture}
\end{center}
\caption{Stress-strain curve for a ductile material}
\label{stress-strain}
\end{figure}
Figure \ref{stress-strain} shows an example stress-strain curve. Note that the limit of proportionality is often a good approximation of the elastic limit of a metal. The ``breaking stress'' usually refers to the ultimate stress, i.e. the maximum stress the material can withstand, rather than the stress at the breaking point.
\spec{state Hooke's law and identify situations in which it is obeyed}
\[ F = kx \]
Hooke's law is obeyed by an ideal spring and by a sample of metal up to the limit of proportionality.
\spec{account for the stress-strain graphs of metals and polymers in terms of the microstructure of the material.}
\subsection{Metals}
Metals consist of positive ions in a sea of delocalised electrons. During the elastic phase of deformation the spaces between the ions get larger and smaller. The metallic bonds resist this change from their equilibrium length and act like small springs acting to return the spacing to its original length.
An initial expectation of the plastic phase of deformation in a metallic lattice may be that the planes of ions slip past one another; however an analysis of the forces required for such movement gives an answer hundreds of times higher than the measured yield stress. Instead, the plastic deformation of metals must be explained in terms of \emph{dislocations}. A dislocation occurs when there is a gap in the metallic lattice. Dislocations occur naturally in materials and enable plastic deformation to occur through the breaking of individual bonds in succession, rather than all at once.
\begin{figure}[h]\begin{center}
\begin{tikzpicture}
% Left hand
\foreach \y in {5,6,7} {
\foreach \x in {0,1,2,3,4} {
\draw (\x,\y) circle (4mm);
}
}
\foreach \x in {0.1,1.15,2.8,3.8} {
\draw (\x,4) circle (4mm);
}
\foreach \x in {0.3,1.3,2.6,3.6} {
\draw (\x,3) circle (4mm);
}
\foreach \x in {0.5,1.4,2.4,3.35} {
\draw (\x,2) circle (4mm);
}
\draw[red, very thick] (0,7) -- (0.1,4) -- (0.5,2);
\draw[red, very thick] (1,7) -- (1,5) -- (1.4,2);
\draw[red, very thick] (2,7) -- (2,5);
\draw[red, very thick] (3,7) -- (3,5) -- (2.4,2);
\draw[red, very thick] (4,7) -- (4,5) -- (3.4,2);
% right hand
\foreach \y in {5,6,7} {
\foreach \x in {7,8,9,10,11} {
\draw (\x,\y) circle (4mm);
}
}
\foreach \x in {7.1,8.15,9.2,10.8} {
\draw (\x,4) circle (4mm);
}
\foreach \x in {7.3,8.3,9.3,10.6} {
\draw (\x,3) circle (4mm);
}
\foreach \x in {7.5,8.4,9.4,10.35} {
\draw (\x,2) circle (4mm);
}
\draw[red, very thick] (7,7) -- (7.1,4) -- (7.5,2);
\draw[red, very thick] (8,7) -- (8,5) -- (8.4,2);
\draw[red, very thick] (9,7) -- (9,5) -- (9.4,2);
\draw[red, very thick] (10,7) -- (10,5);
\draw[red, very thick] (11,7) -- (11,5) -- (10.4,2);
\end{tikzpicture}
\caption{The movement of a dislocation}\label{disloc}
\end{center}\end{figure}
Figure \ref{disloc} shows a dislocation moving within a metal which would allow the metal to deform by moving one atom at a time. As the movement of dislocations is the dominant mode of plastic deformation, changes to the ability of dislocations to move through the metal have significant effects on its properties. For example:
\begin{description}
\item[Work Hardening] As a metal is deformed, the dislocations move through the structure. Slowly the dislocations reach grain-boundaries or other dislocations and are no longer able to move. The metal therefore becomes less ductile and more brittle. This may be a desired property in order to harden a metal, or the additional brittleness may be undesirable.
\item[Alloying] The addition of alloying atoms to the lattice can `pin' a dislocation in place (as shown in Figure \ref{alloying}.) The metal is therefore no longer able to deform by the movement of dislocations so the metal has a greater yield stress and is less ductile. Examples include adding carbon to iron to produce steel or adding zinc to copper to produce brass.
\end{description}
\begin{figure}[h]\begin{center}
\begin{tikzpicture}
% Left hand
\foreach \y in {5,6,7} {
\foreach \x in {0,1,2,3,4} {
\draw (\x,\y) circle (4mm);
}
}
\foreach \x in {0.1,1.15,2.8,3.8} {
\draw (\x,4) circle (4mm);
}
\foreach \x in {0.3,1.3,2.6,3.6} {
\draw (\x,3) circle (4mm);
}
\foreach \x in {0.5,1.4,2.4,3.35} {
\draw (\x,2) circle (4mm);
}
\fill [red] (2,4) circle (2mm);
\end{tikzpicture}
\caption{Alloying atom pinning a dislocation}\label{alloying}
\end{center}\end{figure}
The effect on a stress-strain graph can be seen in figure \ref{stress-strain-alloy} below.
\begin{figure}[ht]
\begin{center}
\begin{tikzpicture}[scale=0.5]
\draw[->] (-0.5,0) -- (10,0) node[anchor=north] {$\epsilon$};
\draw[->] (0,-0.5) -- (0,8) node[anchor=east] {$\sigma$};
\draw (0,0) -- (1.5,3) .. controls (2,3.5) .. (2.5,3) .. controls (3,2.8) .. (4,4) .. controls (5.5,5.5) and (8,5.5) .. (10,4.5) node[anchor=north] {Pure metal};
\fill (10,4.5) circle (1mm);
\draw (0,0) -- (1.3,5.5) .. controls (1.5,5.8) .. (2,6) node[anchor=south] {Alloy};
\fill (2,6) circle (1mm);
\end{tikzpicture}
\end{center}
\caption{Stress-strain curve for a ductile material}
\label{stress-strain-alloy}
\end{figure}
\subsection{Polymers}
Polymers consist of long chain molecules weakly held together by intermolecular forces. Initially the molecules are likely to be tangled-up together. As force is applied it is initially difficult to move the polymer chains from this state (\textbf{A}). As the chains begin to unravel they straighten out by bond rotation, requiring relatively little force for a large increase in strain (\textbf{B}). As the polymer chains become straight it becomes much more difficult to extend the material any further without damaging the material (\textbf{C}).
\begin{figure}[ht]
\begin{center}
\begin{tikzpicture}[scale=.75]
\draw[thick, ->] (-0.5,0) -- (11,0) node[anchor=north] {$\epsilon$};
\draw[thick, ->] (0,-0.5) -- (0,9) node[anchor=east] {$\sigma$};
\draw (0,0) .. controls (3,7) and (6,1) .. (10,8);
\draw (1.5,1) node{\textbf{A}};
\draw (5,1) node{\textbf{B}};
\draw (8.5,1) node{\textbf{C}};
\draw[dashed] (3,0) -- (3,3.6);
\draw[dashed] (7.2,0) -- (7.2,4.7);
\end{tikzpicture}
\end{center}
\caption{Stress-strain curve for a polymer}
\label{stress-strain-polymer}
\end{figure}
\chapter{A2 Waves}
\setcounter{spec}{0}
\section*{Candidates should be able to:}
\spec{understand and use the terms displacement, amplitude, intensity, frequency, period, speed and wavelength}
All waves consist of oscillations. The oscillations could be of particles, for example in a sound wave, or of an electromagnetic field, as in a light wave.
The following terms are used to describe properties of waves:
\begin{itemize}
\item \textbf{displacement}: This is a measurement of the distance and direction away from the equilibrium position.
\item \textbf{amplitude}: The maximum displacement of the oscillation, represented by $A$.
\item \textbf{intensity}: The power of the wave per unit area, represented by $I$. The unit of intensity is $Wm^{-2}$.
\item \textbf{frequency}: The number of oscillations per second, represented by $f$.
\item \textbf{period}: The time taken for one oscillation, represented by $T$.
\item \textbf{speed}: The speed of a wave, represented by $v$. This will depend on the medium through which the wave is travelling.
\item \textbf{wavelength}: The distance over which a wave's shape repeats, represented by $\lambda$.
\end{itemize}
\spec{recall and apply $f = \frac{1}{T}$ to a variety of situations not limited to waves}
This equation follows from the definition of the frequency and time period of a wave. Remember to use Hertz as the unit for frequency and seconds as the unit for period.
\spec{recall and use the wave equation $v=f\lambda$}
$$\text{speed} = \frac{\text{distance travelled}}{\text{time taken}}$$
For a wave, the distance travelled in one time period, $T$, is the wavelength, $\lambda$. Therefore we can write
\[v = \frac{\lambda}{T}\]
Then, using the equation $f=\frac{1}{T}$, we can write:
$$v = f\lambda$$
This is known as the wave equation and can be applied to all waves. The frequency of the wave generally depends on the source of the wave or how it is produced and the speed depends on the medium through which the wave is travelling.
\spec{recall that a sound wave is a longitudinal wave which can be described in terms of the displacement of molecules or changes in pressure}
When a sound wave travels through a material, the collisions of molecules are parallel to the direction of travel. Energy is transferred through these collisions and the speed of the sound wave will depend on factors such as the density of the material and the temperature.
When a sound wave is viewed on an oscilloscope, it looks as though the oscillations are perpendicular to the direction of travel, as in a transverse wave. The y-axis can represent either the displacement of molecules (still in the parallel direction) from their equilibrium position, or the difference in pressure.
\begin{figure}[h]
\includegraphics[width=\textwidth]{figs/chapt-6/soundwave.JPG}
\caption{Sound wave in air (credit: hyperphysics)}
\label{Sound wave in air}
\end{figure}
\spec{recall that light waves are transverse electromagnetic waves, and that all electromagnetic waves travel at the same speed in a vacuum}
\spec{recall the major divisions of the electromagnetic spectrum in order of wavelength, and the range of wavelengths of the visible spectrum}
Electromagnetic waves are transverse waves where the oscillations are perpendicular to the direction of travel. In all electromagnetic waves there are actually two waves oscillating perpendicular to each other and to the direction of travel. One is an oscillating magnetic field; the other an oscillating electric field.
\begin{figure}[h!]
\includegraphics[width=9cm]{figs/chapt-6/emwave.png}
\centering
\caption{Oscillations in an electromagnetic wave}
\label{emwave}
\end{figure}
The electromagnetic spectrum is the name for the arrangement and classification of electromagnetic waves in order of their wavelengths or frequencies.
The electromagnetic spectrum is shown below in order of increasing wavelength.
\begin{figure}[h]
\includegraphics[width=\textwidth]{figs/chapt-6/emspectrum.jpg}
\caption{The electromagnetic spectrum (Credit: miniphysics.com)}
\end{figure}
You can see that the visible light spectrum makes up a small part of the electromagnetic spectrum, with wavelengths between 400 - 700 nm.
\spec{recall and use that the intensity of a wave is directly proportional to the square of its amplitude}
If the amplitude of a wave varies sinusoidally, the intensity will vary as sine squared. Therefore the following expression can be used:
$$I \propto A^2$$
\spec{use graphs to represent transverse and longitudinal waves, including standing waves}
\emph{Note: Standing waves will be covered in Chapter 7 on Superposition}
There are two types of graphs used to represent transverse and longitudinal waves, shown in Figure \ref{twographs}. You need to be careful as they look similar.
The first graph plots the motion of one part of the wave with time, for example the motion of one water molecule as a water wave goes by. The x-axis on this graph can give you the time period of the wave.
The second graph is a snapshot of a section of the wave at one particular instant in time. On this graph the wavelength can be measured from the x-axis.
\begin{figure}[h]
\begin{center}
\begin{tikzpicture}[domain=0:10,samples=200]
\draw[very thin,color=gray] (-0.1,-1.5) grid (9.9,1.5);
\draw[->] (-0.2,0) -- (10.2,0) node[right] {$t$};
\draw[->] (0,-1.5) -- (0,1.5) node[above] {$y$};
\draw plot (\x,{1.2*sin(50*pi*\x)});
\draw[<->] (1.8,-1.5) -- (4,-1.5) node[midway, below] {$T$};
\end{tikzpicture}
\begin{tikzpicture}[domain=0:10,samples=200]
\draw[very thin,color=gray] (-0.1,-1.5) grid (9.9,1.5);
\draw[->] (-0.2,0) -- (10.2,0) node[right] {$x$};
\draw[->] (0,-1.5) -- (0,1.5) node[above] {$y$};
\draw plot (\x,{1.2*sin(40*pi*\x)});
\draw[<->] (3.55,1.5) -- (6.5,1.5) node[midway, above] {$\lambda$};
\end{tikzpicture}
\end{center}
\caption{Two graphs of a wave}
\label{twographs}
\end{figure}
\spec{explain what is meant by a plane-polarised wave}
\spec{recall Malus' Law ($I \propto \cos^2\theta $) and use it to calculate the amplitude and intensity of transmission through a polarising filter}
A plane-polarised wave is one where there is only \textbf{one} allowed direction of oscillation. This is only applicable to transverse waves where there are multiple allowed modes of oscillation which are all perpendicular to the direction of travel. A longitudinal wave cannot be polarised as there is already only one direction of oscillation - the direction parallel to that of travel. All electromagnetic waves can be polarised.
Consider visible light as an example of a polarised wave. There are 4 ways in which light can be polarised.
\begin{itemize}
\item\textbf{Transmission}: A polarising filter can be used to polarise light. A filter is made up of chains of molecules that will absorb one direction of oscillation of the light wave, therefore only letting through the perpendicular direction. Note that this 'one' direction is a simplificiation as it encompasses oscillations in both the electric and magnetic fields. The \emph{axis of transmission} of a filter is the direction of oscillation that the filter will let through.
\begin{figure}[h]
\includegraphics[width=10cm]{figs/chapt-6/polarisedwave.JPG}
\centering
\caption{diagram showing the operation of a polarising filter (Credit: isaacphysics)}
\end{figure}
As unpolarised light passes through a polaroid filter, its intensity will drop of 50\% of what it originally was. If light that is already polarised is incident on a filter with a perpendicular axis of transmission, none will pass through. If light that is already polarised is incident on a filter with a parallel axis of transmission, then all of the light will pass through. For cases other than parallel or perpendicular, Malus' Law can be used.
Malus' Law can be used to work out how the intensity of polarised light changes as it passes through a polaroid filter. The angle $\theta$ is the angle \emph{between} the direction of polarisation of the incident light and the axis of transmission of the polaroid. If you start with unpolarised light, $\theta$ is the angle between the two polaroids.
Malus' Law states that the intensity of the transmitted light is proportional to the square of $\cos\theta$.
$$I \propto \cos^2\theta $$
If the incident intensity is $I_0$, then we can write Malus' Law as:
$$I = I_0\cos^2\theta$$
Note that if you are dealing with \emph{amplitude} instead of intensity then you must take the square root to give $\cos\theta$.
\item\textbf{Reflection}: Light can be partially polarised on reflection from certain non-metallic surfaces, such as water. The reflected light will be polarised parallel to the surface. This is why polaroid sunglasses are useful as they can cut out the glare from water or roads.
\item\textbf{Refraction}: Light can be partially polarised, often in two perpendicular directions, when passing through some materials, such as calcite. Specific details will always be given to you in a question.
\item\textbf{Scattering}: Light from the Sun scatters of molecules in our atmosphere and is partially polarised depending on the direction that you are looking at the sky. Again, specific details will always be provided in a question.
\end{itemize}
\spec{recognise and use the expression for refractive index
\[ n = \frac{\sin{\theta_1}}{\sin{\theta_2}} = \frac{v_1}{v_2}\]}
When a wave crosses a boundary which involves a change in speed, refraction occurs. This concept should be familiar from GCSE.
%Diagram
For light, the refractive index of a medium is the ratio of the speed of light in a vacuum, $c$, to the speed of light in the medium, $v$.
\[n = \frac{c}{v}\]
Therefore the refractive index of a material is always greater than one.
If a wave now crosses a boundary between material 1 and material 2, with the angle of incidence being $\theta_1$ and the angle of refraction being $\theta_2$, the following relationship (Snell's Law) applies:
\[ \frac{n_2}{n_1} = \frac{\sin{\theta_1}}{\sin{\theta_2}}\]
As the refractive index of a material is inversely proportional to the speed of light in that material, we know that
\[\frac{n_2}{n_1} = \frac{v_1}{v_2} \]
Snell's Law now becomes
\[ \frac{n_2}{n_1} = \frac{\sin{\theta_1}}{\sin{\theta_2}} = \frac{v_1}{v_2}\]
This is the most general form of Snell's Law. For the specific case where material 1 is air we can take $n_1 = 1$ as the speed of light in air is close enough to the speed of light in a vacuum. Now, replacing $n_2$ with $n$, the equation is:
\[ n = \frac{\sin{\theta_1}}{\sin{\theta_2}} = \frac{v_1}{v_2}\]
This is the equation given in the specification. Be careful as it only applies to the case where material 1 is air and this might not always be the case.
\spec{derive and recall $\sin{c} = \frac{1}{n}$ and use it to solve problems}
If we take Snell's Law for the case where light is travelling from a material of higher refractive index into a material with lower refractive index, $n_1 > n_2$, we know that the light will bend away from the normal with the angle of refraction, $\theta_2$ being larger than the angle of incidence, $\theta_1$. If the angle of incidence is increased until the angle of refraction is $90^{\circ}$, then the angle of incidence is now called the \emph{critical angle}, as above this angle, \emph{total internal reflection} will occur.
Now we can put this into Snell's Law. $\theta_1$ is now $c$, the critical angle and $\theta_2$ is now $90^{\circ}$.
$$\frac{n_2}{n_1} = \frac{\sin{\theta_1}}{\sin{\theta_2}}$$
This now becomes:
$$\frac{n_2}{n_1} = \frac{\sin{c}}{\sin{90^{\circ}}}$$
As $\sin{90^{\circ}} = 1$, the most general equation to find the critical angle is:
$$\frac{n_2}{n_1} = \sin{c}$$
or
$$\frac{n_1}{n_2} = \frac{1}{\sin{c}}$$
In the specification, the equation is given for the specific case where material 2 is air, therefore $n_2$ can be taken to be 1. This gives the equation:
$$\sin{c} = \frac{1}{n}$$
\spec{recall that optical fibres use total internal reflection to transmit signals}
\spec{recall that, in general, waves are partially transmitted and partially reflected at an interface between media.}
Should be familiar from GCSE.
\spec{explain and use the concepts of coherence, path difference, superposition and phase}
\spec{understand the origin of phase difference and path difference, and calculate phase differences from path differences}
\spec{understand how the phase of a wave varies with time and position}
These terms are all used when considering more than one wave.
The phase of a wave is related to how far through an oscillation a wave is. This is expressed in radians or degrees, where one complete oscillation corresponds to $360^{\circ}$ or $2\pi$ radians.
The phase difference between two waves is more useful than the phase of one wave. This refers to the fraction of an oscillation by which one wave 'leads' or 'lags' behind another. If the phase difference is $2n\pi$, where $n$ is an integer, then two waves are said to be \emph{in phase} and if the phase difference is $(2n-1)\pi$ then the waves are completely \emph{out of phase}.
Two waves are said to be coherent if they have a constant phase difference. Most often, this is a phase difference of zero, which means that the waves are in phase, but this does not always have to be the case. For interference patterns to occur, coherence is often a necessary condition.
If two waves, from two different sources, meet at a point, the path difference is the difference in distance travelled between the two waves. To calculate the path difference the smaller distance should be taken away from the larger distance. Path difference is normally expressed as a multiple of wavelength, as this then allows the phase difference to be calculated easily.
When two or more waves meet at a point, superposition will occur. This means that the displacements of the individual waves add up to give a resultant displacement. If the two waves are in phase, then constructive interference will occur and if they are out of phase then destructive interference will occur.
\begin{center}
\begin{tabular}{c|c|c}
\textbf{Path difference} & \textbf{Phase difference} & \textbf{Superposition}\\
\hline
$n\lambda$ & $2n\pi$ & constructive interference\\
\hline
$(n+\frac{1}{2})\lambda$ & $(2n-1)\pi$ & destructive interference
\end{tabular}
\end{center}
\spec{determine the resultant amplitude when two waves superpose, making use of phasor diagrams}
When two waves superpose, the resultant displacement at any point is the vector sum of the individual displacements.
\begin{figure}[h!]
\centering
\includegraphics[width=10 cm]{figs/chapt-7/superposition.JPG}
\caption{Graph showing superposition of two waves}
\end{figure}
Phasors are rotating arrows that can be used to describe waves. A phasor arrow rotates anticlockwise and one full oscillation of the wave corresponds to one complete oscillation of the phasor arrow. The length of the phasor arrow corresponds to the amplitude of the wave.
\begin{figure}[h]
\centering
\includegraphics[width=\textwidth]{figs/chapt-7/phasor.JPG}
\caption{The circle on the left shows the rotating phasors that correspond to this sine wave}
\end{figure}
If we have two waves that superpose, their individual phasor arrows at a particular point can be added up as vectors as shown in the diagram below.
\begin{figure}[h]
\centering
\begin{tikzpicture}
\draw[thick,->] (0,0) -- (1.5,2.6);
\draw[thick,->] (1.5,2.6) -- +(3,0);
\draw[very thick, red,->] (0,0) -- (4.5,2.6);
\end{tikzpicture}
\caption{The sum of two phasors placed end to end}
\end{figure}
\spec{explain what is meant by a standing wave, how such a wave can be formed, and identify nodes and antinodes}
A standing wave arises from a combination of reflection and interference. Consider the set up below.
\begin{figure}[h!]
\centering
\includegraphics[width=10cm]{figs/chapt-7/melde.JPG}
\caption{Vibration generator connected to a horizontal string under tension}
\end{figure}
The vibration generator leads to a progressive wave travelling to the right. This waves reflects off the fixed end and so there are now two waves on the string, travelling in opposite directions.
These two waves superpose and, in some cases (conditions discussed below), a standing wave can form on the string. If these conditions are met, there will be points where the two waves always meet in phase and interfere constructively. These are called \emph{antinodes}. The points where the two waves always meet out of phase and interfere destructively are called \emph{nodes}.
\begin{figure}[h!]
\centering
\includegraphics[width=10cm]{figs/chapt-7/string.JPG}
\caption{modes of oscillation on a string}
\end{figure}
Unlike a progressive wave, all points on a stationary wave do not have the same amplitude. The amplitude is at a minimum (often zero) at a node and at a maximum at an antinode.
If the length of the string is $L$, and the speed of waves on the string is $v$, we can work out the frequencies of the various modes of oscillation. The lowest frequency (first mode) shown in the diagram is called the fundamental frequency. You can see that half of a wavelength fits on the string. Therefore we can write:
$$\frac{\lambda}{2} = L$$
$$\lambda = 2L$$
Putting this into the wave equation gives an expression for the fundamental frequency:
$$v = f\lambda = f\cdot 2L$$
$$f = \frac{v}{2L}$$
The other modes of oscillation can be worked out in similar ways, by looking at the relationship between $L$ and $\lambda$ and substituting into the wave equation. For a given string under a certain tension the speed is constant. The frequency is the frequency of the vibration generator which can be changed to give the different modes of oscillation.
The boundary conditions for this string were that both ends had to be nodes. In other cases where standing waves occur, for example sound waves, the boundary conditions could be different. Closed ends of tubes are always nodes and open ends are always antinodes.
\begin{figure}[h!]
\centering
\includegraphics[width=10cm]{figs/chapt-7/sound.JPG}
\caption{Standing waves in a tube {credit:Yonsei Phylab}}
\end{figure}
\spec{understand that a complex wave may be regarded as a superposition of sinusoidal waves of appropriate amplitudes, frequencies and phases}
If more than two waves superpose, the resultant wave can get very complicated! This means that \emph{any} waveform can always be broken down into sinusoidal waves. With combinations of sinusoidal waves of various frequencies, amplitudes and phase differences, any waveform can be made.
\begin{figure}[h!]
\centering
\includegraphics[width=10cm]{figs/chapt-7/sine1.JPG}
\caption{Example showing how 2 waves combine to form a more complex wave (Credit: cyberphysics.co.uk)}
\end{figure}
\spec{recall that waves can be diffracted and that substantial diffraction occurs when the size of the gap or obstacle is comparable to the wavelength}
\spec{recall qualitatively the diffraction patterns for a slit, a circular hole and a straight edge}
When waves pass through an opening, or around a barrier, diffraction occurs and the waves can change in direction and spread out. Diffraction is most significant when the size of the gap or obstacle is comparable to the wavelength. For example, sound waves will diffract through open doors as they have wavelengths of similar orders of magnitudes to the size of the door. However, light will not diffract as much through a door as the wavelength of light is many orders of magnitude smaller than the size of the door.
When waves diffract, diffraction patterns will be formed due to interference of the waves. Specific cases will be discussed below. Here are some examples of diffraction patterns:
\textbf{A slit}
When a wave passes through a slit, and the wave is observed a certain distance away from the slit, a diffraction pattern consisting of points of constructive interference and destructive interference will be formed. Visible patterns will occur when the size of the slit is comparable to the wavelength. For example, with visible light and a very narrow slit, the following pattern will be observed.
\begin{figure}[h!]
\centering
\includegraphics[width=10cm]{figs/chapt-7/slit.JPG}
\caption{Diffraction pattern for a slit (credit:hyperphysics)}
\end{figure}
There is a central maximum which is twice the width of the maxima on either side and the pattern is symmetrical.
\begin{figure}[h!]
\centering
\includegraphics[width=10cm]{figs/chapt-7/slitphoto.jpg}
\caption{Photograph of single slit diffraction pattern}
\end{figure}
\textbf{A circular hole}
The diffraction pattern for a circular hole is similar to a single slit, except that instead of fringes, the pattern consists of rings.
\begin{figure}[h!]
\centering
\includegraphics[width=10cm]{figs/chapt-7/hole.JPG}
\caption{Circular hole diffraction pattern {credit:hyperphysics}}
\end{figure}
Although the examples given here are for visible light, remember that \emph{all} waves can diffract.
\textbf{A straight edge}
A similar pattern of fringes is seen due to constructive and destructive interference. Here the example given is for radio waves.
\begin{figure}[h!]
\centering
\includegraphics[width=10cm]{figs/chapt-7/edge.jpg}
\caption{Diffraction at a straight edge {Credit: University of Alberta}}
\end{figure}
\spec{recognise and use the equation $n\lambda = b sin\theta$ to locate the positions of destructive superposition for single slit diffraction, where $b$ is the width of the slit}
When an electromagnetic wave, such as light, travels through a single slit, it will diffract. Therefore light from the slit reaches many points on a screen placed at some distance from the slit.
Consider a point on the screen. Light will reach this point from all points within the slit. The distances travelled from various points within the slit to the point on the screen will be different, and so there will be a path and phase difference. Therefore, as we move along the screen, there will be points of constructive interference and points of destructive interference.
\begin{figure}[h!]
\centering
\includegraphics[width=10cm]{figs/chapt-7/singleslit.JPG}
\caption{Single slit diffraction {Credit: hyperphysics}}
\end{figure}
It can be shown that for a single slit of width $b$, the points of \textbf{destructive interference} will be at an angle $\theta$ given by the equation
$$n\lambda = b sin\theta$$
Here, $n$ refers to the order of the minimum being considered.
\spec{recognise and use the Rayleigh criterion $\theta \approx \frac{\lambda}{b}$ for resolving power of a single aperture, where $b$ is the width of the aperture}
As light travels through an instrument, such as the eye, or a telescope, it passes through a gap or aperture and will diffract. The diffraction pattern will depend on the shape of the aperture and the width.
If light from two different objects passes through the aperture, there will be two diffraction patterns that overlap. The Rayleigh criterion tells us the minimum angle between the two objects at which it is still possible to see them as separate. This is when the first diffraction minimum of one pattern coincides with the central maximum of another.
Working in radians, so that the approximation $\sin{\theta} \approx \theta$, then this minimum angle can be approximated by:
$$\theta \approx \frac{\lambda}{b}$$
\spec{describe the superposition pattern for a diffraction grating and for a double slit and use the equation $n\lambda = d \sin\theta$ to calculate the angles of the principal maxima}
\spec{use the equation $\lambda = \frac{ax}{D}$ for double-slit interference using light}
When light, or any other coherent waves, pass through a double slit, a diffraction pattern consisting of evenly spaced fringes is seen. This is due to the waves from each slit interfering with each other.
\begin{figure}[h!]
\centering
\includegraphics[width=10cm]{figs/chapt-7/double.JPG}
\caption{Double slit diffraction (credit:hyperphysics)}
\end{figure}
You can see that there is also a single slit envelope, which is much wider than the double slit pattern.
If the number of slits is increased, the pattern becomes more defined, and the fringes get narrower. Therefore for a diffraction grating, the pattern consists of sharp, evenly spaced peaks or bright spots.
If we consider two adjacent slits, you can see that for constructive interference to occur the following must be true:
\begin{equation}\label{dsintheta}
d \sin\theta = n\lambda
\end{equation}
$d$ is the distance between adjacent slits and $n$ is the order of the maxima that is being considered.
\begin{figure}[h!]
\centering
\includegraphics[width=10cm]{figs/chapt-7/diffractioneq.JPG}
\caption{Derivation of grating formula}
\end{figure}
Equation \ref{dsintheta} can be re-arranged to give
\begin{equation}
\sin\theta = \frac{n\lambda}{d}
\end{equation}
This formula can be used for any waves, where there is diffraction from more than one slit.
\newpage
\begin{figure}[h]
\centering
\begin{tikzpicture}
\draw[very thick] (0,-.5) -- (0,.5);
\draw[thick] (7,-3) -- (7,3);
\draw[<->] (0,-1) -- (7,-1) node[midway, below] {$D$};
\draw[dashed] (0,0)--(7,0);
\draw[red,thick,->] (0,0) -- (7,2);
\draw[<->] (7.5,0)--(7.5,2) node[midway, right] {$x$};
\end{tikzpicture}
\caption{The double slit pattern}
\label{doubleslitscreen}
\end{figure}
Now consider a double slit pattern, where the screen is now a distance $D$ away from the slits and the slit separation is $a$ instead of $d$. Bright fringes will be equally spaced on the screen and we can call the fringe separation $x$.
For the first maximum, $n=1$, the equation from before now becomes:
$$\sin\theta = \frac{\lambda}{a}$$
but from the diagram you can see that:
$$\tan\theta = \frac{x}{D}$$
If $\theta$ is small, then the small angle approximation can be used. This is true if $D$ is much larger than $a$.
$$\sin\theta \approx \tan\theta$$
$$\frac{\lambda}{a} = \frac{x}{D}$$
$$\lambda = \frac{ax}{D}$$
\tikzset{component/.style={draw,thick,circle,fill=white,minimum size =0.75 cm,inner sep=0pt}}
\chapter{A3 Quantum Theory}
\setcounter{spec}{0}
\section*{Candidates should be able to:}
\spec{recall that, for monochromatic light, the number of photoelectrons emitted per second is proportional to the light intensity and that emission occurs instantaneously}
\spec{recall that the kinetic energy of photoelectrons varies from zero to a maximum, and that the maximum kinetic energy depends on the frequency of the light, but not on its intensity}
\spec{recall that photoelectrons are not ejected when the light has a frequency lower than a certain threshold frequency which varies from metal to metal}
\rule{\textwidth}{0.1pt}
\spec{understand how the wave description of light fails to account for the observed features of the photoelectric effect and that the photon description is needed}
Each of the above features \emph{(a) - (c)} is discussed in turn below.
\begin{enumerate}[label=\emph{(\alph*)}]
\item In the wave description of light, an electron in the metal receives energy from the light that arrives continuously. An electron therefore gradually absorbs enough energy to escape from the surface of the metal, something which is not seen in practice. Additionally, increasing the intensity of a wave corresponds to increasing the amplitude of the oscillation. This would lead us to expect that increasing the intensity of light would give photoelectrons of a higher energy, rather than simply more of them.
The photon description of light accounts of both of these effects. When light arrives on the surface of the metal a single photon interacts with a single electron. Assuming the photon gives the electron enough energy to escape, the electron will leave the metal instantaneously. In the photon model, the intensity of the light is due to the number of photons arriving per second. Therefore if the intensity doubles, the number of photons doubles and the number of photoelectrons doubles.
\item When the photoelectrons leave the metal some of the photon energy is used to break away from the metal and the remainder goes into their kinetic energy. While different photoelectrons have different amounts of energy, there is a maximum kinetic energy the photoelectrons are found to have and this depends \emph{only} on the frequency of the incoming radiation.
The wave model of light would allow different electrons to absorb different amounts of energy and therefore this relationship would not be seen.
\item The energy from a photon of light is split between the energy required to escape the metal and the kinetic energy of the photoelectron. If the photon does not have enough energy to enable the electron to escape the metal then no emission of photoelectrons is seen.
The wave model would still allow emission as a single electron could absorb energy from the wave over a longer period of time. However, since there are so many electrons in the surface of the metal it is vanishingly unlikely that a single photoelectron will interact with two photons.
\end{enumerate}
\spec{recall that the absorption of a photon of energy can result in the emission of a photoelectron}
As described above.
\spec{recall and use $E = hf$}
The energy of a photon of light is related to the frequency of that radiation using the equation $E=hf$ where $h$ is Planck's Constant which has a value of \SI{6.626e-34}{\joule\second}.
\spec{understand and use the terms threshold frequency and work function and recall and use
\begin{equation}\label{eqn:photoelectric}
hf = \phi + \frac{1}{2}mv_{\text{max}}^2
\end{equation}}
\begin{description}
\item[Threshold Frequency, $f_0$.] This is the minimum frequency required for the emission of photoelectrons to occur. This varies from metal to metal.
\item[Work Function, $\phi$.] This is the energy required to remove an electron from the surface of the metal.
\end{description}
Equation \ref{eqn:photoelectric} expresses the sharing of the energy of the photon ($hf$) between the work function ($\phi$) and the kinetic energy of the photoelectron.
\spec{understand the use of stopping potential to find the maximum kinetic energy of photoelectrons and convert energies between joules and electron-volts}
We can measure the energy of the photoelectrons by placing a photocell in a circuit and using a potential difference to stop the flow of electrons.
\begin{figure}[h]
\begin{center}
\begin{circuitikz}
\draw (5,0) -- (5,3) to[pvsource] (0,3);
\draw (0,0) -- (0,1.5) node[component]{\si{\micro\ampere}} --(0,3);
\draw (0,0) to[battery] (5,0);
\draw (1,0) -- (1, -1.5) -- (2.5,-1.5) node[component]{V} -- (4,-1.5) -- (4,0);
\draw[->] (2.1,-0.5) -- (2.9,0.5);
\end{circuitikz}
\end{center}
\caption{Measuring stopping potential}
\label{fig:stopping-pot}
\end{figure}
Figure \ref{fig:stopping-pot} shows a simple set-up to measure the stopping potential for photoelectrons. Monochromatic light is shone on the photocell. Electrons leave the surface of the metal and travel around the circuit creating a small current. The variable power supply is gradually increased until no current flows through the circuit. At this point none of the electrons leaving the surface of the metal in the photocell have enough energy to cross the potential difference and create a current in the circuit. At this point the maximum energy of the photoelectrons can be equated to the energy required to cross a potential difference $V$:
\begin{equation}\label{eqn:photoelectron-stopping-pot}
\frac{1}{2}mv_{\text{max}}^2 = eV
\end{equation}
Since we are measuring the energies of electrons using potential differences, it makes sense to define a unit of energy in terms of these potential differences. Hence, 1 electronvolt is defined as the energy transferred by an electron moving through a potential difference of 1 volt.
\begin{equation}
\SI{1}{\electronvolt} = \SI{1.6e-19}{\joule}
\end{equation}
\spec{plot a graph of stopping potential against frequency to determine the Planck constant, work function and threshold frequency}
By repeating the experiment shown in Figure \ref{fig:stopping-pot} for different frequencies of light and measuring the stopping potential for each frequency we get the graph shown in Figure \ref{fig:milikan-results}.
\begin{figure}[ht]
\begin{center}
\begin{tikzpicture}
\draw[<->] (0,5) node[anchor=north east, align=right]{stopping\\potential\\/ \si{\volt}} -- (0,0) -- (7,0) node[anchor=north,align=left]{frequency\\/ \si{\hertz}};
\draw[thick] (2,0) node[anchor=north, align=left]{threshold\\frequency,\\$f_0$} -- (6.5,4.5);
\end{tikzpicture}
\end{center}
\caption{Stopping potential against threshold frequency}
\label{fig:milikan-results}
\end{figure}
Equation \ref{eqn:photoelectric} and \ref{eqn:photoelectron-stopping-pot} can be combined with and re-arranged to give
\begin{equation}\label{eqn:milikan}
V = \frac{h}{e}f - \frac{\phi}{e}
\end{equation}
Equation \ref{eqn:milikan} describes the linear relation seen on the graph in Figure \ref{fig:milikan-results}. The graph has a gradient of $\frac{h}{e}$ which enables the determination of the Planck Constant and the intercept with the x-axis gives the threshold frequency. The work function is simply the energy of a photon with the threshold frequency, i.e.
\begin{equation}
\phi = hf_0
\end{equation}
\spec{understand the need for a wave model to explain electron diffraction}
When electrons are fired at two closely spaced slits the result is entirely unlike what one would expect from a particle model. A particle model would predict that each electron would either go through one slit or the other, creating two regions at which electrons are found as shown in Figure \ref{fig:electron-diff-expected}.
\begin{figure}[h]
\begin{center}
\begin{tikzpicture}[scale=0.7]
\usetikzlibrary{fadings}
\draw (0,0) rectangle (1.5,3);
\draw (1.7,0) rectangle (2.7,3);
\draw (2.9,0) rectangle (4.4,3);
\filldraw[fill=black!40!white] (3.5,3.7) rectangle (7.5,6.7);
\draw[rotate around={-40:(-0,-1)}] (0,-1.5) rectangle (.4,-.5);
\fill[pattern=crosshatch dots, pattern color=white] (4.5,5.2) circle [x radius=0.4, y radius=1.5];
\fill[pattern=crosshatch dots, pattern color=white] (6.5,5.2) circle [x radius=0.4, y radius=1.5];
\end{tikzpicture}
\end{center}
\caption{Expected pattern for electron diffraction}
\label{fig:electron-diff-expected}
\end{figure}
However, this behaviour is not seen. Rather, electrons form an interference pattern similar to that seen for light, as shown in Figure \ref{fig:electron-diff-observed}.
\begin{figure}[!h]
\begin{center}
\begin{tikzpicture}[scale=0.7]
\usetikzlibrary{fadings}
\draw (0,0) rectangle (1.5,3);
\draw (1.7,0) rectangle (2.7,3);
\draw (2.9,0) rectangle (4.4,3);
\filldraw[fill=black!40!white] (3.5,3.7) rectangle (7.5,6.7);
\draw[rotate around={-40:(-0,-1)}] (0,-1.5) rectangle (.4,-.5);
\foreach \x in {4,4.5,...,7} {
\fill[pattern=crosshatch dots, pattern color=white] (\x,5.2) circle [x radius=0.15, y radius=1.5];
}
\end{tikzpicture}
\end{center}
\caption{Observed pattern for electron diffraction}
\label{fig:electron-diff-observed}
\end{figure}
The mystery here is how can single particles form an interference pattern? If electrons are fired through two slits one at a time then they initially appear to arrive randomly. As more and more arrive they fill in the interference pattern. We explain this by saying that the probability of their arrival is determined by a form of wave-mechanics and as particles arrive they fill in the probability pattern as shown in figure \ref{fig:electron-buildup}.
\begin{figure}
\begin{center}
\includegraphics[width=0.8\textwidth]{figs/chapt-9/electron-diff.jpg}
\end{center}
\caption{Build up of the interference pattern of electrons. \emph{Credit: Belsazar, Wikimedia Commons}}
\label{fig:electron-buildup}
\end{figure}
\clearpage
\spec{recognise and use
\begin{equation}\label{eqn:debroglie}
\lambda = \frac{h}{p}
\end{equation} for the de Broglie wavelength.}
In order to explain the wave-like nature of electrons we need to be able to assign them a wavelength. De Broglie's thesis is that \emph{all} particles have a wavelength which is defined in equation \ref{eqn:debroglie}. This brings wave-particle duality from photons and electrons to all particles. The natural question here is why isn't interference ordinarily observed? The answer is that the de Broglie wavelength for macroscopic objects is extremely small and therefore these objects behave as particles, travelling in straight lines and not undergoing interference.
\begin{example}
Electrons will be diffracted by crystal lattices if they have a wavelength of around \SI{0.1}{\nano\metre}. Calculate the speed and energy of such electrons.
\answer
The speed of these electrons can therefore be calculated as follows:
\[ \lambda = \frac{h}{p} = \frac{h}{mv} \]
\[ v = \frac{h}{m\lambda} = \SI{7.27e6}{\meter\per\second} \]
\[ E = \frac{1}{2}mv^2 = \SI{151}{\electronvolt} \]
\end{example}
\spec{explain atomic line spectra in terms of photon emission and transitions between discrete energy levels}
When a gas of atoms is given energy (e.g. by an electric field) that energy is emitted at electromagnetic waves at a few, specific frequencies. These frequencies are the same for every atom of a specific element; however they differ between elements. %A typical line spectrum is shown in Figure TODO.
The explanation for this behaviour is the quantisation of energy levels within the atom. Electrons are only able have certain (discrete) energies and when they move between these energies they emit (or absorb) photons of electromagnetic radiation. These photons have different frequencies depending on the amount of energy they carry away.
\spec{apply $E = hf$ to radiation emitted in a transition between energy levels}
When an electron in an atom falls from one energy level to a lower one the excess energy is emitted as a photon. The energy of this photon is equal to the energy lost.
\begin{example}
An electron in an atom falls from the $n=3$ state to the $n=2$ state as shown below. Calculate the wavelength of the photon emitted.
\begin{center}
\begin{tikzpicture}
\draw[thick, ->] (0,-5) -- (0,0) node[anchor=east] {$E / \si{\electronvolt}$};
\draw (0,-4.5) node[anchor=east] {\SI{-23.5}{\electronvolt}} -- (3,-4.5) node[anchor=west] {$n=1$};
\draw (0,-1.125) node[anchor=east] {\SI{-5.88}{\electronvolt}} -- (3,-1.125) node[anchor=west] {$n=2$};
\draw (0,-0.5) node[anchor=east] {\SI{-2.61}{\electronvolt}} -- (3,-.5) node[anchor=west] {$n=3$};
\draw[bend right, very thick, ->] (2,-.5) .. controls (2.1,-0.812) .. (2,-1.125);
\draw[decorate, decoration={coil, aspect=0}, ->] (2.1, -0.812) -- (5,-0.812) node[anchor=south]{$\gamma$};
\end{tikzpicture}
\end{center}
\answer
The difference in energy between the two levels is given by
\[ E = \left(\SI{-2.61}{\electronvolt}\right) - \left(\SI{-5.88}{\electronvolt}\right) = \SI{3.27}{\electronvolt} \]
The wavelength can be calculated using
\[ E = hf = \frac{hc}{\lambda} \]
\[ \lambda = \frac{hc}{E} = \frac{hc}{\SI{5.24e-19}{\joule}} = \SI{379}{\nano\meter} \]
\end{example}
\spec{show an understanding of the hydrogen line spectrum, photons and energy levels as represented by the Lyman, Balmer and Paschen series}
The example above shows a single transition between energy levels. In reality when an atom is excited it will emit photons corresponding to many transitions at once. The example of the Hydrogen atom is shown in Figure \ref{fig:hspec}. These transitions can be grouped into series based on which energy level the electron ends up in. Here there are three series shown which correspond to the Lyman (falling to $n=1$), Balmer (falling to $n=2$) and Paschen (falling to $n=3$) Series. For simplicity only six energy levels are shown but in reality each series has potentially infinitely many possible starting states, although most of them will have very similar energies (as the starting energy approaches zero).
\begin{figure}
\begin{center}
\begin{tikzpicture}
\draw[thick, ->] (0,-5.5 cm) -- (0,1) node[anchor=east] {$E / \si{\electronvolt}$};
\foreach \n/\y in {1/-5,2/-3,3/-1.5,4/-.8,5/-.3,6/0}{
\draw[thick] (0cm,\y) -- (7cm,\y) node[anchor=west]{$n=\n$};
}
\foreach \x/\y in {.5/-3,.7/-1.5,.9/-.8,1.1/-.3,1.3/0} {
\draw[-{Latex}] (\x,\y) -- (\x,-5);
}
\foreach \x/\y in {2.5/-1.5,2.7/-.8,2.9/-.3,3.1/0} {
\draw[-{Latex}] (\x,\y) -- (\x,-3);
}
\foreach \x/\y in {3.7/-.8,3.9/-.3,4.1/0} {
\draw[-{Latex}] (\x,\y) -- (\x,-1.5);
}
\draw[thick,dashed] (0cm,.3) node[anchor=east]{0} -- (7cm,.3) node[anchor=west] {$n=\infty$};
\draw (1.5,-4) node[anchor=west]{\emph{Lyman Series (UV)}};
\draw (3.5,-2.25) node[anchor=west]{\emph{Balmer Series (Visible)}};
\draw (4.5, -1.15) node[anchor=west]{\emph{Paschen Series (IR)}};
\end{tikzpicture}
\end{center}
\caption{Transitions corresponding to the Hydrogen spectrum}
\label{fig:hspec}
\end{figure}
\chapter{B1 Quality of Measurement}
\includepdf[pages=-,pagecommand={\thispagestyle{plain}},noautoscale=true,scale=0.9]{QoM-handbook.pdf}
\chapter{B2 Electricity}
\spec{discuss electrical phenomena in terms of electric charge}
\spec{describe electric current as the rate of flow of charge and recall and use $I = \Delta Q / \Delta t$}
Electric current is the flow of charge. The \emph{current} is defined as the rate of flow of charge. Conventional current flows from positive to negative. This current can consist of positive charges flowing from positive to negative or, more usually, negative charges flowing from negative to positive. The total current depends on the charge carrier density, the cross-sectional area, the charge on the carrier and the drift velocity of the carriers.
\spec{understand potential difference in terms of energy transfer and recall and use VQ = W}
When a charge moves through an electric field it gains or loses potential energy. The energy change per unit charge is defined as the potential difference.
\spec{recall and use the fact that resistance is defined by R = V/I and use this to calculate resistance variation for a variety of voltage-current characteristics}
As well as measuring resistance directly it can be found from a graph of V against I. \emph{Note: the resistance is defined as V/I at all points and is not equal to the gradient of a V/I graph except in the case that V is proportional to I}
\spec{define and use the concepts of emf and internal resistance and distinguish between emf and terminal potential difference}
\spec{derive, recall and use E = I(R + r ) and E = V + Ir}
A real cell or battery can be represented by a cell circuit symbol in series with a resistor. This resistance represents the \emph{internal resistance} of the cell and the fixed, theoretical potential difference across the cell symbol is the emf of the cell (the electromotive force provided). When a voltmeter is connected across the cell the terminal potential difference is measured.
\begin{figure}[h]
\begin{center}
\begin{circuitikz}
\draw (2,0) to[battery,l=$E$,o-] (4,0) to[R=$r$,-o] (6,0);
\end{circuitikz}
\end{center}
\caption{Terminal potential difference}
\end{figure}
In order to relate the terminal potential difference to the internal characteristics of the cell we must subtract the potential difference across the internal resistance from the emf. In symbols this gives:
$$ V = E - Ir $$
which can be re-arranged to give the formula above.
If our real cell is connected into a circuit with a load resistance $R$, the circuit in figure \ref{loaded-cell} is produced.
\begin{figure}[h]