#set document(title: "14.6 RLC Series Circuits", 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")) == 14.6#h(0.6em)RLC Series Circuits When the switch is closed in the #strong[#emph[RLC] circuit] of (a), the capacitor begins to discharge and electromagnetic energy is dissipated by the resistor at a rate #math.equation(block: false, alt: "i squared R")[$i^(2) R$]. With #emph[U] given by , we have #math.equation(block: true, alt: "the fraction d U over d t equals the fraction q over C the fraction d q over d t plus L i the fraction d i over d t equals − i squared R")[$frac(d U, d t) = frac(q, C) #h(0.2em) frac(d q, d t) + L i frac(d i, d t) = "−" i^(2) R$] where #emph[i] and #emph[q] are time-dependent functions. This reduces to #math.equation(block: true, alt: "L the fraction d squared q over d t squared plus R the fraction d q over d t plus the fraction 1 over C q equals 0 .")[$L frac(d^(2) q, d t^(2)) + R frac(d q, d t) + frac(1, C) q = 0 .$] #figure(figph[Figure a is a circuit with a capacitor, an inductor and a resistor in series with each other. They are also in series with a switch, which is open. Figure b shows the graph of charge versus time. The charge is at maximum value, q0, at t=0. The curve is similar to a sine wave that reduces in amplitude till it becomes zero.], alt: "Figure a is a circuit with a capacitor, an inductor and a resistor in series with each other. They are also in series with a switch, which is open. Figure b shows the graph of charge versus time. The charge is at maximum value, q0, at t=0. The curve is similar to a sine wave that reduces in amplitude till it becomes zero.", caption: [(a) An #emph[RLC] circuit. Electromagnetic oscillations begin when the switch is closed. The capacitor is fully charged initially. (b) Damped oscillations of the capacitor charge are shown in this curve of charge versus time, or #emph[q] versus #emph[t]. The capacitor contains a charge #math.equation(block: false, alt: "q sub 0")[$q_(0)$] before the switch is closed.]) This equation is analogous to #math.equation(block: true, alt: "m the fraction d squared x over d t squared plus b the fraction d x over d t plus k x equals 0 ,")[$m frac(d^(2) x, d t^(2)) + b frac(d x, d t) + k x = 0 ,$] which is the equation of motion for a #emph[damped mass-spring system] (you first encountered this equation in Oscillations). As we saw in that chapter, it can be shown that the solution to this differential equation takes three forms, depending on whether the angular frequency of the undamped spring is greater than, equal to, or less than #emph[b]/2#emph[m]. Therefore, the result can be underdamped #math.equation(block: false, alt: "open parenthesis the square root of k / m greater than b / 2 m close parenthesis")[$( sqrt(k "/" m) > b "/" 2 m )$], critically damped #math.equation(block: false, alt: "open parenthesis the square root of k / m equals b / 2 m close parenthesis")[$( sqrt(k "/" m) = b "/" 2 m )$], or overdamped #math.equation(block: false, alt: "open parenthesis the square root of k / m less than b / 2 m close parenthesis")[$( sqrt(k "/" m) < b "/" 2 m )$]. By analogy, the solution #emph[q] (#emph[t]) to the #emph[RLC] differential equation has the same feature. Here we look only at the case of under-damping. By replacing #emph[m] by #emph[L], #emph[b] by #emph[R], #emph[k] by 1/#emph[C], and #emph[x] by #emph[q] in , and assuming #math.equation(block: false, alt: "the square root of 1 / L C greater than R / 2 L")[$sqrt(1 "/" L C) > R "/" 2 L$], we obtain #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #math.equation(block: true, alt: "q open parenthesis t close parenthesis equals q sub 0 e to the power − R t / 2 L cos open parenthesis ω ′ t plus ϕ close parenthesis")[$q ( t ) = q_(0) e^("−" R t "/" 2 L) #h(0.2em) "cos" ( ω "′" t + ϕ )$] ] where the angular frequency of the oscillations is given by #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #math.equation(block: true, alt: "ω prime equals the square root of the fraction 1 over L C minus open parenthesis the fraction R over 2 L close parenthesis squared")[$ω^(′) = sqrt(frac(1, L C) − attach(( frac(R, 2 L) ), t: 2))$] ] This underdamped solution is shown in (b). Notice that the amplitude of the oscillations decreases as energy is dissipated in the resistor. can be confirmed experimentally by measuring the voltage across the capacitor as a function of time. This voltage, multiplied by the capacitance of the capacitor, then gives #emph[q] (#emph[t]). The underdamped solution this section writes down, q(t) = q₀e^(−Rt/2L)cos(ω′t) with ω′ = √(1/LC − (R/2L)²), for the circuit the previous section's LC example builds: L = 2.0 × 10⁻² H, C = 8.0 × 10⁻⁶ F and an initial charge q₀ = 1.2 × 10⁻⁵ C. The horizontal axis is time in milliseconds and the vertical axis is the charge on the capacitor in microcoulombs; the two dashed curves are the ±q₀e^(−Rt/2L) envelope. Adding R is the only thing this section changes, and it is the slider. At 0 Ω nothing decays and you are back in the pure LC circuit, oscillating at ω = 1/√(LC) = 2500 rad/s with a 2.51 ms period. At the default 2.0 Ω the envelope's time constant is 2L/R = 20 ms, so the amplitude halves after 2L ln2/R = 13.9 ms — you can count that off against the envelope. Keep going and the oscillations disappear entirely: the square root closes at R = 2√(L/C) = 100 Ω, which is where the circuit stops ringing and simply decays.{"functions":\[{"color":"\#1f4e79","domain":\[0,42\],"expression":"12\*exp(-R0\*t/40)\*cos(sqrt(6.25 - 0.000625\*R0^2)\*t)","expression2":"","id":"damped-charge","inequality":"lt","lineDash":\[\],"lineWidth":2,"mode":"cartesian","tMax":10,"tMin":-10,"variable":"t","visible":true},{"color":"\#b8442a","domain":\[0,42\],"expression":"12\*exp(-R0\*t/40)","expression2":"","id":"upper-envelope","inequality":"lt","lineDash":\[6,4\],"lineWidth":1.5,"mode":"cartesian","tMax":10,"tMin":-10,"variable":"t","visible":true},{"color":"\#b8442a","domain":\[0,42\],"expression":"-12\*exp(-R0\*t/40)","expression2":"","id":"lower-envelope","inequality":"lt","lineDash":\[6,4\],"lineWidth":1.5,"mode":"cartesian","tMax":10,"tMin":-10,"variable":"t","visible":true}\],"grid":{"axisColor":"\#333333","gridColor":"\#cccccc","majorSpacing":5,"minorGridColor":"\#eeeeee","showAxes":true,"showLabels":true},"parameters":\[{"id":"up2-14-6-R0","label":"Series resistance R (critical damping at 100 \\u03a9)","max":95,"min":0,"name":"R0","step":0.5,"unit":"\\u03a9","value":2}\],"title":"Charge on the capacitor of an RLC circuit, L = 20 mH, C = 8.0 \\u03bcF","version":1,"viewport":{"centerX":21,"centerY":0,"scale":18.1}}#notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ In the interactive circuit construction kit #link("https://openstax.org/l/21phetcirconstr")[simulation], you can add inductors and capacitors to work with any combination of R, L, and C circuits with both dc and ac sources. Then you can measure and evaluate current and voltage, and graph them as a function of time. ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ With the interactive DC circuit construction kit simulation below, you can add inductors and capacitors to work with any combination of R, L, and C circuits with both dc and ac sources. Then you can measure and evaluate current and voltage, and graph them as a function of time. #link("https://openstax.org/l/21cirphysbascur")[Open simulation: circuit construction kit in phet simulation] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ In an #emph[RLC] circuit, #math.equation(block: false, alt: "L equals 5.0 mH , C equals 6.0 μ F , and R equals 200 Ω .")[$L = 5.0 #h(0.2em) "mH" , C = 6.0 μ "F" , #h(0.2em) "and" #h(0.2em) R = 200 #h(0.2em) "Ω" .$] (a) Is the circuit underdamped, critically damped, or overdamped? (b) If the circuit starts oscillating with a charge of #math.equation(block: false, alt: "3.0 times 10 to the power −3 C")[$3.0 #h(0.2em) × #h(0.2em) 10^(−3) #h(0.2em) "C"$] on the capacitor, how much energy has been dissipated in the resistor by the time the oscillations cease? #solutionbox[ a. overdamped; b. 0.75 J ] ] === Summary - The underdamped solution for the capacitor charge in an #emph[RLC] circuit is #math.equation(block: true, alt: "q open parenthesis t close parenthesis equals q sub 0 e to the power − R t / 2 L cos open parenthesis ω ′ t plus ϕ close parenthesis .")[$q ( t ) = q_(0) e^("−" R t "/" 2 L) #h(0.2em) "cos" ( ω "′" t + ϕ ) .$] - The angular frequency given in the underdamped solution for the #emph[RLC] circuit is #math.equation(block: true, alt: "ω prime equals the square root of the fraction 1 over L C minus open parenthesis the fraction R over 2 L close parenthesis squared .")[$ω^(′) = sqrt(frac(1, L C) − attach(( frac(R, 2 L) ), t: 2)) .$] === Key Equations #figure(table( columns: 2, align: left, inset: 6pt, table.header([Mutual inductance by flux], [#math.equation(block: false, alt: "M equals the fraction N sub 2 Φ sub 21 over I sub 1 equals the fraction N sub 1 Φ sub 12 over I sub 2")[$M = frac(N_(2) "Φ"_(21), I_(1)) = frac(N_(1) "Φ"_(12), I_(2))$]]), [Mutual inductance in circuits], [#math.equation(block: false, alt: "ε sub 1 equals − M the fraction d I sub 2 over d t")[$ε_(1) = "−" M frac(d I_(2), d t)$]], [Self-inductance in terms of magnetic flux], [#math.equation(block: false, alt: "N Φ sub m equals L I")[$N "Φ"_("m") = L I$]], [Self-inductance in terms of emf], [#math.equation(block: false, alt: "ε equals − L the fraction d I over d t")[$ε = "−" L frac(d I, d t)$]], [Self-inductance of a solenoid], [#math.equation(block: false, alt: "L sub solenoid equals the fraction μ sub 0 N squared A over l")[$L_("solenoid") = frac(μ_(0) N^(2) A, l)$]], [Self-inductance of a toroid], [#math.equation(block: false, alt: "L sub toroid equals the fraction μ sub 0 N squared h over 2 π ln the fraction R sub 2 over R sub 1 .")[$L_("toroid") = frac(μ_(0) N^(2) h, 2 π) #h(0.2em) "ln" #h(0.2em) frac(R_(2), R_(1)) .$]], [Energy stored in an inductor], [#math.equation(block: false, alt: "U equals the fraction 1 over 2 L I squared")[$U = frac(1, 2) L I^(2)$]], [Current as a function of time for a #emph[RL] circuit], [#math.equation(block: false, alt: "I open parenthesis t close parenthesis equals the fraction ε over R open parenthesis 1 minus e to the power − t / τ sub L close parenthesis")[$I ( t ) = frac("ε", R) ( 1 − e^("−" t "/" τ_(L)) )$]], [Time constant for a #emph[RL] circuit], [#math.equation(block: false, alt: "τ sub L equals L / R")[$τ_(L) = L "/" R$]], [Charge oscillation in #emph[LC] circuits], [#math.equation(block: false, alt: "q open parenthesis t close parenthesis equals q sub 0 cos open parenthesis ω t plus ϕ close parenthesis")[$q ( t ) = q_(0) #h(0.2em) "cos" ( ω t + ϕ )$]], [Angular frequency in #emph[LC] circuits], [#math.equation(block: false, alt: "ω equals the square root of the fraction 1 over L C")[$ω = sqrt(frac(1, L C))$]], [Current oscillations in #emph[LC] circuits], [#math.equation(block: false, alt: "i open parenthesis t close parenthesis equals − ω q sub 0 sin open parenthesis ω t plus ϕ close parenthesis")[$i ( t ) = "−" ω q_(0) #h(0.2em) "sin" ( ω t + ϕ )$]], [Charge as a function of time in #emph[RLC] circuit], [#math.equation(block: false, alt: "q open parenthesis t close parenthesis equals q sub 0 e to the power − R t / 2 L cos open parenthesis ω ′ t plus ϕ close parenthesis")[$q ( t ) = q_(0) e^("−" R t "/" 2 L) #h(0.2em) "cos" ( ω "′" t + ϕ )$]], [Angular frequency in #emph[RLC] circuit], [#math.equation(block: false, alt: "ω ′ equals the square root of the fraction 1 over L C minus open parenthesis the fraction R over 2 L close parenthesis squared")[$ω "′" = sqrt(frac(1, L C) − attach(( frac(R, 2 L) ), t: 2))$]], )) === Conceptual Questions When a wire is connected between the two ends of a solenoid, the resulting circuit can oscillate like an #emph[RLC] circuit. Describe what causes the capacitance in this circuit. Describe what effect the resistance of the connecting wires has on an oscillating #emph[LC] circuit. #solutionbox[ This creates an #emph[RLC] circuit that dissipates energy, causing oscillations to decrease in amplitude slowly or quickly depending on the value of resistance. ] Suppose you wanted to design an #emph[LC] circuit with a frequency of 0.01 Hz. What problems might you encounter? A radio receiver uses an #emph[RLC] circuit to pick out particular frequencies to listen to in your house or car without hearing other unwanted frequencies. How would someone design such a circuit? #solutionbox[ You would have to pick out a resistance that is small enough so that only one station at a time is picked up, but big enough so that the tuner doesn’t have to be set at exactly the correct frequency. The inductance or capacitance would have to be varied to tune into the station however practically speaking, variable capacitors are a lot easier to build in a circuit. ] === Problems In an oscillating #emph[RLC] circuit, #math.equation(block: false, alt: "R equals 5.0 Ω , L equals 5.0 mH , and C equals 500 μ F .")[$R = 5.0 #h(0.2em) "Ω" , L = 5.0 #h(0.2em) "mH" , #h(0.2em) "and" #h(0.2em) C = 500 #h(0.2em) μ "F" .$] What is the angular frequency of the oscillations? In an oscillating #emph[RLC] circuit with #math.equation(block: false, alt: "L equals 10 mH , C equals 1.5 µ F , and R equals 2.0 Ω ,")[$L = 10 #h(0.2em) "mH" , C = 1.5 #h(0.2em) µ "F" , #h(0.2em) "and" #h(0.2em) R = 2.0 #h(0.2em) "Ω" ,$] how much time elapses before the amplitude of the oscillations drops to half its initial value? #solutionbox[ 6.9 ms ] What resistance #emph[R] must be connected in series with a 200-mH inductor and a #math.equation(block: false, alt: "10 μ F")[$10 μ "F"$] capacitor of the resulting #emph[RLC] oscillating circuit is to decay to #math.equation(block: false, alt: "50 %")[$50 "%"$] of its initial value of charge in 50 cycles? To #math.equation(block: false, alt: "0.10 %")[$0.10 "%"$] of its initial value in 50 cycles? === Additional Problems Show that the self-inductance per unit length of an infinite, straight, thin wire is infinite. #solutionbox[ Let #emph[a] equal the radius of the long, thin wire, #emph[r] the location where the magnetic field is measured, and #emph[R] the upper limit of the problem where we will take #emph[R] as it approaches infinity. #linebreak() proof #math.equation(block: false, alt: "Outside, B, equals, the fraction μ sub 0 I over 2 π r Inside, B equals the fraction μ sub 0 I r over 2 π a squared; U, equals, the fraction μ sub 0 I squared l over 4 π open parenthesis the fraction 1 over 4 plus ln the fraction R over a close parenthesis; So, the fraction 2 U over I squared, equals, the fraction μ sub 0 l over 2 π open parenthesis the fraction 1 over 4 plus ln the fraction R over a close parenthesis and L equals ∞")[$"Outside," #h(1em) B & = & frac(μ_(0) I, 2 π r) #h(0.5em) "Inside," #h(1em) B = frac(μ_(0) I r, 2 π a^(2)) \ U & = & frac(μ_(0) I^(2) l, 4 π) ( frac(1, 4) + "ln" #h(0.2em) frac(R, a) ) \ "So," #h(2em) frac(2 U, I^(2)) & = & frac(μ_(0) l, 2 π) ( frac(1, 4) + "ln" #h(0.2em) frac(R, a) ) #h(0.5em) "and" #h(1em) L = ∞$] ] Two long, parallel wires carry equal currents in opposite directions. The radius of each wire is #emph[a], and the distance between the centers of the wires is #emph[d]. Show that if the magnetic flux within the wires themselves can be ignored, the self-inductance of a length #emph[l] of such a pair of wires is #math.equation(block: true, alt: "L equals the fraction μ sub 0 l over π ln the fraction d minus a over a .")[$L = frac(μ_(0) l, π) #h(0.2em) "ln" #h(0.2em) frac(d − a, a) .$] (#emph[Hint]: Calculate the magnetic flux through a rectangle of length #emph[l] between the wires and then use #math.equation(block: false, alt: "L equals N Φ / I")[$L = N "Φ" "/" I$].) A small, rectangular single loop of wire with dimensions #emph[l], and #emph[a] is placed, as shown below, in the plane of a much larger, rectangular single loop of wire. The two short sides of the larger loop are so far from the smaller loop that their magnetic fields over the smaller fields over the smaller loop can be ignored. What is the mutual inductance of the two loops? #figure(figph[The figure shows a rectangular loop of wire. The length of the rectangle is l and width is a. On both sides of the rectangle are wires parallel to its length. They are a distance d away from the rectangle. Current I1 flows through both in opposites directions.], alt: "The figure shows a rectangular loop of wire. The length of the rectangle is l and width is a. On both sides of the rectangle are wires parallel to its length. They are a distance d away from the rectangle. Current I1 flows through both in opposites directions.", caption: none) #solutionbox[ #math.equation(block: true, alt: "M equals the fraction μ sub 0 l over π ln the fraction d plus a over d")[$M = frac(μ_(0) l, π) #h(0.2em) "ln" #h(0.2em) frac(d + a, d)$] ] Suppose that a cylindrical solenoid is wrapped around a core of iron whose magnetic susceptibility is #strong[#emph[x]]. Using , show that the self-inductance of the solenoid is given by #math.equation(block: true, alt: "L equals the fraction open parenthesis 1 plus x close parenthesis μ sub 0 N squared A over l ,")[$L = frac(( 1 + x ) μ_(0) N^(2) A, l) ,$] where #emph[l] is its length, #emph[A] its cross-sectional area, and #emph[N] its total number of turns. A solenoid with #math.equation(block: false, alt: "4 x 10 to the power 7")[$4 x 10^(7)$] turns/m has an iron core placed in it whose magnetic susceptibility is #math.equation(block: false, alt: "4.0 times 10 cubed")[$4.0 #h(0.2em) × #h(0.2em) 10^(3)$]. (a) If a current of 2.0 A flows through the solenoid, what is the magnetic field in the iron core? (b) What is the effective surface current formed by the aligned atomic current loops in the iron core? (c) What is the self-inductance of the filled solenoid? #solutionbox[ a. 100 T; b. 2 A; c. 0.50 H ] A rectangular toroid with inner radius #math.equation(block: false, alt: "R sub 1 equals 7.0 cm,")[$R_(1) = 7.0 #h(0.2em) "cm,"$] outer radius #math.equation(block: false, alt: "R sub 2 equals 9.0 cm")[$R_(2) = 9.0 #h(0.2em) "cm"$], height #math.equation(block: false, alt: "h equals 3.0")[$h = 3.0$], and #math.equation(block: false, alt: "N equals 3000")[$N = 3000$] turns is filled with an iron core of magnetic susceptibility #math.equation(block: false, alt: "5.2 times 10 cubed")[$5.2 #h(0.2em) × #h(0.2em) 10^(3)$]. (a) What is the self-inductance of the toroid? (b) If the current through the toroid is 2.0 A, what is the magnetic field at the center of the core? (c) For this same 2.0-A current, what is the effective surface current formed by the aligned atomic current loops in the iron core? The switch S of the circuit shown below is closed at #math.equation(block: false, alt: "t equals 0")[$t = 0$]. Determine (a) the initial current through the battery and (b) the steady-state current through the battery. #figure(figph[A 12 volt battery is connected in series with a 5 ohm resistor, a 1 Henry inductor, a 3 ohm resistor and an open switch S. Parallel to the 3 ohm resistor is a 2 Henry inductor.], alt: "A 12 volt battery is connected in series with a 5 ohm resistor, a 1 Henry inductor, a 3 ohm resistor and an open switch S. Parallel to the 3 ohm resistor is a 2 Henry inductor.", caption: none) #solutionbox[ a. 0 A; b. 2.4 A ] In an oscillating #emph[RLC] circuit, #math.equation(block: false, alt: "R equals 7.0 Ω , L equals 10 mH , and C equals 3.0 μ F")[$R = 7.0 #h(0.2em) "Ω" , L = 10 #h(0.2em) "mH" , #h(0.2em) "and" #h(0.2em) C = 3.0 #h(0.2em) μ "F"$]. Initially, the capacitor has a charge of #math.equation(block: false, alt: "8.0 μ C")[$8.0 #h(0.2em) μ "C"$] and the current is zero. Calculate the charge on the capacitor (a) five cycles later and (b) 50 cycles later. A 25.0-H inductor has 100 A of current turned off in 1.00 ms. (a) What voltage is induced to oppose this? (b) What is unreasonable about this result? (c) Which assumption or premise is responsible? #solutionbox[ a. #math.equation(block: false, alt: "2.50 times 10 to the power 6 V")[$2.50 #h(0.2em) × #h(0.2em) 10^(6) #h(0.2em) "V"$]; (b) The voltage is so extremely high that arcing would occur and the current would not be reduced so rapidly. (c) It is not reasonable to shut off such a large current in such a large inductor in such an extremely short time. ] === Challenge Problems A coaxial cable has an inner conductor of radius a, and outer thin cylindrical shell of radius b. A current #emph[I] flows in the inner conductor and returns in the outer conductor. The self-inductance of the structure will depend on how the current in the inner cylinder tends to be distributed. Investigate the following two extreme cases. (a) Let current in the inner conductor be distributed only on the surface and find the self-inductance. (b) Let current in the inner cylinder be distributed uniformly over its cross-section and find the self-inductance. Compare with your results in (a). In a damped oscillating circuit the energy is dissipated in the resistor. The #emph[Q]-factor is a measure of the persistence of the oscillator against the dissipative loss. (a) Prove that for a lightly damped circuit the energy, #emph[U], in the circuit decreases according to the following equation. #math.equation(block: false, alt: "the fraction d U over d t equals −2 β U ,")[$frac(d U, d t) = −2 β U ,$] where #math.equation(block: false, alt: "β equals the fraction R over 2 L .")[$β = frac(R, 2 L) .$] (b) Using the definition of the #emph[Q]-factor as energy divided by the loss over the next cycle, prove that #emph[Q]-factor of a lightly damped oscillator as defined in this problem is $$ #math.equation(block: true, alt: "Q ≡ the fraction U sub begin over Δ U sub one cycle equals the fraction 1 over 2 π R the square root of the fraction L over C .")[$Q ≡ frac(U_("begin"), "Δ" U_("one cycle")) = frac(1, 2 π R) sqrt(frac(L, C)) .$] (#emph[Hint:] For (b), to obtain #emph[Q], divide #emph[E] at the beginning of one cycle by the change #math.equation(block: false, alt: "Δ E")[$"Δ" E$] over the next cycle.) #solutionbox[ proof ] The switch in the circuit shown below is closed at #math.equation(block: false, alt: "t equals 0 s")[$t = 0 #h(0.2em) "s"$]. Find currents through (a) #math.equation(block: false, alt: "R sub 1")[$R_(1)$], (b) #math.equation(block: false, alt: "R sub 2")[$R_(2)$], and (c) the battery as function of time. #figure(figph[A 12 volt battery is connected to a 6 ohm resistor and a switch S, which is open at time t=0. Connected in parallel with the 6 ohm resistor are another 6 ohm resistor and a 24 Henry inductor.], alt: "A 12 volt battery is connected to a 6 ohm resistor and a switch S, which is open at time t=0. Connected in parallel with the 6 ohm resistor are another 6 ohm resistor and a 24 Henry inductor.", caption: none) A square loop of side 2 cm is placed 1 cm from a long wire carrying a current that varies with time at a constant rate of 3 A/s as shown below. (a) Use Ampère’s law and find the magnetic field. (b) Determine the magnetic flux through the loop. (c) If the loop has a resistance of #math.equation(block: false, alt: "3 Ω")[$3 #h(0.2em) "Ω"$], how much induced current flows in the loop? #figure(figph[A 12 volt battery is connected to a 6 ohm resistor and a switch S, which is open at time t=0. Connected in parallel with the 6 ohm resistor are another 6 ohm resistor and a 24 Henry inductor.], alt: "A 12 volt battery is connected to a 6 ohm resistor and a switch S, which is open at time t=0. Connected in parallel with the 6 ohm resistor are another 6 ohm resistor and a 24 Henry inductor.", caption: none) #solutionbox[ a. #math.equation(block: false, alt: "the fraction d B over d t equals 6 times 10 to the power −6 T/s;")[$frac(d B, d t) = 6 #h(0.2em) × #h(0.2em) 10^(−6) #h(0.2em) "T/s;"$] b. #math.equation(block: false, alt: "Φ equals the fraction μ sub 0 a I over 2 π ln open parenthesis the fraction a plus b over b close parenthesis")[$"Φ" = frac(μ_(0) a I, 2 π) #h(0.2em) "ln" #h(0.2em) ( frac(a + b, b) )$]; c. 4.4 nA ]