#set document(title: "5.1 Invariance of Physical Laws", author: "OpenStax / XYZ Homework") #set page(width: 8.5in, height: auto, margin: 1in) #import "@preview/cetz:0.5.2" #set text(font: ("STIX Two Text", "Libertinus Serif", "New Computer Modern"), size: 10.5pt, lang: "en") #show math.equation: set text(font: ("STIX Two Math", "New Computer Modern Math")) #set par(justify: true, leading: 0.62em, spacing: 0.9em) #set enum(spacing: 1.1em) // room between list items so tall inline fractions don't collide #set list(spacing: 1.1em) #set table(stroke: 0.5pt + rgb("#c7ccd3")) #let BLUE = rgb("#183B6F") // brand navy — section bars + example/solution labels (white on navy 11.09:1) #let ORANGE = rgb("#A94509") // brand primary-700 — AA-safe deep orange for TEXT (5.93:1 on white; raw brand #F37021 is 2.94:1 and must never carry text) #let RED = rgb("#DC2626") // brand error-600 #let GREEN = rgb("#059669") // brand success-600 (decoration only; small green text uses green-text #007942) #show heading.where(level: 1): it => block(width: 100%, above: 0pt, below: 16pt, fill: gradient.linear(BLUE, rgb("#2C5AA0")), inset: (x: 14pt, y: 12pt), radius: 3pt, text(fill: white, weight: "bold", size: 19pt, it.body)) #show heading.where(level: 2): it => block(width: 100%, above: 18pt, below: 10pt, fill: BLUE, inset: (x: 10pt, y: 6pt), radius: 2pt, text(fill: white, weight: "bold", size: 12pt, it.body)) #show heading.where(level: 3): it => text(fill: ORANGE, weight: "bold", size: 12.5pt, it.body) #show heading.where(level: 4): it => text(fill: BLUE, weight: "bold", size: 10.5pt, it.body) #let examplebox(label, title, body) = block(width: 100%, breakable: true, fill: rgb("#EFF1F5"), stroke: 0.5pt + rgb("#CFDDF0"), radius: 4pt, inset: 10pt, above: 12pt, below: 12pt)[ #block(below: 6pt)[#box(fill: BLUE, inset: (x: 6pt, y: 2pt), radius: 2pt, text(fill: white, weight: "bold", size: 8.5pt, label)) #h(0.4em) #strong[#title]] #body] // rail = decorative left rule (raw brand token); labelcolor = AA-safe label text shade #let notebox(label, rail, labelcolor, tint, body) = block(width: 100%, breakable: true, fill: tint, stroke: (left: 3pt + rail), inset: (left: 10pt, rest: 8pt), radius: (right: 4pt), above: 11pt, below: 11pt)[ #text(fill: labelcolor, weight: "bold", size: 7.5pt, tracking: 0.5pt)[#upper(label)] #linebreak() #body] #let solutionbox(body) = block(above: 4pt, below: 8pt)[ #text(fill: BLUE, weight: "bold", size: 8.5pt)[Solution] #linebreak() #body] #let figph(msg) = block(width: 100%, height: 60pt, fill: rgb("#f6f7f9"), stroke: (paint: rgb("#c7ccd3"), dash: "dashed"), radius: 4pt, inset: 10pt)[ #align(center + horizon, text(fill: rgb("#889"), style: "italic", size: 9pt, msg))] // Standardize inlined figure sizes: measure the natural CeTZ canvas, then scale to a // consistent envelope (aspect-aware; see build_typst.py FIG_* constants). Unlike the // print preamble, dimensions are FLOORED: in an editor a user can trim a figure to a // degenerate 1-D shape (a bare line), and w/h or tw/w would then divide by zero. #let _STD_W = 3.5 #let _WIDE_W = 5.6 #let _MAX_H = 3.4 #let _ASPECT_WIDE = 2.2 #let _UPSCALE_MAX = 1.15 #let stdfig(body) = context { let m = measure(body) let w = calc.max(m.width / 1in, 0.01) let h = calc.max(m.height / 1in, 0.01) let tw = if w / h > _ASPECT_WIDE { _WIDE_W } else { _STD_W } let s = calc.min(tw / w, _MAX_H / h, _UPSCALE_MAX) align(center, box(scale(x: s * 100%, y: s * 100%, reflow: true, body))) } #show figure: set block(breakable: false) #set figure(gap: 8pt) #show figure.caption: set text(size: 8.5pt, fill: rgb("#555")) == 5.1#h(0.6em)Invariance of Physical Laws Suppose you calculate the hypotenuse of a right triangle given the base angles and adjacent sides. Whether you calculate the hypotenuse from one of the sides and the cosine of the base angle, or from the Pythagorean theorem, the results should agree. Predictions based on different principles of physics must also agree, whether we consider them principles of mechanics or principles of electromagnetism. Albert Einstein pondered a disagreement between predictions based on electromagnetism and on assumptions made in classical mechanics. Specifically, suppose an observer measures the velocity of a light pulse in the observer’s own #strong[rest frame]; that is, in the frame of reference in which the observer is at rest. According to the assumptions long considered obvious in classical mechanics, if an observer measures a velocity #math.equation(block: false, alt: "u →")[$arrow(u)$] in one frame of reference, and that frame of reference is moving with velocity #math.equation(block: false, alt: "v →")[$arrow(v)$] past a second reference frame, an observer in the second frame measures the original velocity as #math.equation(block: false, alt: "u prime → equals u → plus v → .")[$arrow(u^(′)) = arrow(u) + arrow(v) .$] This sum of velocities is often referred to as #strong[Galilean relativity]. If this principle is correct, the pulse of light that the observer measures as traveling with speed #emph[c] travels at speed #emph[c] + #emph[v] measured in the frame of the second observer. If we reasonably assume that the laws of electrodynamics are the same in both frames of reference, then the predicted speed of light (in vacuum) in both frames should be #math.equation(block: false, alt: "c equals 1 / the square root of ε sub 0 μ sub 0 .")[$c = 1 "/" sqrt(ε_(0) μ_(0)) .$] Each observer should measure the same speed of the light pulse with respect to that observer’s own rest frame. To reconcile difficulties of this kind, Einstein constructed his #strong[special theory of relativity], which introduced radical new ideas about time and space that have since been confirmed experimentally. === Inertial Frames All velocities are measured relative to some frame of reference. For example, a car’s motion is measured relative to its starting position on the road it travels on; a projectile’s motion is measured relative to the surface from which it is launched; and a planet’s orbital motion is measured relative to the star it orbits. The frames of reference in which mechanics takes the simplest form are those that are not accelerating. Newton’s first law, the law of inertia, holds exactly in such a frame. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Inertial Reference Frame] An #strong[inertial frame of reference] is a reference frame in which a body at rest remains at rest and a body in motion moves at a constant speed in a straight line unless acted upon by an outside force. ] For example, to a passenger inside a plane flying at constant speed and constant altitude, physics seems to work exactly the same as when the passenger is standing on the surface of Earth. When the plane is taking off, however, matters are somewhat more complicated. In this case, the passenger at rest inside the plane concludes that a net force #emph[F] on an object is not equal to the product of mass and acceleration, #emph[ma]. Instead, #emph[F] is equal to #emph[ma] plus a fictitious force. This situation is not as simple as in an inertial frame. Special relativity handles accelerating frames as a constant and velocities as relative to the observer. General relativity treats both velocity and acceleration as relative to the observer, thus making the use of curved space-time. === Einstein’s First Postulate Not only are the principles of classical mechanics simplest in inertial frames, but they are the same in all inertial frames. Einstein based the #strong[first postulate] of his theory on the idea that this is true for all the laws of physics, not merely those in mechanics. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[First Postulate of Special Relativity] The laws of physics are the same in all inertial frames of reference. ] #emph[This postulate denies the existence of a special or preferred inertial frame]. The laws of nature do not give us a way to endow any one inertial frame with special properties. For example, we cannot identify any inertial frame as being in a state of “absolute rest.” We can only determine the relative motion of one frame with respect to another. There is, however, more to this postulate than meets the eye. The laws of physics include only those that satisfy this postulate. We will see that the definitions of energy and momentum must be altered to fit this postulate. Another outcome of this postulate is the famous equation #math.equation(block: false, alt: "E equals m c squared ,")[$E = m c^(2) ,$] which relates energy to mass. === Einstein’s Second Postulate The second postulate upon which Einstein based his theory of special relativity deals with the #strong[speed of light]. Late in the nineteenth century, the major tenets of classical physics were well established. Two of the most important were the laws of electromagnetism and Newton’s laws. Investigations such as Young’s double-slit experiment in the early 1800s had convincingly demonstrated that light is a wave. Maxwell’s equations of electromagnetism implied that electromagnetic waves travel at #math.equation(block: false, alt: "c equals 3.00 times 10 to the power 8 m/s")[$c = 3.00 × 10^(8) #h(0.2em) "m/s"$] in a vacuum, but they do not specify the frame of reference in which light has this speed. Many types of waves were known, and all travelled in some medium. Scientists therefore assumed that some medium carried the light, even in a vacuum, and that light travels at a speed #emph[c] relative to that medium (often called “the aether”). Starting in the mid-1880s, the American physicist A.A. Michelson, later aided by E.W. Morley, made a series of direct measurements of the speed of light. They intended to deduce from their data the speed #emph[v] at which Earth was moving through the mysterious medium for light waves. The speed of light measured on Earth should have been #emph[c] + #emph[v] when Earth’s motion was opposite to the medium’s flow at speed #emph[u] past the Earth, and #emph[c] – #emph[v] when Earth was moving in the same direction as the medium. The results of their measurements were startling. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Michelson-Morley Experiment] The #strong[Michelson-Morley experiment] demonstrated that the speed of light in a vacuum is independent of the motion of Earth about the Sun. ] The eventual conclusion derived from this result is that light, unlike mechanical waves such as sound, does not need a medium to carry it. Furthermore, the Michelson-Morley results implied that the speed of light #emph[c] is independent of the motion of the source relative to the observer. That is, everyone observes light to move at speed #emph[c] regardless of how they move relative to the light source or to one another. For several years, many scientists tried unsuccessfully to explain these results within the framework of Newton’s laws. In addition, there was a contradiction between the principles of electromagnetism and the assumption made in Newton’s laws about relative velocity. Classically, the velocity of an object in one frame of reference and the velocity of that object in a second frame of reference relative to the first should combine like simple vectors to give the velocity seen in the second frame. If that were correct, then two observers moving at different speeds would see light traveling at different speeds. Imagine what a light wave would look like to a person traveling along with it (in vacuum) at a speed #emph[c]. If such a motion were possible, then the wave would be stationary relative to the observer. It would have electric and magnetic fields whose strengths varied with position but were constant in time. This is not allowed by Maxwell’s equations. So either Maxwell’s equations are different in different inertial frames, or an object with mass cannot travel at speed #emph[c]. Einstein concluded that the latter is true: An object with mass cannot travel at speed #emph[c]. Maxwell’s equations are correct, but Newton’s addition of velocities is not correct for light. Not until 1905, when Einstein published his first paper on special relativity, was the currently accepted conclusion reached. Based mostly on his analysis that the laws of electricity and magnetism would not allow another speed for light, and only slightly aware of the Michelson-Morley experiment, Einstein detailed his #strong[second postulate of special relativity]. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Second Postulate of Special Relativity] Light travels in a vacuum with the same speed #emph[c] in any direction in all inertial frames. ] In other words, the speed of light has the same definite speed for any observer, regardless of the relative motion of the source. This deceptively simple and counterintuitive postulate, along with the first postulate, leave all else open for change. Among the changes are the loss of agreement on the time between events, the variation of distance with speed, and the realization that matter and energy can be converted into one another. We describe these concepts in the following sections. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Explain how special relativity differs from general relativity. #solutionbox[ Special relativity applies only to objects moving at constant velocity, whereas general relativity applies to objects that undergo acceleration. ] ] === Summary - Relativity is the study of how observers in different reference frames measure the same event. - Modern relativity is divided into two parts. Special relativity deals with observers in uniform (unaccelerated) motion, whereas general relativity includes accelerated relative motion and gravity. Modern relativity is consistent with all empirical evidence thus far and, in the limit of low velocity and weak gravitation, gives close agreement with the predictions of classical (Galilean) relativity. - An inertial frame of reference is a reference frame in which a body at rest remains at rest and a body in motion moves at a constant speed in a straight line unless acted upon by an outside force. - Modern relativity is based on Einstein’s two postulates. The first postulate of special relativity is that the laws of physics are the same in all inertial frames of reference. The second postulate of special relativity is that the speed of light #emph[c] is the same in all inertial frames of reference, independent of the relative motion of the observer and the light source. - The Michelson-Morley experiment demonstrated that the speed of light in a vacuum is independent of the motion of Earth about the sun. === Conceptual Questions Which of Einstein’s postulates of special relativity includes a concept that does not fit with the ideas of classical physics? Explain. #solutionbox[ the second postulate, involving the speed of light; classical physics already included the idea that the laws of mechanics, at least, were the same in all inertial frames, but the velocity of a light pulse was different in different frames moving with respect to each other ] Is Earth an inertial frame of reference? Is the sun? Justify your response. When you are flying in a commercial jet, it may appear to you that the airplane is stationary and Earth is moving beneath you. Is this point of view valid? Discuss briefly. #solutionbox[ yes, provided the plane is flying at constant velocity relative to the Earth; in that case, an object with no force acting on it within the plane has no change in velocity relative to the plane and no change in velocity relative to the Earth; both the plane and the ground are inertial frames for describing the motion of the object ]