#set document(title: "8.4 Capacitor with a Dielectric", 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.4#h(0.6em)Capacitor with a Dielectric As we discussed earlier, an insulating material placed between the plates of a capacitor is called a dielectric. Inserting a dielectric between the plates of a capacitor affects its capacitance. To see why, let’s consider an experiment described in . Initially, a capacitor with capacitance #math.equation(block: false, alt: "C sub 0")[$C_(0)$] when there is air between its plates is charged by a battery to voltage #math.equation(block: false, alt: "V sub 0")[$V_(0)$]. When the capacitor is fully charged, the battery is disconnected. A charge #math.equation(block: false, alt: "Q sub 0")[$Q_(0)$] then resides on the plates, and the potential difference between the plates is measured to be #math.equation(block: false, alt: "V sub 0")[$V_(0)$]. Now, suppose we insert a dielectric that #emph[totally] fills the gap between the plates. If we monitor the voltage, we find that the voltmeter reading has dropped to a #emph[smaller] value #emph[V]. We write this new voltage value as a fraction of the original voltage #math.equation(block: false, alt: "V sub 0")[$V_(0)$], with a positive number #math.equation(block: false, alt: "κ")[$κ$], #math.equation(block: false, alt: "κ greater than 1")[$κ > 1$]: #math.equation(block: true, alt: "V equals the fraction 1 over κ V sub 0 .")[$V = frac(1, κ) V_(0) .$] The constant #math.equation(block: false, alt: "κ")[$κ$] in this equation is called the #strong[dielectric constant] of the material between the plates, and its value is characteristic for the material. A detailed explanation for why the dielectric reduces the voltage is given in the next section. Different materials have different dielectric constants (a table of values for typical materials is provided in the next section). Once the battery becomes disconnected, there is no path for a charge to flow to the battery from the capacitor plates. Hence, the insertion of the dielectric has no effect on the charge on the plate, which remains at a value of #math.equation(block: false, alt: "Q sub 0")[$Q_(0)$]. Therefore, we find that the capacitance of the capacitor with a dielectric is #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #math.equation(block: true, alt: "C equals the fraction Q sub 0 over V equals the fraction Q sub 0 over V sub 0 / κ equals κ the fraction Q sub 0 over V sub 0 equals κ C sub 0 .")[$C = frac(Q_(0), V) = frac(Q_(0), V_(0) "/" κ) = κ frac(Q_(0), V_(0)) = κ C_(0) .$] ] This equation tells us that the #emph[capacitance] #math.equation(block: false, alt: "C sub 0")[$C_(0)$] #emph[of an empty (vacuum) capacitor can be increased by a factor of] #math.equation(block: false, alt: "κ")[$κ$] #emph[when we insert a dielectric material to completely fill the space between its plates]. Note that can also be used for an empty capacitor by setting #math.equation(block: false, alt: "κ equals 1")[$κ = 1$]. In other words, we can say that the dielectric constant of the vacuum is 1, which is a reference value. #figure(figph[Figure a shows a capacitor connected in series with a switch and a battery. The switched is closed and there is a voltmeter across the capacitor, showing the reading V0. The plates of the capacitor have charge +Q0 and –Q0. Figure b shows the same circuit, with the switch open. This is labeled Step 1. The space between the plates of the capacitor is grey colored, indicating the presence of a dielectric. This is labeled Step 2. The positively charged plate has negative signs on the inside, labeled –Qi. The negatively charged plate has positive signs on the inside, labeled plus Qi. The voltmeter shows the reading V, which is less than V0.], alt: "Figure a shows a capacitor connected in series with a switch and a battery. The switched is closed and there is a voltmeter across the capacitor, showing the reading V0. The plates of the capacitor have charge +Q0 and –Q0. Figure b shows the same circuit, with the switch open. This is labeled Step 1. The space between the plates of the capacitor is grey colored, indicating the presence of a dielectric. This is labeled Step 2. The positively charged plate has negative signs on the inside, labeled –Qi. The negatively charged plate has positive signs on the inside, labeled plus Qi. The voltmeter shows the reading V, which is less than V0.", caption: [(a) When fully charged, a vacuum capacitor has a voltage #math.equation(block: false, alt: "V sub 0")[$V_(0)$] and charge #math.equation(block: false, alt: "Q sub 0")[$Q_(0)$] (the charges remain on plate’s inner surfaces; the schematic indicates the sign of charge on each plate). (b) In step 1, the battery is disconnected. Then, in step 2, a dielectric (that is electrically neutral) is inserted into the charged capacitor. When the voltage across the capacitor is now measured, it is found that the voltage value has decreased to #math.equation(block: false, alt: "V equals V sub 0 / κ")[$V = V_(0) "/" κ$]. The schematic indicates the sign of the induced charge that is now present on the surfaces of the dielectric material between the plates.]) The principle expressed by is widely used in the construction industry . Metal plates in an electronic stud finder act effectively as a capacitor. You place a stud finder with its flat side on the wall and move it continually in the horizontal direction. When the finder moves over a wooden stud, the capacitance of its plates changes, because wood has a different dielectric constant than a gypsum wall. This change triggers a signal in a circuit, and thus the stud is detected. #figure(figph[Figure a is a photograph of a person’s hand holding an electronic stud finder against a wall. Figure b shows the cross section of a wall with a wooden stud behind it. The electronic stud finder is being slid across the wall on the other side. It has capacitor plates that touch the wall.], alt: "Figure a is a photograph of a person’s hand holding an electronic stud finder against a wall. Figure b shows the cross section of a wall with a wooden stud behind it. The electronic stud finder is being slid across the wall on the other side. It has capacitor plates that touch the wall.", caption: [An electronic stud finder is used to detect wooden studs behind drywall.]) The electrical energy stored by a capacitor is also affected by the presence of a dielectric. When the energy stored in an empty capacitor is #math.equation(block: false, alt: "U sub 0")[$U_(0)$], the energy #emph[U] stored in a capacitor with a dielectric is smaller by a factor of #math.equation(block: false, alt: "κ")[$κ$], #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #math.equation(block: true, alt: "U equals the fraction 1 over 2 the fraction Q squared over C equals the fraction 1 over 2 the fraction Q 0 2 over κ C sub 0 equals the fraction 1 over κ U sub 0 .")[$U = frac(1, 2) #h(0.2em) frac(Q^(2), C) = frac(1, 2) #h(0.2em) frac(Q_(0)^(2), κ C_(0)) = frac(1, κ) U_(0) .$] ] As a dielectric material sample is brought near an empty charged capacitor, the sample reacts to the electrical field of the charges on the capacitor plates. Just as we learned in Electric Charges and Fields on electrostatics, there will be the induced charges on the surface of the sample; however, they are not free charges like in a conductor, because a perfect insulator does not have freely moving charges. These induced charges on the dielectric surface are of an opposite sign to the free charges on the plates of the capacitor, and so they are attracted by the free charges on the plates. Consequently, the dielectric is “pulled” into the gap, and the work to polarize the dielectric material between the plates is done at the expense of the stored electrical energy, which is reduced, in accordance with . #examplebox("Example 1")[Inserting a Dielectric into an Isolated Capacitor][ An empty 20.0-pF capacitor is charged to a potential difference of 40.0 V. The charging battery is then disconnected, and a piece of Teflon™ with a dielectric constant of 2.1 is inserted to completely fill the space between the capacitor plates. What are the values of (a) the capacitance, (b) the charge of the plate, (c) the potential difference between the plates, and (d) the energy stored in the capacitor with and without dielectric? Strategy We identify the original capacitance #math.equation(block: false, alt: "C sub 0 equals 20.0 pF")[$C_(0) = 20.0 #h(0.2em) "pF"$] and the original potential difference #math.equation(block: false, alt: "V sub 0 equals 40.0 V")[$V_(0) = 40.0 #h(0.2em) "V"$] between the plates. We combine with other relations involving capacitance and substitute. Solution + The capacitance increases to #math.equation(block: true, alt: "C equals κ C sub 0 equals 2.1 open parenthesis 20.0 pF close parenthesis equals 42.0 pF .")[$C = κ C_(0) = 2.1 ( 20.0 #h(0.2em) "pF" ) = 42.0 #h(0.2em) "pF" .$] + Without dielectric, the charge on the plates is #math.equation(block: true, alt: "Q sub 0 equals C sub 0 V sub 0 equals open parenthesis 20.0 pF close parenthesis open parenthesis 40.0 V close parenthesis equals 0.8 nC .")[$Q_(0) = C_(0) V_(0) = ( 20.0 #h(0.2em) "pF" ) ( 40.0 #h(0.2em) "V" ) = 0.8 #h(0.2em) "nC" .$] Since the battery is disconnected before the dielectric is inserted, the plate charge is unaffected by the dielectric and remains at 0.8 nC. + With the dielectric, the potential difference becomes #math.equation(block: true, alt: "V equals the fraction 1 over κ V sub 0 equals the fraction 1 over 2.1 40.0 V equals 19.0 V .")[$V = frac(1, κ) V_(0) = frac(1, 2.1) 40.0 #h(0.2em) "V" = 19.0 #h(0.2em) "V" .$] + The stored energy without the dielectric is #math.equation(block: true, alt: "U sub 0 equals the fraction 1 over 2 C sub 0 V 0 2 equals the fraction 1 over 2 open parenthesis 20.0 pF close parenthesis open parenthesis 40.0 V close parenthesis squared equals 16.0 nJ .")[$U_(0) = frac(1, 2) C_(0) V_(0)^(2) = frac(1, 2) ( 20.0 #h(0.2em) "pF" ) attach(( 40.0 #h(0.2em) "V" ), t: 2) = 16.0 #h(0.2em) "nJ" .$] With the dielectric inserted, we use to find that the stored energy decreases to #math.equation(block: true, alt: "U equals the fraction 1 over κ U sub 0 equals the fraction 1 over 2.1 16.0 nJ equals 7.6 nJ .")[$U = frac(1, κ) U_(0) = frac(1, 2.1) 16.0 #h(0.2em) "nJ" = 7.6 #h(0.2em) "nJ" .$] Significance Notice that the effect of a dielectric on the capacitance of a capacitor is a drastic increase of its capacitance. This effect is far more profound than a mere change in the geometry of a capacitor. ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ When a dielectric is inserted into an isolated and charged capacitor, the stored energy decreases to 33% of its original value. (a) What is the dielectric constant? (b) How does the capacitance change? #solutionbox[ a. 3.0; b. #math.equation(block: false, alt: "C equals 3.0 C sub 0")[$C = 3.0 #h(0.2em) C_(0)$] ] ] === Summary - The capacitance of an empty capacitor is increased by a factor of #math.equation(block: false, alt: "κ")[$κ$] when the space between its plates is completely filled by a dielectric with dielectric constant #math.equation(block: false, alt: "κ")[$κ$]. - Each dielectric material has its specific dielectric constant. - The energy stored in an empty isolated capacitor is decreased by a factor of #math.equation(block: false, alt: "κ")[$κ$] when the space between its plates is completely filled with a dielectric with dielectric constant #math.equation(block: false, alt: "κ")[$κ$] while disconnecting the battery and keeping the charge on the capacitor constant. === Conceptual Questions Discuss what would happen if a conducting slab rather than a dielectric were inserted into the gap between the capacitor plates. #solutionbox[ answers may vary ] Discuss how the energy stored in an empty but charged capacitor changes when a dielectric is inserted if (a) the capacitor is isolated so that its charge does not change; (b) the capacitor remains connected to a battery so that the potential difference between its plates does not change. === Problems Show that for a given dielectric material, the maximum energy a parallel-plate capacitor can store is directly proportional to the volume of dielectric. An air-filled capacitor is made from two flat parallel plates 1.0 mm apart. The inside area of each plate is #math.equation(block: false, alt: "8.0 cm squared")[$8.0 #h(0.2em) "cm"^(2)$]. (a) What is the capacitance of this set of plates? (b) If the region between the plates is filled with a material whose dielectric constant is 6.0, what is the new capacitance? #solutionbox[ a. 7.1 pF; b. 42 pF ] A capacitor is made from two concentric spheres, one with radius 5.00 cm, the other with radius 8.00 cm. (a) What is the capacitance of this set of conductors? (b) If the region between the conductors is filled with a material whose dielectric constant is 6.00, what is the capacitance of the system? A parallel-plate capacitor has charge of magnitude #math.equation(block: false, alt: "9.00 μ C")[$9.00 #h(0.2em) μ "C"$] on each plate and capacitance #math.equation(block: false, alt: "3.00 μ F")[$3.00 #h(0.2em) μ "F"$] when there is air between the plates. The plates are separated by 2.00 mm. With the charge on the plates kept constant, a dielectric with #math.equation(block: false, alt: "κ equals 5")[$κ = 5$] is inserted between the plates, completely filling the volume between the plates. (a) What is the potential difference between the plates of the capacitor, before and after the dielectric has been inserted? (b) What is the electrical field at the point midway between the plates before and after the dielectric is inserted? #solutionbox[ a. before 3.00 V; after 0.600 V; b. before 1500 V/m; after 300 V/m ] Some cell walls in the human body have a layer of negative charge on the inside surface. Suppose that the surface charge densities are #math.equation(block: false, alt: "plus or minus 0.5 0 times 1 0 to the power −3 C / m squared")[$± 0.5 0 #h(0.2em) × #h(0.2em) 1 0^(−3) "C" "/" "m"^(2)$], the cell wall is #math.equation(block: false, alt: "5. 0 times 1 0 to the power −9 m")[$5. 0 #h(0.2em) × #h(0.2em) 1 0^(−9) "m"$] thick, and the cell wall material has a dielectric constant of #math.equation(block: false, alt: "κ equals 5.4")[$κ = 5.4$]. (a) Find the magnitude of the electric field in the wall between two charge layers. (b) Find the potential difference between the inside and the outside of the cell. Which is at higher potential? (c) A typical cell in the human body has volume #math.equation(block: false, alt: "10 to the power −16 m cubed .")[$10^(−16) "m"^(3) .$] Estimate the total electrical field energy stored in the wall of a cell of this size when assuming that the cell is spherical. (#emph[Hint]: Calculate the volume of the cell wall.) A parallel-plate capacitor with only air between its plates is charged by connecting the capacitor to a battery. The capacitor is then disconnected from the battery, without any of the charge leaving the plates. (a) A voltmeter reads 45.0 V when placed across the capacitor. When a dielectric is inserted between the plates, completely filling the space, the voltmeter reads 11.5 V. What is the dielectric constant of the material? (b) What will the voltmeter read if the dielectric is now pulled away out so it fills only one-third of the space between the plates? #solutionbox[ a. 3.91; b. 22.8 V ]