-
Notifications
You must be signed in to change notification settings - Fork 1
/
slides_lecture00_main.tex
1290 lines (1071 loc) · 34.1 KB
/
slides_lecture00_main.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
\renewcommand{\prevlecture}{0}
\renewcommand{\thislecture}{0}
\renewcommand{\nextlecture}{1}
%
% Cover page
%
\title[PHYS 201]
{
\Huge{Electromagnetism}\\(PHYS 201)\\
}
\input{slides_author.tex}
\begin{frame}[plain]
\titlepage
\end{frame}
%
% general info, lecturer, office hrs, number of lectures etc
%
\begin{frame}{Credits}
{\scriptsize
This set of notes was written by
{\bf Professor Costas Andreopoulos},
for the delivery of the
PHYS201 (Electromagnetism I) module
at the University of Liverpool between 2014 and 2022.\\
\vspace{0.2cm}
The general structure of PHYS201 content
was established by {\bf Professor Christos Touramanis}
who was teachinhg this module prior to 2014.
\vspace{0.2cm}
The worked examples used in this set of notes come primarily from:
\begin{itemize}
\item J. Walker, D. Halliday and R. Resnick, Fundamentals of Physics, Wiley, 2014
\item D.J. Griffiths, `Introduction to Electrodynamics', Pearson, 2014
\item D. Giancoli, Physics for Scientists and Engineers, Pearson, 2014
\item L. Yung-Kuo, American Universities PhD Qualifying Questions and Solutions - Electromagnetism, World Scientific, 2005\\
\end{itemize}
\vspace{0.3cm}
\begin{block001}{Source and corrections}
The TeX source for these notes is maintained at:\\
{\color{blue} \url{https://github.com/candreop/PHYS201}}\\
\vspace{0.2cm}
For any typo or correction, please submit a GitHub issue, using
the following link: {\color{blue} \url{https://github.com/candreop/PHYS201/issues}}
\end{block001}
}
\end{frame}
\begin{frame}{Module coordinator}
\vspace{0.3cm}
\underline{Module organizer, lecture delivery and workshops:}\\
\vspace{0.2cm}
\begin{columns}
\begin{column}{0.20\textwidth}
\begin{center}
\includegraphics[width=0.95\textwidth]{./images/people/andreopoulos2}\\
\end{center}
\end{column}
\begin{column}{0.80\textwidth}
{\bf Professor Constantinos (Costas) Andreopoulos}\\
Chair of Experimental Particle Physics\\
\vspace{0.2cm}
{\color{blue} \url{http://costas.andreopoulos.eu}}\\
\end{column}
\end{columns}
\vspace{0.6cm}
\underline{Contact information:}\\
\vspace{0.2cm}
\begin{itemize}
{\small
\item Office: Oliver Lodge 316
\item E-Mail: constantinos.andreopoulos @nospam cern.ch
\item Tel: 01517-943201 (Liverpool), 01235-445091 (Rutherford Appleton Lab)
}
\end{itemize}
\end{frame}
%
%
%
\begin{frame}{Office hours}
My {\bf regular office hours} for face-to-face contact would be on:
\begin{itemize}
\item Thursday, 10:15 - 13:00, or
\item by appointment.
\end{itemize}
\vspace{0.3cm}
If you prefer the flexibility (and safety) of online meetings,
you are welcome to book an appointment for {\bf 1-on-1 Zoom meeting}:
\begin{itemize}
{\small
\item Request an appointment visiting this URL:
{\color{blue} \scriptsize \url{doodle.com/mm/costasandreopoulos/book-a-time}}
\item At the agreed appointment time, connect to this Zoom channel:\\
{\color{blue} \scriptsize \url{liverpool-ac-uk.zoom.us/j/93479179469?pwd=elBqaWM0anJhUmxEa29vTXpQWGNkdz09}}
}
\end{itemize}
\vspace{0.2cm}
\underline{Step-by-step instructions} can be found in the PHYS201 Canvas page.\\
\end{frame}
%
% Other module staff
%
\begin{frame}{Other module staff}
\underline{Staff contributing to face-to-face workshops:}\\
\vspace{0.2cm}
\begin{itemize}
\item Dr. Marco Roda, Marco.Roda @nospam liverpool.ac.uk
\item Prof. Christos Touramanis,touraman @nospam liverpool.ac.uk
\item Prof. Joost Vossebeld, vossebel @nospam liverpool.ac.uk
\end{itemize}
\vspace{0.4cm}
\underline{Demonstrators (with workshop script marking responsibilities):}\\
\vspace{0.2cm}
\begin{itemize}
\item Mr. Levon Abelian
\item Ms. Eloisa Arena
\item Mr. Thomas Beesley
\item Mr. Alessandro Biondini
\item Ms. Holly Tann
\end{itemize}
\end{frame}
% %
% %
% %
%
% \begin{frame}{Lectures / Workshops / Assessment}
%
% \begin{itemize}
% \item {\bf One 2-hour lecture per week}
% \begin{itemize}
% \item Every Wedn. 11:00-13:00 (in CTH-LTC)
% \item Normally, 11 lectures in 2019 + revision lecture in Jan 2020
% \end{itemize}
%
% \vspace{0.1cm}
% \begin{block001}{Notice}
% \begin{columns}
% \begin{column}{0.20\textwidth}
% \begin{center}
% \includegraphics[width=0.25\textwidth]{./images/icons/warning.png}\\
% \end{center}
% \end{column}
% \begin{column}{0.80\textwidth}
% {\small
% {\bf \underline{Lectures start promptly at 11 am}}\\
% Please be on time and avoid disrupting the class.
% }
% \end{column}
% \end{columns}
% \end{block001}
% \vspace{0.1cm}
%
% \item {\bf One 2-hour workshop per week}
% \begin{itemize}
% \item Every Thurs. 11:00-13:00 (in CTL-4-FLEX)
% \item 10 workshops in total - {\color{red} Note: Starting in week \#2, not tomorrow!}
% \end{itemize}
% \item Non-contact hours: 102 (average study time 8.5 hrs/week)
% \item Credits: 15
% \item Assessment:
% \begin{itemize}
% \item 2-hour examination (70\%)
% \item Workshops (30\%)
% \begin{itemize}
% \item 3 marked workshops (typically \#3, \#6, \#9) $\times$ 10\% each
% \end{itemize}
% \end{itemize}
% \end{itemize}
%
% \end{frame}
%
%
%
\begin{frame}{Blended delivery}
\begin{block001}{}
\begin{center}
{\bf \color{red} \scriptsize
The following might change in response to new COVID restrictions.\\
Please watch the PHYS201 Canvas module for updates.\\
}
\end{center}
\end{block001}
PHYS201:
\begin{itemize}
{\small
\item {\bf is taught in 12 weeks}
\vspace{0.1cm}
\item {\bf is organised for delivery in 12 x 2-hr lectures}
\begin{itemize}
{\small
\item lectures are given {\b online} on Zoom
\item single 2-hr lecture per week (Tuesdays at 10:00 am)
\item lectures start in week 1
}
\end{itemize}
\vspace{0.1cm}
\item {\bf provides 11 x 1-hour workshops ("feedback sessions")}
\begin{itemize}
{\small
\item workshops allow face-to-face interaction in {\em small} groups
\item held at various times and places (see your timetable)
\item for each group, a single 1-hr workshop per week
\item {\underline{workshops start in week 2}}
\begin{itemize}
{\scriptsize
\item workshops offset by +1 week wrt the corresponding lecture
\item plenty of time for new concepts to settle, before
attacking relevant problems
}
\end{itemize}
}
\end{itemize}
}
\end{itemize}
\begin{center}
{\bf
Please find a detailed PHYS201 weekly schedule on Canvas.\\
}
\end{center}
\end{frame}
%
%
%
\begin{frame}{More on workshops}
Out of the 11 workshops, the last one will be used for a revision.\\
\vspace{0.2cm}
On the first 10 workshops (starting on week 2):\\
\begin{itemize}
{\small
\item Problem sets published at the start of each week (9 am on Monday)
\item You have 1 week to work on your problems,
and you should submit your solutions by 10 am on the following Monday.
}
\end{itemize}
Each problem set will contain:\\
\begin{itemize}
{\small
\item A \underline{small number} of problems for {\bf summative assessment}
\begin{itemize}
{\scriptsize
\item Your mark on these problems contributes towards your final mark
}
\end{itemize}
\item A \underline{larger number of} problems for {\bf formative assessment}
\begin{itemize}
{\scriptsize
\item Your mark on these problems {\bf does not} contribute on your final mark.
\item Try as many as you can - the more you do, the more feedback you receive.
\item If pressed for time, you can choose problems on topics you stuggle the most.\\
}
\end{itemize}
}
\end{itemize}
Model solutions for the entire problem set will be provided.
\begin{itemize}
{\small
\item Solutions will be published at 10 am on Thursday,
{\bf 3 days after the nominal submission deadline}.\\
\item Summative coursework can not be accepted
after that point.\\
}
\end{itemize}
\end{frame}
%
%
%
\begin{frame}{Learning resources}
\begin{itemize}
{\small
\item Very {\bf detailed lectures notes}, including several worked problems
\begin{itemize}
{\scriptsize
\item As a baseline, can be your only reading (not recommended)
\item Full set already uploaded on Canvas {\color{green}$\checkmark$}
}
\end{itemize}
\item {\bf Recorded lectures from 2020-21} (material is unchanged)
\begin{itemize}
{\scriptsize
\item Full set already uploaded on Canvas {\color{green}$\checkmark$}
\item {\bf Optional}, but if you want to work at faster pace than scheduled you can!
}
\end{itemize}
\item {\bf Recordings of 2021-22 lectures}
\begin{itemize}
{\scriptsize
\item Will be uploaded to Canvas shortly after the corresponding lecture delivery
}
\end{itemize}
\item {\bf Extensive bibliography} and links to Liverpool library
\begin{itemize}
{\scriptsize
\item Already uploaded on Canvas {\color{green}$\checkmark$}
}
\end{itemize}
\item {\bf Additional reading and (external) bite-sized videos}
(more worked examples, experiments and demonstrations, relevant research etc)
\begin{itemize}
{\scriptsize
\item All links already available on Canvas {\color{green}$\checkmark$}
\item Clearly {\bf optional}, for those of you who want to go at greater depth
}
\end{itemize}
\item {\bf Detailed model solutions to workshop problems}
\begin{itemize}
{\scriptsize
\item Will be uploaded to Canvas soon after your submission (allowing for late ones)
}
\end{itemize}
}
\end{itemize}
\end{frame}
% %
% %
% %
%
% \begin{frame}{Workshops}
%
% \begin{itemize}
% {\small
% \item 10 workshops, 3 of which will be assessed
% \item Tentatively, workshops 3,6,9 will be assessed (will confirm at the lecture prior to the assessed workshop)
% \item I will collect your scripts only on the assessed workshops
% \item Standard penalty applies for late submissions
% \item Will aim to return the marked scripts within 2 weeks
% \item It is easy to cheat, and a few students choose to attend
% only the assessed ones. Make no mistake: You will regret this during the final exam.
% \vspace{0.2cm}
% \item Workshop tasks will be made available {\bf several days} in advance.
% \item Usually, too many tasks for 2 hours
% \begin{itemize}
% \item Do not want to hear any complaint!!
% \item You have ample time to work on the problems {\bf before} the workshop
% \item Work on the problems in advance, and use the workshop as an opportunity to get feedback
% (rather than trying frantically to solve the problems for the first time)
% \end{itemize}
% \item Model solutions and a marking scheme will be made available shortly after the workshop.
% }
% \end{itemize}
%
% \end{frame}
%
%
%
\begin{frame}{Feedback policy and opportunities}
{\color{red} \scriptsize Receiving feedback requires your active participation. In red, I highlight what you need to do!}\\
\vspace{0.1cm}
{\bf The would be numerous opportunities to receive feedback}:
\begin{itemize}
{\small
\item Verbal feedback in face-to-face workshops and online lectures
\begin{itemize}
{\scriptsize
\item {\color{red}Please try and speak up! In online Zoom sessions, raise your hand to speak (or just interrupt me), or use the Zoom chat.}
}
\end{itemize}
\item Written feedback on your workshop scripts
\begin{itemize}
{\scriptsize
\item Provided by demonstrators using model solutions, within $\sim$1 week from submission.
\item I will be working with demonstrators to ensure the quality of their feedback.
\item {\color{red}You can't receive feedback if you don't submit. Don't miss the deadlines!}
\item {\color{red}The more of the formative assessment you complete, the more feedback you get.}\\
}
\end{itemize}
\item Detailed model solutions and a marking scheme for each workshop
\begin{itemize}
{\scriptsize
\item The ultimate workshop feedback!
\item {\color{red}Study the published solutions, contrast with your own, and reflect.}
}
\end{itemize}
\item Feedback during online sessions
\begin{itemize}
{\scriptsize
\item Common issues / misconceptions seen in workshops,
will be addressed in lectures
}
\end{itemize}
\item More personalised feedback on 1-on-1 meetings (face to face, or on Zoom)
\begin{itemize}
{\scriptsize
\item {\color{red}On demand! Please come to my office or request an appointment.}
}
\end{itemize}
\item Canvas discussion boards, e-mail.
\begin{itemize}
{\scriptsize
\item {\color{red}Participate!}
}
\end{itemize}
}
\end{itemize}
\end{frame}
%
%
%
\begin{frame}{Assessment}
\begin{itemize}
\item {\bf 2-hour open book examination on January 2022} {\color{red}(Weight: 70\%)}
\vspace{0.2cm}
\item {\bf 10 summative assessments} (a small and
clearly designated subset of problems) {\bf in the context of weekly workshops} {\color{red}(Weight: 30\%)}
\begin{itemize}
\item Each of the 10 summative assessments contributes equally.
\item Workshop scripts will be marked by postgraduate demonstrators.
\item To ensure uniformity:
\begin{itemize}
{\small
\item A detailed marking scheme will be available to each demonstrator.
\item I will work closely with demonstrators to resolve marking issues.
\item I will sample and remark a random 10\% of all scripts.
}
\end{itemize}
\item Problems sets will be published at 9 am on Monday, in weeks 2-11, with a deadline a week later (10 am on next Monday).
\end{itemize}
\end{itemize}
\begin{block001}{Late penalties, deadline extensions, penalties for copying}
\begin{center}
{\tiny
Late penalties should be applied as specified in the Code of Practice on Assessment (see Section 6.2 of the main document).\\
The Code of Practice on Assessment does not provide for students to request extensions to coursework deadlines, unless such extensions are allowed under a student’s Learning Support Plan. Students submitting coursework late because of unforeseen medical or other extenuating circumstances may instead apply for exemption from late penalties.\\
Such exemption cannot be granted by individual Module Co-ordinators, but should be decided by Year Co-ordinators, who will work within agreed guidelines to ensure consistency. \\
Suspected cases of academic misconduct will be handled as described in Appendix L, in the Code of Practice on Assessment.\\
\url{www.liverpool.ac.uk/media/livacuk/tqsd/code-of-practice-on-assessment/code\_of\_practice\_on\_assessment.pdf}\\
}
\end{center}
\end{block001}
\end{frame}
%
%
%
\begin{frame}{What is examinable?}
\begin{itemize}
\item {\bf Everything that is in the PHYS201 slides \underline{is examinable}}
\begin{itemize}
\item Unless I explicitly state otherwise
\end{itemize}
\vspace{0.3cm}
\item {\bf Everything I discuss during the lectures \underline{is examinable}}\\
(whether it is in the PHYS201 slides or not)
\begin{itemize}
\item Unless I explicitly state otherwise
\end{itemize}
\vspace{0.3cm}
\item Most of what I will discuss is in the slides, but not everything!
\begin{itemize}
\item Do not skip the lectures!
\end{itemize}
\end{itemize}
% \begin{block001}{Notice}
% \begin{columns}
% \begin{column}{0.15\textwidth}
% \begin{center}
% \includegraphics[width=0.60\textwidth]{./images/icons/warning.png}\\
% \end{center}
% \end{column}
% \begin{column}{0.85\textwidth}
% {\small
% {\bf You should try and attend all lectures!}\\
% Stream Capture is available in this lecture theatre and used for all PHYS201 lectures.
% }
% \end{column}
% \end{columns}
% \end{block001}
\end{frame}
% %
% %
% %
%
% \begin{frame}{PHYS201 2019/20 calendar}
%
% PHYS201 calendar (until further notice):\\
% \begin{center}
% \includegraphics[width=0.95\textwidth]{./images/year_specific/phys201_calendar_201920_v1.png}\\
% \end{center}
%
% \begin{itemize}
% \item red circles: 2-hr lecture slots
% \item green circles: 2-hr workshop slots
% \item highlighted green circles: assessed workshops (tentative, may change)
% \end{itemize}
%
% \end{frame}
%
%
%
\begin{frame}{Aims of the course}
\begin{itemize}
{\small
\item
To introduce the fundamental concepts and principles of electrostatics, magnetostatics,
electromagnetism and Maxwell's equations, and electromagnetic waves.
\item
To introduce differential vector analysis in the context of electromagnetism.
\item
To introduce circuit principles and analysis (EMF, Ohm's law, Kirchhoff's rules, RC and RLC circuits)
\item
To introduce the formulation of Maxwell's equations in the presence of dielectric and magnetic materials.
\item
To develop the ability of students to apply Maxwell's equations to simple problems involving dielectric and
magnetic materials.
\item
To develop the concepts of field theories in Physics using electromagnetism as an example.
\item
To introduce light as an electromagnetic wave.
}
\end{itemize}
\vspace{0.2cm}
\noindent\rule{2cm}{0.4pt}\\
{\it \scriptsize Source: PHYS 201 module page in ORBIT.}
\end{frame}
%
% Syllabus
%
\begin{frame}{Syllabus}
\begin{itemize}
{\small
\item
Electric charge, Coulomb’s law, Charge density
\item
Electric field, Principle of Superposition
\item
Electric flux, Gauss’ law (integral form)
\item
Mutual potential energy of point charges, electric potential
\item
Calculating the field from the potential (gradient)
\item
Circulation, charges on conductors
\item
Gauss’ law in differential form (divergence)
\item
Circulation law in differential form (curl)
\item
Poisson’s and Laplace’s laws and solutions
\item
Electric dipole
\item
Electrostatics and conductors, method of images
\item
Gauss’ and Stokes’ theorems
\item
EMF, potential difference, electric current, current density
\item
Resistance, Ohm’s law
\item
Circuits, Kirkhhoff’s rules
}
\end{itemize}
\end{frame}
\begin{frame}{Syllabus cont'd}
\begin{itemize}
{\small
\item
Capacitance, calculation of capacitance for simple cases, RC circuits
\item
Dielectrics, polarization, electric displacement field
\item
Capacitance in the presence of dielectrics, force on a dielectric
\item
Magnetism, magnetic field, Biot-Savart law
\item
Lorentz force, force between currents
\item
Charged particle motion in magnetic field, velocity filter
\item
Magnetic dipole field, Ampere’s law in integral and differential forms
\item
Maxwell’s equations in vacuum for steady conditions
\item
Vector potential
\item
Magnetic materials, magnetization, magnetic field strength
\item
Maxwell’s equations in the presence of materials for steady conditions
\item
Motion of conductors inside magnetic fields, Faraday’s and Lenz’s laws
\item
Time-varying fields, Maxwell’s equations for the most general case
\item
Derivation of electromagnetic waves from Maxwell’s equations, speed of light
\item
LCR circuits
}
\end{itemize}
\vspace{0.2cm}
\noindent\rule{2cm}{0.4pt}\\
{\it \scriptsize Source: PHYS 201 module page in ORBIT.}
\end{frame}
%
%
%
\begin{frame}{Our approach will be calculus based}
\begin{itemize}
{
\item We will explore several {\bf interesting physics concepts}.
\item Our approach will be calculus-based.
% \begin{itemize}
% {
% \item for an interesting alternative approach, see here:\\
% {\color{blue} \tt http://videolectures.net/mit802s02\_electricity\_magnetism/}
% }
% \end{itemize}
\item The electromagnetic phenomena are described by a set of {\bf very beautiful
mathematical equations ({\em Maxwell} equations)}.
}
\end{itemize}
\begin{columns}
\begin{column}{0.45\textwidth}
\begin{center}
\includegraphics[width=0.80\textwidth]{./images/photos/bobby.png}\\
\end{center}
\end{column}
\begin{column}{0.55\textwidth}
{\small
Mathematical dexterity necessary to
\begin{itemize}
{ \small
\item sharpen your instinct
\item help you understand the connections between
different physics concepts
\item tackle practical problems
}
\end{itemize}
}
\end{column}
\end{columns}
\vspace{0.25cm}
{\bf Dust off your maths textbooks}! Its importance can not be overstated.\\
\end{frame}
%
%
%
\begin{frame}{Recommended textbooks - I}
Key texts:\\
\begin{itemize}
{\footnotesize
\item D.J. Griffiths, `Introduction to Electrodynamics', Pearson, 2014\\
{\scriptsize \color{blue} \url{https://library.liv.ac.uk/record=b4301805~S8}}
\item D. Fleisch, `A Student's Guide to Maxwell's Equations', Cambridge, 2008\\
{\scriptsize \color{blue} \url{https://library.liv.ac.uk/record=b2125525~S8}}\\
}
\end{itemize}
\end{frame}
\begin{frame}{Recommended textbooks - II}
Background reading:
\begin{itemize}
{\footnotesize
\item The Feynman Lectures in Physics\\
{\scriptsize \color{blue} \url{http://www.feynmanlectures.caltech.edu}}
\item J.D. Jackson, Classical Electrodynamics, Wiley, 1998
{\scriptsize \color{blue} \url{https://library.liv.ac.uk/record=b1783103~S8}}
\item L.S. Grant and W.R. Phillips, `Electromagnetism', Wiley, 2013\\
{\scriptsize \color{blue} \url{https://library.liv.ac.uk/record=b3130060~S8}}
\item J. Walker, D. Halliday and R. Resnick, Fundamentals of Physics, Wiley, 2014\\
{\scriptsize \color{blue} \url{https://library.liv.ac.uk/record=b2341872~S8}}
\item D. Giancoli, Physics for Scientists and Engineers, Pearson, 2014\\
{\scriptsize \color{blue} \url{https://library.liv.ac.uk/record=b2258154~S8}}
\item D. Fleisch, `A Student's Guide to Vectors and Tensors', Cambridge, 2011\\
{\scriptsize \color{blue} \url{https://library.liv.ac.uk/record=b2844947~S8}}
\item G. Arfken, `Mathematical methods for physicists', Oxford, 2012\\
{\scriptsize \color{blue} \url{https://library.liv.ac.uk/record=b2638836~S8}}
\item J.C. Maxwell, Treatise on Electricity and Magnetism, 1873
{\scriptsize \color{blue} \url{https://en.wikisource.org/wiki/A_Treatise_on_Electricity_and_Magnetism}}\\
}
\end{itemize}
\end{frame}
%
%
%
\begin{frame}{Slides / Handouts}
There are 4 types of slides:
{\color{darkpowderblue} Blue}, {\color{dBG1} Red},
{\color{eBG1} Orange}, and {\color{pBG1} Green}.
\begin{columns}
\begin{column}{0.50\textwidth}
\begin{center}
\includegraphics[width=0.7\textwidth]{./images/example_slides/main.png}\\
\end{center}
\end{column}
\begin{column}{0.50\textwidth}
\begin{center}
\includegraphics[width=0.7\textwidth]{./images/example_slides/reminder.png}\\
\end{center}
\end{column}
\end{columns}
\begin{columns}
\begin{column}{0.50\textwidth}
\begin{center}
\includegraphics[width=0.7\textwidth]{./images/example_slides/worked_example.png}\\
\end{center}
\end{column}
\begin{column}{0.50\textwidth}
\begin{center}
\includegraphics[width=0.7\textwidth]{./images/example_slides/python.png}\\
\end{center}
\end{column}
\end{columns}
\end{frame}
%
%
%
\begin{frame}{"Blue slides"}
\begin{columns}
\begin{column}{0.30\textwidth}
\begin{center}
The main body of each PHYS201 lecture.\\
\end{center}
\end{column}
\begin{column}{0.70\textwidth}
\begin{center}
\includegraphics[width=0.99\textwidth]{./images/example_slides/main.png}\\
\end{center}
\end{column}
\end{columns}
\vspace{0.2cm}
\begin{center}
{\bf Please check Canvas regularly for corrections and updates}.\\
\end{center}
\end{frame}
%
%
%
\begin{frame}{"Red slides"}
\begin{columns}
\begin{column}{0.30\textwidth}
\begin{center}
Things you should already know / {\bf reminders}.\\
\vspace{0.2cm}
This material is here for easy reference!
Typically, I will skip most of these slides during the lecture.\\
\vspace{0.2cm}
Please study the reminders in advance of each lecture.\\
\end{center}
\end{column}
\begin{column}{0.70\textwidth}
\begin{center}
\includegraphics[width=0.99\textwidth]{./images/example_slides/reminder.png}\\
\end{center}
\end{column}
\end{columns}
\vspace{0.2cm}
\begin{center}
{\bf Please check Canvas regularly for corrections and updates}.\\
\end{center}
\end{frame}
%
%
%
\begin{frame}{"Orange slides"}
\begin{columns}
\begin{column}{0.30\textwidth}
\begin{center}
Questions and worked examples.\\
\vspace{0.2cm}
Will study as many as we have time for.
More may be added in the digital version to address specific class needs.\\
\end{center}
\end{column}
\begin{column}{0.70\textwidth}
\begin{center}
\includegraphics[width=0.99\textwidth]{./images/example_slides/worked_example.png}\\
\end{center}
\end{column}
\end{columns}
\vspace{0.2cm}
\begin{center}
{\bf Please check Canvas regularly for corrections and updates}.\\
\end{center}
\end{frame}
%
%
%
\begin{frame}{"Green slides"}
\begin{columns}
\begin{column}{0.52\textwidth}
{\small
Optional tasks (1/lecture) for which the analytical solution is too complex\\
\vspace{0.2cm}
Solve numerically, using C++/ROOT, Python or any other language (*)\\
\vspace{0.2cm}
Will be adding tasks, along with helpful hints, throughout the semester.\\
\vspace{0.2cm}
No marks awarded (optional tasks) but:
\begin{itemize}
{\scriptsize
\item Improve your understanding of concepts!
\item Gain experience in scientific computing!\\
}
\end{itemize}
}
\end{column}
\begin{column}{0.48\textwidth}
\begin{center}
\includegraphics[width=0.99\textwidth]{./images/example_slides/python.png}\\
\end{center}
\end{column}
\end{columns}
\end{frame}
%
% -------------------------------------------------------------------------------
%
\begin{frame}{}
\begin{center}
{\Large Why is Electromagnetism one of your core modules?}
\end{center}
\end{frame}
\begin{frame}{Electromagnetism is one of the fundamental forces}
\underline{Main goal of physics}:
Study of the {\bf fundamental constituents of matter and of the forces between them}.\\
\vspace{0.2cm}
\begin{columns}
\begin{column}{0.60\textwidth}
\begin{center}
\includegraphics[width=0.98\textwidth]{./images/schematics/fundamental_forces.png}\\
\end{center}
\end{column}
\begin{column}{0.40\textwidth}
\begin{itemize}
{\small
\item Strong nuclear: keeps the atomic nucleus together
\item {\color{magenta}Electromagnetism: the subject of this course.}
\item Weak nuclear: responsible for nuclear $\beta$ decays
\item Gravity: Pins you down on the Earth and rotates you around the Sun
}
\end{itemize}
\end{column}
\end{columns}
\end{frame}
%
%
%
\begin{frame}{Electromagnetism}
\begin{columns}
\begin{column}{0.33\textwidth}