-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathLO_physics.yml
1601 lines (1553 loc) · 97.3 KB
/
LO_physics.yml
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
Math:
Topic Outcome:
- Use proportional reasoning
- Paste un-numbered outcome here
Graphs:
- Calculate the total displacement given the position as a function of time.{84}
- Determine the total distance traveled.{85}
- Calculate the average velocity given the displacement and elapsed time.{86}
- Calculate the average acceleration between two points in time.{97}
- Find instantaneous acceleration at a specified time on a graph of velocity versus time.{101}
- Create and interpret graphs of potential energy.{279}
- Analyze elasticity and plasticity on a stress-strain diagram.{439}
- Qualitatively analyze position vs time graphs
- Qualitatively analyze velocity vs time graphs
- Qualitatively analyze acceleration vs time graphs
- Qualitatively analyze position(x) vs position(y) graphs
Significant Figures:
- Determine the correct number of significant figures for the result of a computation.{33}
Order of Magnitude:
- Calculate the order of magnitude of a quantity.{8}
- Estimate the values of physical quantities.{29}
Algebra:
Subtopic Outcome:
- Describe how derived units are created from base units.{15}
- Apply analytical methods of vector algebra to find resultant vectors and to solve vector equations for unknown vectors.{68}
- Determine the scalar product of two vectors.{75}
- Determine the vector product of two vectors.{76}
- Solve an inequality
- Isolate a variable
- Solve a rational equation
- Use the quadratic formula to solve a quadratic equation
- Simplify a rational expression
Dimensional Analysis:
- Find the dimensions of a mathematical expression involving physical quantities.{24}
- Determine whether an equation involving physical quantities is dimensionally consistent.{25}
Limits:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Derivatives:
Subtopic Outcome:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Slope:
- Calculate the average velocity given the displacement and elapsed time.{86}
- Calculate the average acceleration between two points in time.{97}
- Calculate the instantaneous acceleration given the functional form of velocity.{98}
- Find instantaneous acceleration at a specified time on a graph of velocity versus time.{101}
- Calculate the velocity vector given the position vector as a function of time.{128}
- Calculate the average velocity in multiple dimensions.{129}
Product rule:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Quotient Rule:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Power Rule:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Chain rule:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Max/Min:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Increasing/Decreasing Test:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
First Derivative Test:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Second Derivative Test:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Integrals:
Subtopic Outcome:
- Derive the kinematic equations for constant acceleration using integral calculus.{117}
- Find the functional form of velocity versus time given the acceleration function.{119}
- Find the functional form of position versus time given the velocity function.{120}
Area Under Curve:
- Determine the total distance traveled.{85}
- Relate the work done during a time interval to the power delivered.{254}
Area Between Two Curves:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Substitution Rule:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Integration by Parts:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Trigonometric Substitution:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Partial Fractions:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Exponential Functions:
Subtopic Outcome:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Derivative:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Integral:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Logarithmic Functions:
Subtopic Outcome:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Derivative:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Integral:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
System of Equations:
Subtopic Outcome:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Set Up:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Solve:
- Solve a system of two equations
- Paste un-numbered outcome here
Quadratic formula:
Subtopic Outcome:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Non-Physical Roots:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Polar Coordinates:
- Explain the connection between polar coordinates and Cartesian coordinates in a plane.{64}
- Express a vector in polar form.
Conics:
- Describe the conic sections and how they relate to orbital motion.{469}
Diagnostic:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
# Topic Break
Physics in General:
Topic Outcome:
- Describe the scope of physics.{7}
- Describe the relationships among models, theories, and laws.{10}
- Compare measurable length, mass, and timescales quantitatively.{9}
- Apply physical principles to real world application
Units:
- Describe how SI base units are defined.{14}
- Describe how derived units are created from base units.{15}
- Express quantities given in SI units using metric prefixes.{16}
- Use conversion factors to express the value of a given quantity in different units.{20}
- Express quantities given in SI units using metric prefixes.{700}
- Convert temperatures between the Celsius, Fahrenheit, and Kelvin scales.{694}
Solving Problems in Physics:
- Describe the process for developing a problem-solving strategy.{42}
- Explain how to find the numerical solution to a problem.{43}
- Summarize the process for assessing the significance of the numerical solution to a problem.{44}
Uncertainty:
- Describe the relationship between the concepts of accuracy, precision, uncertainty, and discrepancy.{34}
- Calculate the percent uncertainty of a measurement, given its value and its uncertainty.{36}
- Determine the uncertainty of the result of a computation involving quantities with given uncertainties.{37}
# Topic Break
Vectors:
Topic Outcome:
- Describe the difference between vector and scalar quantities.{50}
- Distinguish between a vector equation and a scalar equation.{55}
- Interpret physical situations in terms of vector expressions.{70}
- Explain the difference between the scalar product and the vector product of two vectors.{74}
- Describe how the products of vectors are used in physics.{77}
Notation:
- Describe vectors in two and three dimensions in terms of their components, using unit vectors along the axes.{59}
- Paste un-numbered outcome here
Scalars:
- Distinguish between the vector components of a vector and the scalar components of a vector.{61}
- Paste un-numbered outcome here
Properties of Vectors:
- Identify the magnitude and direction of a vector.{51}
- Explain the effect of multiplying a vector quantity by a scalar.{52}
- Explain how the magnitude of a vector is defined in terms of the components of a vector.{62}
Coordinate System and Vector Components:
- Identify the magnitude and direction of a vector.{51}
- Explain the geometric construction for the addition or subtraction of vectors in a plane.{54}
- Describe how one-dimensional vector quantities are added or subtracted.{53}
- Describe vectors in two and three dimensions in terms of their components, using unit vectors along the axes.{59}
- Distinguish between the vector components of a vector and the scalar components of a vector.{61}
- Explain how the magnitude of a vector is defined in terms of the components of a vector.{62}
- Identify the direction angle of a vector in a plane.{63}
- Explain the connection between polar coordinates and Cartesian coordinates in a plane.{64}
Vector Algebra:
- Apply analytical methods of vector algebra to find resultant vectors and to solve vector equations for unknown vectors.{68}
- Interpret physical situations in terms of vector expressions.{70}
Dot Product:
- Determine the scalar product of two vectors.{75}
- Paste un-numbered outcome here
Cross Product:
- Determine the vector product of two vectors.{76}
- Paste un-numbered outcome here
# Topic Break
Kinematics(1D):
Topic Outcome:
- Define position, displacement, and distance traveled.{83}
- Identify which equations of motion are to be used to solve for unknowns.{105}
Motion Diagrams:
- Understand and interpret motion diagrams
- Understand the relationship between position, velocity, and acceleration using diagrams of motion
- Construct the motion diagram for a given motion, showing properly-spaced dots, velocity vectors, and acceleration vectors.
Position:
- Find the functional form of position versus time given the velocity function.{120}
- Determine the total distance traveled.{85}
- Qualitatively analyze position vs time graphs
- Qualitatively analyze position(x) vs position(y) graphs
- Paste un-numbered outcome here
Displacement:
- Calculate the total displacement given the position as a function of time.{84}
- Find the functional form of displacement versus time given the velocity function.
- Paste un-numbered outcome here
Speed:
- Calculate the speed given the instantaneous velocity.{93}
- Paste un-numbered outcome here
Velocity:
Subtopic Outcome:
- Explain the difference between average velocity and instantaneous velocity.{90}
- Describe the difference between velocity and speed.{91}
- Explain the vector nature of instantaneous acceleration and velocity.{99}
- Find the functional form of velocity versus time given the acceleration function.{119}
- Qualitatively analyze velocity vs time graphs
Average:
- Calculate the average velocity given the displacement and elapsed time.{86}
- Paste un-numbered outcome here
Instantaneous:
- Calculate the instantaneous velocity given the mathematical equation for the velocity.{92}
- Paste un-numbered outcome here
Acceleration:
Subtopic Outcome:
- Explain the difference between average acceleration and instantaneous acceleration.{100}
- Explain the vector nature of instantaneous acceleration and velocity.{99}
- Qualitatively analyze acceleration vs time graphs
Average:
- Calculate the average acceleration between two points in time.{97}
- Paste un-numbered outcome here
Instantaneous:
- Calculate the instantaneous acceleration given the functional form of velocity.{98}
- Find instantaneous acceleration at a specified time on a graph of velocity versus time.{101}
Uniform Motion:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Non-Uniform Motion (Constant Acceleration):
- Use appropriate equations of motion to solve a two-body pursuit problem.{106}
- Derive the kinematic equations for constant acceleration using integral calculus.{117}
- Use the integral formulation of the kinematic equations in analyzing motion.{118}
Free Fall:
- Use the kinematic equations with the variables y and g to analyze free-fall motion.{110}
- Describe how the values of the position, velocity, and acceleration change during a free fall.{111}
- Solve for the position, velocity, and acceleration as functions of time when an object is in a free fall.{112}
# Topic Break
Kinematics(2D and 3D):
Topic Outcome:
- Use the one-dimensional motion equations along perpendicular axes to solve a problem in two or three dimensions with a constant acceleration.{135}
- Paste un-numbered outcome here
Displacement Vector:
- Calculate position vectors in a multidimensional displacement problem.{126}
- Solve for the displacement in two or three dimensions.{127}
Velocity Vector:
- Calculate the velocity vector given the position vector as a function of time.{128}
- Calculate the average velocity in multiple dimensions.{129}
Acceleration Vector:
- Calculate the acceleration vector given the velocity function in unit vector notation.{133}
- Describe the motion of a particle with a constant acceleration in three dimensions.{134}
- Express the acceleration in unit vector notation.{136}
Projectile Motion:
- Use one-dimensional motion in perpendicular directions to analyze projectile motion.{140}
- Calculate the range, time of flight, and maximum height of a projectile that is launched and impacts a flat, horizontal surface.{141}
- Find the time of flight and impact velocity of a projectile that lands at a different height from that of launch.{142}
- Calculate the trajectory of a projectile.{143}
Uniform Circular Motion:
Subtopic Outcome:
- Use the equations of circular motion to find the position, velocity, and acceleration of a particle executing circular motion.{148}
-
Velocity:
- Explain how angular velocity is related to tangential speed.{339}
- Calculate the instantaneous angular velocity given the angular position function.{340}
Acceleration:
- Solve for the centripetal acceleration of an object moving on a circular path.{147}
- Paste un-numbered outcome here
Non-Uniform Circular Motion:
Subtopic Outcome:
- Explain the differences between centripetal acceleration and tangential acceleration resulting from nonuniform circular motion.{149}
- Evaluate centripetal and tangential acceleration in nonuniform circular motion, and find the total acceleration vector.{150}
- Find the angular velocity and angular acceleration in a rotating system.{341}
Angular Acceleration:
- Calculate the average angular acceleration when the angular velocity is changing.{342}
- Calculate the instantaneous angular acceleration given the angular velocity function.{343}
Relative Motion:
- Explain the concept of reference frames.{154}
- Write the position and velocity vector equations for relative motion.{155}
- Draw the position and velocity vectors for relative motion.{156}
- Analyze one-dimensional and two-dimensional relative motion problems using the position and velocity vector equations.{157}
Constrained Motion of Connected Particles:
- Analyze a system of connected particles to solve for the velocity and acceleration of one of the particles.
# Topic Break
Force:
Topic Outcome:
- Distinguish between kinematics and dynamics.{163}
- Understand the definition of force.{164}
- Define the SI unit of force, the newton.{166}
- Describe force as a vector.{167}
- Apply Newton's laws of motion to solve problems involving a variety of forces.{199}
- Apply problem-solving techniques to solve for quantities in more complex systems of forces.{210}
- Use concepts from kinematics to solve problems using Newton's laws of motion.{211}
- Solve more complex equilibrium problems.{212}
- Solve more complex acceleration problems.{213}
- Apply calculus to more advanced dynamics problems.{214}
- Calculate force given pressure and area.{497}
Types of Forces:
- Distinguish between external and internal forces.{179}
- Identify the action and reaction forces in different situations.{192}
- Define normal and tension forces.{197}
- Distinguish between real and fictitious forces.{198}
- Define buoyant force.{514}
Free Body Diagrams:
- Identify simple free-body diagrams.{165}
- Explain the rules for drawing a free-body diagram.{203}
- Construct free-body diagrams for different situations.{204}
- Draw a free-body diagram for a rigid body acted on by forces.{421}
- Set up a free-body diagram for an extended object in static equilibrium.{427}
Newton's First Law:
- Describe Newton's first law of motion.{171}
- Recognize friction as an external force.{172}
- Define inertia.{173}
- Identify inertial reference frames.{174}
- Calculate equilibrium for a system.{175}
Newton's Second Law:
- Distinguish between external and internal forces.{179}
- Describe Newton's second law of motion.{180}
- Explain the dependence of acceleration on net force and mass.{181}
- Apply Newton's second law to develop the equation for centripetal force.{225}
Newton's Third Law:
Subtopic Outcome:
- State Newton's third law of motion.{191}
- Identify the action and reaction forces in different situations.{192}
- Apply Newton's third law to define systems and solve problems of motion.{193}
Ropes and Pulleys:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Equilibrium:
- Calculate equilibrium for a system.{175}
- Solve more complex equilibrium problems.{212}
Mass, Weight and Gravity:
- Explain the difference between mass and weight.{185}
- Explain why falling objects on Earth are never truly in free fall.{186}
- Describe the concept of weightlessness.{187}
Friction:
- Recognize friction as an external force.{172}
- Describe the general characteristics of friction.{218}
- List the various types of friction.{219}
- Calculate the magnitude of static and kinetic friction, and use these in problems involving Newton's laws of motion.{220}
- Calculate the static friction force associated with rolling motion without slipping.{395}
Drag:
Subtopic Outcome:
- Express the drag force mathematically.{230}
- Describe applications of the drag force.{231}
Terminal Velocity:
- Define terminal velocity.{232}
- Determine an object's terminal velocity given its mass.{233}
Projectile Motion with Drag:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Springs:
Subtopic Outcome:
- Define the units of the spring constant
- Paste un-numbered outcome here
Hooke's Law:
- Define Hooke's Law
- Use Hooke's Law to determine the force, displacement from equilibrium, or spring constant of a system
Dynamics of Circular Motion:
Subtopic Outcome:
- Explain the equation for centripetal acceleration.{224}
- Use circular motion concepts in solving problems involving Newton's laws of motion.{226}
Centripetal Force:
- Apply Newton's second law to develop the equation for centripetal force.{225}
- Paste un-numbered outcome here
Uniform:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Non-Uniform:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
# Topic Break
Momentum and Impulse:
Topic Outcome:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Momentum:
Subtopic Outcome:
- Explain what momentum is, physically.{291}
- Calculate the momentum of a moving object.{292}
- Express momentum as a two-dimensional vector.{317}
- Calculate momentum in two dimensions, as a vector quantity.{319}
- Relate momentum to force.
- Determine the net force on an object from the momentum as a function of time
- Define momentum
Linear:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Angular:
- Describe the vector nature of angular momentum.{400}
- Find the total angular momentum and torque about a designated origin of a system of particles.{401}
- Calculate the angular momentum of a rigid body rotating about a fixed axis.{402}
- Use conservation of angular momentum in the analysis of objects that change their rotation rate.{404}
Impulse:
- Explain what an impulse is, physically.{296}
- Describe what an impulse does.{297}
- Relate impulses to collisions.{298}
- Apply the impulse-momentum theorem to solve problems.{299}
- Relate the impulse delivered to an object to the average applied force and duration of the force.
Collisions:
Subtopic Outcome:
- Identify the type of collision.{311}
- Correctly label a collision as elastic or inelastic.{312}
- Use kinetic energy along with momentum and impulse to analyze a collision.{313}
Elastic:
- Solve problems involving the distance and time between a gas molecule’s collisions.{732}
- Paste un-numbered outcome here
Inelastic:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Explosions:
- Describe the application of conservation of momentum when the mass changes with time, as well as the velocity.{330}
- Calculate the speed of a rocket in empty space, at some time, given initial conditions.{331}
- Calculate the speed of a rocket in Earth's gravity field, at some time, given initial conditions.{332}
Conservation of Momentum:
Subtopic Outcome:
- Explain the meaning of "conservation of momentum".{303}
- Correctly identify if a system is, or is not, closed.{304}
- Define a system whose momentum is conserved.{305}
- Mathematically express conservation of momentum for a given system.{306}
- Calculate an unknown quantity using conservation of momentum.{307}
- Write equations for momentum conservation in component form.{318}
- Describe the application of conservation of momentum when the mass changes with time, as well as the velocity.{330}
- Use conservation of momentum and conservation of mechanical energy to solve an elastic collision problem.
- Use conservation of momentum to solve an elastic collision problem.
- Use conservation of momentum to solve a problem.
Linear:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Angular:
- Use conservation of angular momentum in the analysis of objects that change their rotation rate.{404}
- Apply conservation of angular momentum to determine the angular velocity of a rotating system in which the moment of inertia is changing.{408}
- Explain how the rotational kinetic energy changes when a system undergoes changes in both moment of inertia and angular velocity.{409}
- Describe how orbital velocity is related to conservation of angular momentum.{470}
2D Collisions:
- Express momentum as a two-dimensional vector.{317}
- Write equations for momentum conservation in component form.{318}
- Calculate momentum in two dimensions, as a vector quantity.{319}
Precession:
- Describe the physical processes underlying the phenomenon of precession.{413}
- Calculate the precessional angular velocity of a gyroscope.{414}
# Topic Break
Energy:
Topic Outcome:
- Describe energy transformations and conversions in general terms.{284}
- Explain what it means for an energy source to be renewable or nonrenewable.{285}
Kinetic Energy:
- Calculate the kinetic energy of a particle given its mass and its velocity or momentum.{244}
- Evaluate the kinetic energy of a body, relative to different frames of reference.{245}
- Describe the differences between rotational and translational kinetic energy.{358}
- Explain how the rotational kinetic energy changes when a system undergoes changes in both moment of inertia and angular velocity.{409}
- Calculate the kinetic energy of a simple pendulum.
- Define kinetic energy
Potential Energy:
Subtopic Outcome:
- Relate the difference of potential energy to work done on a particle for a system without friction or air drag.{261}
- Explain the meaning of the zero of the potential energy function for a system.{262}
- Create and interpret graphs of potential energy.{279}
- Explain the connection between stability and potential energy.{280}
Gravitational Potential Energy:
- Calculate and apply the gravitational potential energy for an object near Earth's surface and the elastic potential energy of a mass-spring system.{263}
- Determine changes in gravitational potential energy over great distances.{457}
- Apply conservation of energy to determine escape velocity.{458}
- Determine whether astronomical bodies are gravitationally bound.{459}
- Calculate the gravitational potential energy of a simple pendulum.
Elastic Potential Energy:
- Calculate and apply the gravitational potential energy for an object near Earth's surface and the elastic potential energy of a mass-spring system.{263}
- Paste un-numbered outcome here
Energy Diagrams:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Conservation of Energy:
Subtopic Outcome:
- Formulate the principle of conservation of mechanical energy, with or without the presence of non-conservative forces.{274}
- Use the conservation of mechanical energy to calculate various properties of simple systems.{275}
- Use conservation of mechanical energy to analyze systems undergoing both rotation and translation.{361}
- Apply conservation of energy to determine escape velocity.{458}
- Explain how Bernoulli's equation is related to the conservation of energy.{528}
Conservative Forces:
- Characterize a conservative force in several different ways.{267}
- Specify mathematical conditions that must be satisfied by a conservative force and its components.{268}
- Relate the conservative force between particles of a system to the potential energy of the system.{269}
- Calculate the components of a conservative force in various cases.{270}
Non-Conservative Forces:
- Calculate the angular velocity of a rotating system when there are energy losses due to nonconservative forces.{362}
- Paste un-numbered outcome here
# Topic Break
Work:
Topic Outcome:
- Represent the work done by any force.{239}
- Evaluate the work done for various forces.{240}
Work-Energy Theorem:
- Apply the work-energy theorem to find information about the motion of a particle, given the forces acting on it.{249}
- Use the work-energy theorem to find information about the forces acting on a particle, given information about its motion.{250}
- Use the work-energy theorem to analyze rotation to find the work done on a system when it is rotated about a fixed axis for a finite angular displacement.{383}
- Solve for the angular velocity of a rotating rigid body using the work-energy theorem.{384}
Power:
- Relate the work done during a time interval to the power delivered.{254}
- Find the power expended by a force acting on a moving body.{255}
Work For Rotational Motion:
- Use the work-energy theorem to analyze rotation to find the work done on a system when it is rotated about a fixed axis for a finite angular displacement.{383}
- Paste un-numbered outcome here
Power For Rotational Motion:
- Find the power delivered to a rotating rigid body given the applied torque and angular velocity.{385}
- Paste un-numbered outcome here
# Topic Break
Rotational Motion:
Topic Outcome:
- Derive the kinematic equations for rotational motion with constant angular acceleration.{347}
- Select from the kinematic equations for rotational motion with constant angular acceleration the appropriate equations to solve for unknowns in the analysis of systems undergoing fixed-axis rotation.{348}
- Use solutions found with the kinematic equations to verify the graphical analysis of fixed-axis rotation with constant angular acceleration.{349}
Relating Rotational to Translational Motion:
- Given the linear kinematic equation, write the corresponding rotational kinematic equation.{353}
- Calculate the linear distances, velocities, and accelerations of points on a rotating system given the angular velocities and accelerations.{354}
- Summarize the rotational variables and equations and relate them to their translational counterparts.{386}
Rolling Motion:
Subtopic Outcome:
- Use energy conservation to analyze rolling motion.{396}
- Paste un-numbered outcome here
Without Slipping:
- Describe the physics of rolling motion without slipping.{392}
- Explain how linear variables are related to angular variables for the case of rolling motion without slipping.{393}
- Find the linear and angular accelerations in rolling motion with and without slipping.{394}
- Calculate the static friction force associated with rolling motion without slipping.{395}
With Slipping:
- Find the linear and angular accelerations in rolling motion with and without slipping.{394}
- Paste un-numbered outcome here
Center of Mass:
- Explain the meaning and usefulness of the concept of center of mass.{323}
- Calculate the center of mass of a given system.{324}
- Apply the center of mass concept in two and three dimensions.{325}
- Calculate the velocity and acceleration of the center of mass.{326}
Rotational Energy:
Subtopic Outcome:
- Describe the differences between rotational and translational kinetic energy.{358}
- Use conservation of mechanical energy to analyze systems undergoing both rotation and translation.{361}
- Calculate the angular velocity of a rotating system when there are energy losses due to nonconservative forces.{362}
Moment of Inertia:
- Define the physical concept of moment of inertia in terms of the mass distribution from the rotational axis.{359}
- Explain how the moment of inertia of rigid bodies affects their rotational kinetic energy.{360}
- Calculate the moment of inertia for uniformly shaped, rigid bodies.{366}
- Calculate the moment of inertia for compound objects.{368}
Parallel-Axis Theorem:
- Apply the parallel axis theorem to find the moment of inertia about any axis parallel to one already known.{367}
- Paste un-numbered outcome here
Center of Gravity:
- Calculate the center of gravity of a given system.
- Calculate the center of gravity of a uniform object.
#Topic Break
Rotational Dynamics:
Topic Outcome:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Newton's Second Law for Rotational Motion:
- Calculate the torques on rotating systems about a fixed axis to find the angular acceleration.{378}
- Explain how changes in the moment of inertia of a rotating system affect angular acceleration with a fixed applied torque.{379}
Torque:
- Describe how the magnitude of a torque depends on the magnitude of the lever arm and the angle the force vector makes with the lever arm.{372}
- Determine the sign (positive or negative) of a torque using the right-hand rule.{373}
- Calculate individual torques about a common axis and sum them to find the net torque.{374}
- Find the total angular momentum and torque about a designated origin of a system of particles.{401}
- Calculate the torque on a rigid body rotating about a fixed axis.{403}
Rotation about a Fixed Axis:
- Describe the physical meaning of rotational variables as applied to fixed-axis rotation.{338}
- Calculate the angular momentum of a rigid body rotating about a fixed axis.{402}
- Calculate the torque on a rigid body rotating about a fixed axis.{403}
Static Equilibrium:
- Identify the physical conditions of static equilibrium.{420}
- Draw a free-body diagram for a rigid body acted on by forces.{421}
- Explain how the conditions for equilibrium allow us to solve statics problems.{422}
- Identify and analyze static equilibrium situations.{426}
- Set up a free-body diagram for an extended object in static equilibrium.{427}
- Set up and solve static equilibrium conditions for objects in equilibrium in various physical situations.{428}
# Topic Break
Gravitation:
Topic Outcome:
- List the significant milestones in the history of gravitation.{445}
- Determine the mass of an astronomical body from free-fall acceleration at its surface.{452}
- Describe how the value of g varies due to location and Earth's rotation.{453}
- Understanding the concept of gravitational force and its role in determining the motion of celestial bodies.
- Apply the inverse square law of gravitation to explain how the gravitational force between the Sun and planets varies with distance.
- Relate the gravitation and celestial mechanics concepts to explain the interaction between the Sun, planets, and moons.
Newton's Law of Gravity:
- Calculate the gravitational force between two point masses.{446}
- Estimate the gravitational force between collections of mass.{447}
- Explain the connection between the constants G and g.{451}
Orbits:
- Describe the mechanism for circular orbits.{463}
- Find the orbital periods and speeds of satellites.{464}
- Determine whether objects are gravitationally bound.{465}
Kepler's Laws:
Subtopic Outcome:
- Describe the conic sections and how they relate to orbital motion.{469}
- Describe how orbital velocity is related to conservation of angular momentum.{470}
- Determine the period of an elliptical orbit from its major axis.{471}
Kepler's First Law:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Kepler's Second Law:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Kepler's Third Law:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Tides:
- Explain the origins of Earth's ocean tides.{475}
- Describe how neap and leap tides differ.{476}
- Describe how tidal forces affect binary systems.{477}
Einstein's Theory of Gravity:
- Describe how the theory of general relativity approaches gravitation.{481}
- Explain the principle of equivalence.{482}
- Calculate the Schwarzschild radius of an object.{483}
- Summarize the evidence for black holes.{484}
# Topic Break
Fluids:
Topic Outcome:
- State the different phases of matter.{490}
- Describe the characteristics of the phases of matter at the molecular or atomic level.{491}
- Distinguish between compressible and incompressible materials.{492}
Density:
- Define density and its related SI units.{493}
- Compare and contrast the densities of various substances.{494}
- Relate the density of an object to its mass and volume
Pressure:
- Define pressure and its related SI units.{495}
- Explain the relationship between pressure and force.{496}
- Calculate force given pressure and area.{497}
- Define gauge pressure and absolute pressure.{501}
- Explain various methods for measuring pressure.{502}
- Understand the working of open-tube barometers.{503}
- Describe in detail how manometers and barometers operate.{504}
Pascal's Law:
Subtopic Outcome:
- State Pascal's principle.{508}
- Describe applications of Pascal's principle.{509}
Hydraulics:
- Derive relationships between forces in a hydraulic system.{510}
- Paste un-numbered outcome here
Archimedes' Principle:
Subtopic Outcome:
- State Archimedes' principle.{515}
- Describe the relationship between density and Archimedes' principle.{516}
Buoyancy:
- Define buoyant force.{514}
- Paste un-numbered outcome here
Fluid Dynamics:
Subtopic Outcome:
- Describe the characteristics of flow.{520}
- Paste un-numbered outcome here
Flow Rate:
- Calculate flow rate.{521}
- Describe the relationship between flow rate and velocity.{522}
Laminar/Turbulent Flow:
- Calculate flow and resistance with Poiseuille's law.{536}
- Explain how pressure drops due to resistance.{537}
- Calculate the Reynolds number for an object moving through a fluid.{538}
- Use the Reynolds number for a system to determine whether it is laminar or turbulent.{539}
Viscosity:
- Explain what viscosity is.{535}
- Describe the conditions under which an object has a terminal speed.{540}
Equation of Continuity:
- Explain the consequences of the equation of continuity to the conservation of mass.{523}
- Paste un-numbered outcome here
Bernoulli's Equation:
- Explain the terms in Bernoulli's equation.{527}
- Explain how Bernoulli's equation is related to the conservation of energy.{528}
- Describe how to derive Bernoulli's principle from Bernoulli's equation.{529}
- Perform calculations using Bernoulli's principle.{530}
- Describe some applications of Bernoulli's principle.{531}
# Topic Break
Elasticity:
Topic Outcome:
- Explain the concepts of stress and strain in describing elastic deformations of materials.{432}
- Describe the types of elastic deformation of objects and materials.{433}
- Explain the limit where a deformation of material is elastic.{437}
- Analyze elasticity and plasticity on a stress-strain diagram.{439}
Stress:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Strain:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Elastic Modulus:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Plasticity:
- Describe the range where materials show plastic behavior.{438}
- Paste un-numbered outcome here
# Topic Break
Oscillations:
Topic Outcome:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Simple Harmonic Motion:
Subtopic Outcome:
- Define the terms period and frequency.{549}
- List the characteristics of simple harmonic motion.{550}
- Explain the concept of phase shift.{551}
- Write the equations of motion for the system of a mass and spring undergoing simple harmonic motion.{552}
- Describe the motion of a mass oscillating on a vertical spring.{553}
Energy in Simple Harmonic Motion:
- Describe the energy conservation of the system of a mass and a spring.{557}
- Explain the concepts of stable and unstable equilibrium points.{558}
Comparing Simple Harmonic Motion to Circular Motion:
- Describe how the sine and cosine functions relate to the concepts of circular motion.{567}
- Describe the connection between simple harmonic motion and circular motion.{568}
Vertical Oscillations:
- Describe the motion of a mass oscillating on a vertical spring.{553}
- Paste un-numbered outcome here
Pendulum:
- State the forces that act on a simple pendulum.{572}
- Determine the angular frequency, frequency, and period of a simple pendulum in terms of the length of the pendulum and the acceleration due to gravity.{573}
- Define the period for a physical pendulum.{574}
- Define the period for a torsional pendulum.{575}
Damped Oscillations:
- Describe the motion of damped harmonic motion.{579}
- Write the equations of motion for damped harmonic oscillations.{580}
- Describe the motion of driven, or forced, damped harmonic motion.{581}
- Write the equations of motion for forced, damped harmonic motion. {582}
Forced Oscillations:
- Define forced oscillations.{586}
- List the equations of motion associated with forced oscillations.{587}
- Explain the concept of resonance and its impact on the amplitude of an oscillator.{588}
- List the characteristics of a system oscillating in resonance. {589}
Resonance:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
# Topic Break
Waves:
Topic Outcome:
- Describe the basic characteristics of wave motion.{595}
- Define the terms wavelength, amplitude, period, frequency, and wave speed.{596}
- List the different types of waves.{598}
- Model a wave, moving with a constant wave velocity, with a mathematical expression.{602}
- Calculate the velocity and acceleration of the medium.{603}
- Show how the velocity of the medium differs from the wave velocity (propagation velocity).{604}
- Determine the factors that affect the speed of a wave on a string.{608}
- Write a mathematical expression for the speed of a wave on a string and generalize these concepts for other media.{609}
Traveling Waves:
- Explain the difference between longitudinal and transverse waves, and give examples of each type.{597}
- Explain how the displacement of particles in different waveforms changes over time.
- Paste un-numbered outcome here.
Standing Waves:
- Describe standing waves and explain how they are produced.{624}
- Describe the modes of a standing wave on a string.{625}
- Provide examples of standing waves beyond the waves on a string.{626}
- Describe resonance in a tube closed at one end and open at the other end.{653}
- Describe resonance in a tube open at both ends.{654} .{655}
Energy of a Wave:
- Explain how energy travels with a pulse or wave.{613}
- Describe, using a mathematical expression, how the energy in a wave depends on the amplitude of the wave.{614}
Power of a Wave:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Interference:
- Explain how mechanical waves are reflected and transmitted at the boundaries of a medium.{618}
- Define the terms interference and superposition.{619}
- Find the resultant wave of two identical sinusoidal waves that differ only by a phase shift.{620}
- Understanding of nodal/antinodal lines and their significance in wave interference patterns.
- Analyze the alignment of troughs along antinodal lines and the impact on the intensity of the resulting wave.
- Compare the intensity of the wave resulting from interference to the intensity of the individual source waves.
Sound:
Subtopic Outcome:
- Explain the difference between sound and hearing.{632}
- Describe sound as a wave.{633}
- List the equations used to model sound waves.{634}
- Describe compression and rarefactions as they relate to sound. {635}
- Describe the resonant frequencies in instruments that can be modeled as a tube with symmetrical boundary conditions.{658}
- Describe the resonant frequencies in instruments that can be modeled as a tube with anti-symmetrical boundary conditions.{659}
- Explain the mechanism behind sound-reducing headphones.{652}
- Describe resonance in a tube closed at one end and open at the other end.{653}
- Describe resonance in a tube open at both ends.{654} .{655}
- Determine the beat frequency produced by two sound waves that differ in frequency.{663}
- Describe how beats are produced by musical instruments.{664}
- Explain the mechanism behind sonic booms.{673}
- Describe the difference between sonic booms and shock waves.{674}
- Describe a bow wake.{675}
Speed of Sound:
- Explain the relationship between wavelength and frequency of sound.{639}
- Determine the speed of sound in different media.{640}
- Derive the equation for the speed of sound in air.{641}
- Determine the speed of sound in air for a given temperature. {642}
Sound Intensity(Decibels):
- Define the term intensity.{646}
- Explain the concept of sound intensity level.{647}
- Describe how the human ear translates sound.{648}
The Doppler Effect:
- Explain the change in observed frequency as a moving source of sound approaches or departs from a stationary observer.{668}
- Explain the change in observed frequency as an observer moves toward or away from a stationary source of sound.{669}
Photons:
Subtopic outcome:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Blackbody radiation:
- Apply Wien’s and Stefan’s laws to analyze radiation emitted by a blackbody.
- Explain Planck’s hypothesis of energy quanta.
Photoelectric effect:
- Describe physical characteristics of the photoelectric effect.
- Explain why the photoelectric effect cannot be explained by classical physics.
- Describe how Einstein’s idea of a particle of radiation explains the photoelectric effect.
Compton effect:
- Describe Compton’s experiment.
- Explain the Compton wavelength shift.
- Describe how experiments with X-rays confirm the particle nature of radiation.
Bohr's atomic model:
- Explain the difference between the absorption spectrum and the emission spectrum of radiation emitted by atoms.
- Describe the Rutherford gold foil experiment and the discovery of the atomic nucleus.
- Explain the atomic structure of hydrogen.
- Describe the postulates of the early quantum theory for the hydrogen atom.
- Summarize how Bohr’s quantum model of the hydrogen atom explains the radiation spectrum of atomic hydrogen.
De Broglie’s matter waves:
- Describe de Broglie’s hypothesis of matter waves.
- Explain how the de Broglie’s hypothesis gives the rationale for the quantization of angular momentum in Bohr’s quantum theory of the hydrogen atom.
- Describe the Davisson–Germer experiment.
- Interpret de Broglie’s idea of matter waves and how they account for electron diffraction phenomena.
Wave-particle duality:
- Identify phenomena in which electromagnetic waves behave like a beam of photons and particles behave like waves.
- Describe the physics principles behind electron microscopy.
- Summarize the evolution of scientific thought that led to the development of quantum mechanics.
Light:
- Identify to the concept of diffraction in relation to microscopy.
- Explore how waves bend or spread when passing through apertures or obstacles.
- Utilize principles such as wavelength of light, mass of electrons and neutrons, Planck's constant, and particle speed.
# Topic Break
Thermodynamics:
Topic Outcome:
- Define a thermodynamic system, its boundary, and its surroundings.{749}
- Explain the roles of all the components involved in thermodynamics.{750}
- Link an equation of state to a system.{752}
- Define a thermodynamic process.{766}
- Distinguish between quasi-static and non-quasi-static processes.{767}
- Calculate physical quantities, such as the heat transferred, work done, and internal energy change for isothermal, adiabatic, and cyclical thermodynamic processes.{768}
- Define reversible and irreversible processes.{786}
- Define a dissipative process.
Temperature:
Subtopic Outcome:
- Define temperature and describe it qualitatively.{687}
- Define thermal equilibrium and thermodynamic temperature.{751}
Thermometers:
- Describe several different types of thermometers.{693}
- Convert temperatures between the Celsius, Fahrenheit, and Kelvin scales.{694}
Thermal Equilibrium:
- Explain thermal equilibrium.{688}
- Explain the zeroth law of thermodynamics.{689}
- Define thermal equilibrium and thermodynamic temperature.{751}
Heat Transfer:
Subtopic Outcome:
- Explain phenomena involving heat as a form of energy transfer.{704}
- Solve problems involving heat transfer.{705}
- Explain some phenomena that involve conductive, convective, and radiative heat transfer.{715}
- Solve problems on the relationships between heat transfer, time, and rate of heat transfer.{716}
- Explain some phenomena that involve conductive, convective, and radiative heat transfer.{723}
- Solve problems involving heat transfer to and from ideal monatomic gases whose volumes are held constant.{736}
Convection:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Conduction:
- Solve problems using the formulas for conduction and radiation.{717}
- Paste un-numbered outcome here
Radiation:
- Solve problems using the formulas for conduction and radiation.{717}
- Paste un-numbered outcome here
Pressure:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Thermal Expansion:
- Answer qualitative questions about the effects of thermal expansion.{698}
- Solve problems involving thermal expansion, including those involving thermal stress.{699}
Specific Heat:
- Calculate the specific heat of an ideal gas for either an isobaric or isochoric process.{773}
- Estimate the change in specific heat of a gas over temperature ranges.{775}
Calorimetry:
- Solve calorimetry problems involving phase changes.{711}
- Paste un-numbered outcome here
Phase Changes:
- Describe phase transitions and equilibrium between phases.{709}
- Solve problems involving latent heat.{710}
- Solve calorimetry problems involving phase changes.{711}
Ideal Gas:
Subtopic Outcome:
- Use the unit of moles in relation to numbers of molecules, and molecular and macroscopic masses.{724}
- Explain the ideal gas law in terms of moles rather than numbers of molecules.{725}
- Apply the van der Waals gas law to situations where the ideal gas law is inadequate.{726}
- Explain the relations between microscopic and macroscopic quantities in a gas.{730}
- Solve problems involving mixtures of gases.{731}
- Solve problems involving the distance and time between a gas molecule’s collisions.{732}
- Describe the distribution of molecular speeds in an ideal gas.{742}
- Find the average and most probable molecular speeds in an ideal gas.{743}
Heat Capacity:
- Estimate the heat capacities of metals using a model based on degrees of freedom.{738}
- Define heat capacity of an ideal gas for a specific process.{772}
- Calculate the specific heat of an ideal gas for either an isobaric or isochoric process.{773}
- Explain the difference between the heat capacities of an ideal gas and a real gas.{774}
- Estimate the change in specific heat of a gas over temperature ranges.{775}
Equipartition Theorem:
- Paste un-numbered outcome here
- Paste un-numbered outcome here
Degrees of Freedom:
- Solve similar problems for non-monatomic ideal gases based on the number of degrees of freedom of a molecule.{737}
- Estimate the heat capacities of metals using a model based on degrees of freedom.{738}
Adiabatic Processes:
- Define adiabatic expansion of an ideal gas.{779}
- Demonstrate the qualitative difference between adiabatic and isothermal expansions.{780}
First Law of Thermodynamics:
- State the first law of thermodynamics and explain how it is applied.{761}
- Explain how heat transfer, work done, and internal energy change are related in any thermodynamic process.{762}
- Describe the work done by a system, heat transfer between objects, and internal energy change of a system.{756}
- Calculate the work, heat transfer, and internal energy change in a simple process.{757}
Second Law of Thermodynamics:
- State the second law of thermodynamics via an irreversible process.{787}
- Contrast the second law of thermodynamics statements according to Kelvin and Clausius formulations.{802}
- Interpret the second of thermodynamics via irreversibility.{803}
Entropy:
- Describe the meaning of entropy.{813}
- Calculate the change of entropy for some simple processes.{814}
- Interpret the meaning of entropy at a microscopic scale.{818}
- Calculate a change in entropy for an irreversible process of a system and contrast with the change in entropy of the universe.{819}
Heat Engines:
Subtopic Outcome:
- Describe the function and components of a heat engine.{791}
- Explain the efficiency of an engine.{792}
- Calculate the efficiency of an engine for a given cycle of an ideal gas.{793}
The Carnot Cycle:
- Describe the Carnot cycle with the roles of all four processes involved.{807}
- Outline the Carnot principle and its implications.{808}
- Demonstrate the equivalence of the Carnot principle and the second law of thermodynamics.{809}
Refrigerators:
- Describe a refrigerator and a heat pump and list their differences.{797}
- Calculate the performance coefficients of simple refrigerators and heat pumps.{798}
Third Law of Thermodynamics:
- Explain the third law of thermodynamics.{820}
- Paste un-numbered outcome here
# Topic Break
Electrostatics:
Topic Outcome:
- Describe the electric force, both qualitatively and quantitatively.{840}
- Determine the direction of the electric force for different source charges.{842}
- Describe some of the many practical applications of electrostatics, including several printing technologies.{937}
- Relate these applications to Newton’s second law and the electric force.{938}
Electric Charge:
- Describe the concept of electric charge.{828}
- Explain qualitatively the force electric charge creates.{829}
- Explain what a continuous source charge distribution is and how it is related to the concept of quantization of charge.{853}
- Describe line charges, surface charges, and volume charges.{854}
Conductors and Insulators:
- Explain what a conductor is.{833}
- Explain what an insulator is.{834}
- List the differences and similarities between conductors and insulators.{835}
Induction: