#set document(title: "8.2 Conservative and Non-Conservative Forces", 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")) == 8.2#h(0.6em)Conservative and Non-Conservative Forces In the interactions we considered in Potential Energy and Conservation of Energy, any transition between kinetic and potential energy did not change the total energy of the system. This was path independent, meaning that we can start and stop at any two points in the problem, and the total energy of the system—kinetic plus potential—at these points are equal to each other. This is characteristic of a #strong[conservative force]. We dealt with conservative forces in the preceding section, such as the gravitational force and spring force. When comparing the motion of the football in , the total energy of the system never changes, even though the gravitational potential energy of the football increases, as the ball rises relative to ground and falls back to the initial gravitational potential energy when the football player catches the ball. #strong[Non-conservative forces] and the work that they do are path dependent. Dissipative forces such as friction or air resistance, for example, are non-conservative. These forces take energy away from the system as the system progresses; energy that you can’t get back. Push-pull forces are also generally non-conservative. Imagine pushing a merry-go-round. The total work done in returning to the starting point depends on how many revolutions are completed, and therefore the total energy at that location is not constant. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Conservative Force] The work done by a conservative force is independent of the path; in other words, the work done by a conservative force is the same for any path connecting two points: #math.equation(block: true, alt: "W sub A B , path - 1 equals ∫ A B , path - 1 F → sub cons times d r → equals W sub A B , path - 2 equals ∫ A B , path - 2 F → sub cons times d r → .")[$W_(A B , "path" "-" 1) = display(limits(∫)_(A B , "path" "-" 1) arrow(F)_("cons") · d arrow(r)) = W_(A B , "path" "-" 2) = display(limits(∫)_(A B , "path" "-" 2) arrow(F)_("cons") · d arrow(r)) .$] The work done by a non-conservative force depends on the path taken. Equivalently, a force is conservative if the work it does around any closed path is zero: #math.equation(block: true, alt: "W sub closed path equals ∮ F → sub cons times d r → equals 0 .")[$W_("closed path") = display(∮ arrow(F)_("cons")) · d arrow(r) = 0 .$] ] \[In , we use the notation of a circle in the middle of the integral sign for a line integral over a closed path, a notation found in most physics and engineering texts.\] and are equivalent because any closed path is the sum of two paths: the first going from #emph[A] to #emph[B], and the second going from #emph[B] to #emph[A]. The work done going along a path from #emph[B] to #emph[A] is the negative of the work done going along the same path from #emph[A] to #emph[B], where #emph[A] and #emph[B] are any two points on the closed path: #math.equation(block: true, alt: "0 equals ∮ F → sub cons times d r →, equals ∫ A B , path - 1 F → sub cons times d r → plus ∫ B A , path - 2 F → sub cons times d r →; equals ∫ A B , path - 1 F → sub cons times d r → minus ∫ A B , path - 2 F → sub cons times d r → equals 0 .")[$0 = display(∮ arrow(F)_("cons") · d arrow(r)) & = display(limits(∫)_(A B , "path" "-" 1) arrow(F)_("cons") · d arrow(r)) + display(limits(∫)_(B A , "path" "-" 2) arrow(F)_("cons") · d arrow(r)) \ & = display(limits(∫)_(A B , "path" "-" 1) arrow(F)_("cons") · d arrow(r)) − display(limits(∫)_(A B , "path" "-" 2) arrow(F)_("cons") · d arrow(r)) = 0 .$] You might ask how we go about proving whether or not a force is conservative, since the definitions involve any and all paths from #emph[A] to #emph[B], or any and all closed paths, but to do the integral for the work, you have to choose a particular path. One answer is that the work done is independent of path if the infinitesimal work #math.equation(block: false, alt: "F → times d r →")[$arrow(F) · d arrow(r)$] is an #strong[exact differential], the way the infinitesimal net work was equal to the exact differential of the kinetic energy, #math.equation(block: false, alt: "d W sub net equals m v → times d v → equals d the fraction 1 over 2 m v squared ,")[$d W_("net") = m arrow(v) · d arrow(v) = d frac(1, 2) m "v"^(2) ,$] when we derived the work-energy theorem in Work-Energy Theorem. There are mathematical conditions that you can use to test whether the infinitesimal work done by a force is an exact differential, and the force is conservative. These conditions only involve differentiation and are thus relatively easy to apply. In two dimensions, the condition for #math.equation(block: false, alt: "F → times d r → equals F sub x d x plus F sub y d y")[$arrow(F) · d arrow(r) = F_(x) d x + F_(y) d y$] to be an exact differential is #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #math.equation(block: true, alt: "the fraction d F sub x over d y equals the fraction d F sub y over d x .")[$frac(d F_(x), d y) = frac(d F_(y), d x) .$] ] You may recall that the work done by the force in depended on the path. For that force, #math.equation(block: true, alt: "F sub x equals open parenthesis 5 N/m close parenthesis y and F sub y equals open parenthesis 10 N/m close parenthesis x .")[$F_(x) = ( 5 #h(0.2em) "N/m" ) y #h(0.2em) "and" #h(0.2em) F_(y) = ( 10 #h(0.2em) "N/m" ) x .$] Therefore, #math.equation(block: true, alt: "open parenthesis d F sub x / d y close parenthesis equals 5 N/m not equal to open parenthesis d F sub y / d x close parenthesis equals 10 N/m,")[$( d F_(x) "/" d y ) = 5 #h(0.2em) "N/m" ≠ ( d F_(y) "/" d x ) = 10 #h(0.2em) "N/m,"$] which indicates it is a non-conservative force. Can you see what you could change to make it a conservative force? #figure(figph[A photograph of a grinding wheel being used.], alt: "A photograph of a grinding wheel being used.", caption: [A grinding wheel applies a non-conservative force, because the work done depends on how many rotations the wheel makes, so it is path-dependent.]) #examplebox("Example 1")[Conservative or Not?][ Which of the following two-dimensional forces are conservative and which are not? Assume #emph[a] and #emph[b] are constants with appropriate units: (a) #math.equation(block: false, alt: "a x y cubed i ^ plus a y x cubed j ^ ,")[$a x y^(3) hat(i) + a y x^(3) hat(j) ,$] (b) #math.equation(block: false, alt: "a [ open parenthesis y squared / x close parenthesis i ^ plus 2 y ln open parenthesis x / b close parenthesis j ^ ] ,")[$a [ ( y^(2) "/" x ) hat(i) + 2 y #h(0.2em) "ln" ( x "/" b ) hat(j) ] ,$] (c) #math.equation(block: false, alt: "the fraction a x i ^ plus a y j ^ over x squared plus y squared")[$frac(a x hat(i) + a y hat(j), x^(2) + y^(2))$] Strategy Apply the condition stated in , namely, using the derivatives of the components of each force indicated. If the derivative of the #emph[y]-component of the force with respect to #emph[x] is equal to the derivative of the #emph[x]-component of the force with respect to #emph[y], the force is a conservative force, which means the path taken for potential energy or work calculations always yields the same results. Solution + #math.equation(block: false, alt: "the fraction d F sub x over d y equals the fraction d open parenthesis a x y cubed close parenthesis over d y equals 3 a x y squared")[$frac(d F_(x), d y) = frac(d ( a x y^(3) ), d y) = 3 a x y^(2)$] and #math.equation(block: false, alt: "the fraction d F sub y over d x equals the fraction d open parenthesis a y x cubed close parenthesis over d x equals 3 a y x squared")[$frac(d F_(y), d x) = frac(d ( a y x^(3) ), d x) = 3 a y x^(2)$], so this force is non-conservative. + #math.equation(block: false, alt: "the fraction d F sub x over d y equals the fraction d open parenthesis a y squared / x close parenthesis over d y equals the fraction 2 a y over x")[$frac(d F_(x), d y) = frac(d ( a y^(2) "/" x ), d y) = frac(2 a y, x)$] and #math.equation(block: false, alt: "the fraction d F sub y over d x equals the fraction d open parenthesis 2 a y ln open parenthesis x / b close parenthesis close parenthesis over d x equals the fraction 2 a y over x ,")[$frac(d F_(y), d x) = frac(d ( 2 a y #h(0.2em) "ln" ( x "/" b ) ), d x) = frac(2 a y, x) ,$] so this force is conservative. + #math.equation(block: false, alt: "the fraction d F sub x over d y equals the fraction d open parenthesis a x / open parenthesis x squared plus y squared close parenthesis close parenthesis over d y equals minus the fraction a x open parenthesis 2 y close parenthesis over open parenthesis x squared plus y squared close parenthesis squared equals the fraction d F sub y over d x equals the fraction d open parenthesis a y / open parenthesis x squared plus y squared close parenthesis close parenthesis over d x ,")[$frac(d F_(x), d y) = frac(d ( a x "/" ( x^(2) + y^(2) ) ), d y) = − frac(a x ( 2 y ), attach(( x^(2) + y^(2) ), t: 2)) = frac(d F_(y), d x) = frac(d ( a y "/" ( x^(2) + y^(2) ) ), d x) ,$] again conservative. Significance The conditions in are derivatives as functions of a single variable; in three dimensions, similar conditions exist that involve more derivatives. ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ A two-dimensional, conservative force is zero on the #emph[x]- and #emph[y]-axes, and satisfies the condition #math.equation(block: false, alt: "open parenthesis d F sub x / d y close parenthesis equals open parenthesis d F sub y / d x close parenthesis equals open parenthesis 4 N/m cubed close parenthesis x y")[$( d F_(x) "/" d y ) = ( d F_(y) "/" d x ) = ( 4 #h(0.2em) "N/m"^(3) ) x y$]. What is the magnitude of the force at the point #math.equation(block: false, alt: "x equals y equals 1 m?")[$x = y = 1 #h(0.2em) "m?"$] #solutionbox[ 2.83 N ] ] Before leaving this section, we note that non-conservative forces do not have potential energy associated with them. There is always a conservative force associated with every potential energy. We have seen that potential energy is defined in relation to the work done by conservative forces. This relation, , involved an integral for the work; starting with the force and displacement, you integrated to get the work and the change in potential energy. However, integration is the inverse operation of differentiation; you could equally well have started with the potential energy and taken its derivative, with respect to displacement, to get the force. The infinitesimal increment of potential energy is the dot product of the force and the infinitesimal displacement, #math.equation(block: true, alt: "d U equals − F → times d l → equals − F sub l d l .")[$d U = "−" arrow(F) · d arrow(l) = "−" F_(l) d l .$] Here, we chose to represent the displacement in an arbitrary direction by #math.equation(block: false, alt: "d l → ,")[$d arrow(l) ,$] so as not to be restricted to any particular coordinate direction. We also expressed the dot product in terms of the magnitude of the infinitesimal displacement and the component of the force in its direction. Both these quantities are scalars, so you can divide by #emph[dl] to get #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #math.equation(block: true, alt: "F sub l equals minus the fraction d U over d l .")[$F_(l) = − frac(d U, d l) .$] ] This equation gives the relation between force and the potential energy associated with it. In words, the component of a conservative force, in a particular direction, equals the negative of the derivative of the corresponding potential energy, with respect to a displacement in that direction. For one-dimensional motion, say along the #emph[x]-axis, give the entire vector force, #math.equation(block: false, alt: "F minus equals F sub x i ^ equals minus the fraction ∂ U over ∂ x i ^ .")[$accent(F, −) = F_(x) hat(i) = − frac(∂ U, ∂ x) hat(i) .$] In two dimensions, #math.equation(block: true, alt: "F minus equals F sub x i ^ plus F sub y j ^ equals − open parenthesis the fraction ∂ U over ∂ x close parenthesis i ^ minus open parenthesis the fraction ∂ U over ∂ y close parenthesis j ^ .")[$accent(F, −) = F_(x) hat(i) + F_(y) hat(j) = "−" ( frac(∂ U, ∂ x) ) hat(i) − ( frac(∂ U, ∂ y) ) hat(j) .$] From this equation, you can see why is the condition for the work to be an exact differential, in terms of the derivatives of the components of the force. In general, a partial derivative notation is used. If a function has many variables in it, the derivative is taken only of the variable the partial derivative specifies. The other variables are held constant. In three dimensions, you add another term for the #emph[z]-component, and the result is that the force is the negative of the gradient of the potential energy. However, we won’t be looking at three-dimensional examples just yet. #examplebox("Example 2")[Force due to a Quartic Potential Energy][ The potential energy for a particle undergoing one-dimensional motion along the #emph[x]-axis is #math.equation(block: true, alt: "U open parenthesis x close parenthesis equals the fraction 1 over 4 c x to the power 4 ,")[$U ( x ) = frac(1, 4) c x^(4) ,$] where #math.equation(block: false, alt: "c equals 8 N/m cubed .")[$c = 8 #h(0.2em) "N/m"^(3) .$] Its total energy at #math.equation(block: false, alt: "x equals 0 is 2 J,")[$x = 0 #h(0.2em) "is" #h(0.2em) 2 #h(0.2em) "J,"$] and it is not subject to any non-conservative forces. Find (a) the positions where its kinetic energy is zero and (b) the forces at those positions. Strategy (a) We can find the positions where #math.equation(block: false, alt: "K equals 0 ,")[$K = 0 ,$] so the potential energy equals the total energy of the given system. (b) Using , we can find the force evaluated at the positions found from the previous part, since the mechanical energy is conserved. Solution + The total energy of the system of 2 J equals the quartic elastic energy as given in the problem, #math.equation(block: true, alt: "2 J equals the fraction 1 over 4 open parenthesis 8 N/m cubed close parenthesis x sub f to the power 4 .")[$2 #h(0.2em) "J" = frac(1, 4) ( 8 #h(0.2em) "N/m"^(3) ) x_("f") 4 .$] Solving for #math.equation(block: false, alt: "x sub f")[$x_("f")$] results in #math.equation(block: false, alt: "x sub f equals ± 1 m .")[$x_("f") = "±" 1 #h(0.2em) "m" .$] + From , #math.equation(block: true, alt: "F sub x equals − d U / d x equals − c x cubed .")[$F_(x) = "−" d U "/" d x = "−" c x^(3) .$] Thus, evaluating the force at #math.equation(block: false, alt: "± 1 m")[$"±" 1 #h(0.2em) "m"$], we get #math.equation(block: true, alt: "F → equals − open parenthesis 8 N/m cubed close parenthesis open parenthesis ± 1 m close parenthesis cubed i ^ equals ± 8 N i ^ .")[$arrow(F) = "−" ( 8 #h(0.2em) "N/m"^(3) ) attach(( "±" 1 #h(0.2em) "m" ), t: 3) hat(i) = "±" 8 #h(0.2em) "N" hat(i) .$] At both positions, the magnitude of the forces is 8 N and the directions are toward the origin, since this is the potential energy for a restoring force. Significance Finding the force from the potential energy is mathematically easier than finding the potential energy from the force, because differentiating a function is generally easier than integrating one. ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Find the forces on the particle in when its kinetic energy is 1.0 J at #math.equation(block: false, alt: "x equals 0 .")[$x = 0 .$] #solutionbox[ #math.equation(block: false, alt: "F equals 4.8 N")[$F = 4.8 #h(0.2em) "N"$], directed toward the origin ] ] === Summary - A conservative force is one for which the work done is independent of path. Equivalently, a force is conservative if the work done over any closed path is zero. - A non-conservative force is one for which the work done depends on the path. - For a conservative force, the infinitesimal work is an exact differential. This implies conditions on the derivatives of the force’s components. - The component of a conservative force, in a particular direction, equals the negative of the derivative of the potential energy for that force, with respect to a displacement in that direction. === Conceptual Questions What is the physical meaning of a non-conservative force? #solutionbox[ A force that takes energy away from the system that can’t be recovered if we were to reverse the action. ] A bottle rocket is shot straight up in the air with a speed #math.equation(block: false, alt: "30 m/s")[$30 #h(0.2em) "m/s"$]. If the air resistance is ignored, the bottle would go up to a height of approximately #math.equation(block: false, alt: "46 m")[$46 #h(0.2em) "m"$]. However, the rocket goes up to only #math.equation(block: false, alt: "35 m")[$35 #h(0.2em) "m"$] before returning to the ground. What happened? Explain, giving only a qualitative response. An external force acts on a particle during a trip from one point to another and back to that same point. This particle is only affected by conservative forces. Does this particle’s kinetic energy and potential energy change as a result of this trip? #solutionbox[ The change in kinetic energy is the net work. Since conservative forces are path independent, when you are back to the same point the kinetic and potential energies are exactly the same as the beginning. During the trip the total energy is conserved, but both the potential and kinetic energy change. ] === Problems A force #math.equation(block: false, alt: "F open parenthesis x close parenthesis equals open parenthesis 3.0 / x close parenthesis N")[$F ( x ) = ( 3.0 "/" x ) #h(0.2em) "N"$] acts on a particle as it moves along the positive #emph[x]-axis. (a) How much work does the force do on the particle as it moves from #math.equation(block: false, alt: "x equals 2.0 m")[$x = 2.0 #h(0.2em) "m"$] to #math.equation(block: false, alt: "x equals 5.0 m?")[$x = 5.0 #h(0.2em) "m?"$] (b) Why is it not possible to choose #math.equation(block: false, alt: "x equals ∞")[$x = ∞$] or #math.equation(block: false, alt: "x sub 0 equals 0")[$x_(0) = 0$] as the reference point for the potential energy associated with this force? A force #math.equation(block: false, alt: "F open parenthesis x close parenthesis equals open parenthesis −5.0 x squared plus 7.0 x close parenthesis N")[$F ( x ) = ( −5.0 x^(2) + 7.0 x ) #h(0.2em) "N"$] acts on a particle. How much work does the force do on the particle as it moves from #math.equation(block: false, alt: "x equals 2.0 m")[$x = 2.0 #h(0.2em) "m"$] to #math.equation(block: false, alt: "x equals 5.0 m?")[$x = 5.0 #h(0.2em) "m?"$] #solutionbox[ #math.equation(block: true, alt: "−120 J")[$#h(0.2em) −120 #h(0.2em) "J"$] ] Find the force corresponding to the potential energy #math.equation(block: false, alt: "U open parenthesis x close parenthesis equals − a / x plus b / x squared .")[$U ( x ) = "−" a "/" x + b "/" x^(2) .$] The potential energy function for either one of the two atoms in a diatomic molecule is often approximated by #math.equation(block: false, alt: "U open parenthesis x close parenthesis equals a / x to the power 12 minus b / x to the power 6")[$U ( x ) = a "/" x^(12) − b "/" x^(6)$] where #emph[x] is the distance between the atoms. (a) At what distance of separation does the potential energy have a local minimum (not at #math.equation(block: false, alt: "x equals ∞ close parenthesis ?")[$x = ∞ \) ?$] (b) What is the force on an atom at this separation? (c) How does the force vary with the separation distance? #solutionbox[ a. #math.equation(block: false, alt: "open parenthesis the fraction 2 a over b close parenthesis to the power 1 / 6")[$attach(( frac(2 a, b) ), t: 1 "/" 6)$]; b. #math.equation(block: false, alt: "0")[$0$]; c. #math.equation(block: false, alt: "∼ x to the power 6")[$∼ x^(6)$] ] A particle of mass #math.equation(block: false, alt: "2.0 kg")[$2.0 #h(0.2em) "kg"$] moves under the influence of the force #math.equation(block: false, alt: "F open parenthesis x close parenthesis equals open parenthesis 3 / the square root of x close parenthesis N .")[$F ( x ) = ( 3 "/" sqrt(x) ) #h(0.2em) "N" .$] If its speed at #math.equation(block: false, alt: "x equals 2.0 m")[$x = 2.0 #h(0.2em) "m"$] is #math.equation(block: false, alt: "v equals 6.0 m/s,")[$v = 6.0 #h(0.2em) "m/s,"$] what is its speed at #math.equation(block: false, alt: "x equals 7.0 m?")[$x = 7.0 #h(0.2em) "m?"$] A particle of mass #math.equation(block: false, alt: "2.0 kg")[$2.0 #h(0.2em) "kg"$] moves under the influence of the force #math.equation(block: false, alt: "F open parenthesis x close parenthesis equals open parenthesis −5 x squared plus 7 x close parenthesis N .")[$F ( x ) = ( −5 x^(2) + 7 x ) #h(0.2em) "N" .$] If its speed at #math.equation(block: false, alt: "x equals −4.0 m")[$x = −4.0 #h(0.2em) "m"$] is #math.equation(block: false, alt: "v equals 20.0 m/s,")[$v = 20.0 #h(0.2em) "m/s,"$] what is its speed at #math.equation(block: false, alt: "x equals 4.0 m ?")[$x = 4.0 #h(0.2em) "m" ?$] #solutionbox[ #math.equation(block: true, alt: "14 m / s")[$14 #h(0.2em) "m" "/" "s"$] ] A crate on rollers is being pushed without frictional loss of energy across the floor of a freight car (see the following figure). The car is moving to the right with a constant speed #math.equation(block: false, alt: "v sub 0 .")[$v_(0) .$] If the crate starts at rest relative to the freight car, then from the work-energy theorem, #math.equation(block: false, alt: "F d equals m v squared / 2 ,")[$F d = m v^(2) "/" 2 ,$] where #emph[d], the distance the crate moves, and #emph[v], the speed of the crate, are both measured relative to the freight car. (a) To an observer at rest beside the tracks, what distance #math.equation(block: false, alt: "d ′")[$d "′"$] is the crate pushed when it moves the distance #emph[d] in the car? (b) What are the crate’s initial and final speeds #math.equation(block: false, alt: "v sub 0 ′")[$v_(0) "′"$] and #math.equation(block: false, alt: "v ′")[$v "′"$] as measured by the observer beside the tracks? (c) Show that #math.equation(block: false, alt: "F d ′ equals m open parenthesis v ′ close parenthesis squared / 2 minus m open parenthesis v ′ sub 0 close parenthesis squared / 2")[$F d "′" = m attach(( v "′" ), t: 2) "/" 2 − m attach(( v "′"_(0) ), t: 2) "/" 2$] and, consequently, that work is equal to the change in kinetic energy in both reference systems. #figure(figph[A drawing of a crate on rollers being pushed across the floor of a freight car. The crate has mass m,it is being pushed to the right with a force F, and the car has a velocity v sub zero to the right.], alt: "A drawing of a crate on rollers being pushed across the floor of a freight car. The crate has mass m,it is being pushed to the right with a force F, and the car has a velocity v sub zero to the right.", caption: none)