title, topic, keyword
Small group, whiteboard, etc
Required in-class time for activities
Leave blank to search both

Activities

Students work in small groups to use the superposition principle \[V(\vec{r}) =\frac{1}{4\pi\epsilon_0}\int\frac{\rho(\vec{r}^{\,\prime})}{\vert \vec{r}-\vec{r}^{\,\prime}\vert} \, d\tau^{\prime}\] to find an integral expression for the electrostatic potential, \(V(\vec{r})\), everywhere in space, due to a ring of charge.

In an optional extension, students find a series expansion for \(V(\vec{r})\) either on the axis or in the plane of the ring, for either small or large values of the relevant geometric variable. Add an extra half hour or more to the time estimate for the optional extension.

  • The superposition principle for the electrostatic potential;
  • How to calculate the distance formula \(\frac{1}{|\vec{r} - \vec{r}'|}\) for a simple specific geometric situation;
  • How to calculate the first few terms of a (binomial) power series expansion by factoring out the dimensionful quantity which is large;
  • How the symmetries of a physical situation are reflected in the symmetries of the power series expansion.
Students write python programs to compute the potential due to a square of surface charge, and then to visualize the result. This activity can be used to introduce students to the process of integrating numerically.

Computational Activity

120 min.

Electrostatic potential of spherical shell
Students solve numerically for the potential due to a spherical shell of charge. Although this potential is straightforward to compute using Gauss's Law, it serves as a nice example for numerically integrating in spherical coordinates because the correct answer is easy to recognize.

Computational Activity

120 min.

Electrostatic Potential of Four Point Charges
This is a great first programming activity.
Consider a system consisting of four point charges arranged on the corners of a square in 3D Cartesian space of coordinates \((x,y,z)\).
  1. Write a python function that returns the potential at any point in space caused by four equal point charges forming a square. Make the sides of the square parallel to the \(x\) and \(y\) axes and on the \(z=0\) plane.

    To do this you will need the expression for a the potential due to a single point charge \(V= \frac{k_Cq}{r}\) where \(r\) is the distance from the point charge. You will also need to use the fact that the total potential is the sum of the potentials due to each individual point charge.

    It is important that we ask students first to create a function for the potential, and only then try to visualize the potential. This allows students to reason about the computation for a single point in space (defined in their choice of coordinate systems).

  2. Once you have written the above function, use it to plot the electrostatic potential versus position along the three cartesian axes.

    Since the students have already written a function for their potential, they can create a plot by creating an array for \(x\) (or \(y\), or \(z\)), and then passing that array to their function, along with scalars for the other two coordinates. Many students will discover this simply by modifying an example script they find on the web, replacing \(\sin(x)\) or similar with their function. It is well worth showing this easier approach to students who attempt who attempt to write a loop in order to compute the potential at each point in space.

    We ask students to explicitly plot the potential along axes because students seldom spontaneously think to create a 1D plot such as this.

  3. Label your axes.
  4. Work out the first non-zero term in a power series approximation for the potential at large \(x\), small \(x\), etc. Plot these approximations along with your computed potential, and verify that they agree in the range that you expect. Useful 1\(^{st}\) order Taylor expansions are: \begin{eqnarray} \sqrt{1+\epsilon} &\sim& 1+\frac{\epsilon}{2} \\ \frac{1}{1+\epsilon} &=& 1-\epsilon \end{eqnarray} where \(\epsilon\) is a small quantity.

    This may need to be omitted on the first Tuesday of class, since students probably will not yet have seen power series approximations. It may work in this case to at least talk about what is expected at large distance, since "it looks like a point charge" is reasoning students do make.

    Students struggle with the \(x\) approximations (assuming the square is in the xy plane). Each pair will probably need to have a little lecture on grouping terms according to the power of \(x\), and keeping only those terms for which they have every instance.

Extra fun
Create one or more different visualizations of the electrostatic potential. For example a 2D representation in the \(z=0\) plane.
More extra fun
Create a plot of the potential along a straight line that is not one of the axes. Hint: start from a line on the \(z=0\) plane, then try a random straight line. You can use your browser for help.
Even more extra fun
Move the charges around (e.g., off the \(z=0\) plane) and see what happens to your graphs
Dipole fun
Repeat the above (especially the limiting cases!) for four point charges in which half are positive and half negative, with the positive charges neighbors.
Common visualizations for 2D slices of space include contour plots, color plots, and "3D plots". Another option (less easy) would be to visualize an equipotential surface in 3 dimensions. It is worth reminding students to consider other planes than those at \(x=0\), \(y=0\), and \(z=0\).
Quadrupole fun
Repeat the above (especially the limiting cases!) for four point charges in which half are positive and half negative, with the positive charges diagonal from one another. It will help in this case to place the charges on the axes (rotating the square by 45 degrees), since otherwise the potential on each axis will be zero.
  • electrostatic potential python
    Found in: Computational Physics Lab II course(s) Found in: Computational integrating charge distributions sequence(s)
  • The superposition principle for the electrostatic potential;
  • How to calculate the distance formula \(\frac{1}{|\vec{r} - \vec{r}'|}\) for a simple specific geometric situation;

Small White Board Question

10 min.

Electrostatic Potential Due to a Point Charge

Write the equation for the electrostatic potential due to a point charge.

Instructor's Guide

Prerequisite Knowledge

Students will usually have seen the electrostatic potential due to a point charge in their introductory course, but may have trouble recalling it.

Whole-Class Conversations

As students try to remember the formula, many will conflate potential, potential energy, force, and electric field. Their answers may have some aspects of each of these. We use this question to get the iconic equation into the students' working memory in preparation for subsequent activities. This question also be used to help student disambiguate these different physical quantities.

Correct answers you're likely to see

\[V=\frac{kq}{r}\]

\[V=\frac{1}{4\pi\epsilon_0}\frac{q}{r}\] You may want to discuss which constants to use in which contexts, e.g. \(k\) is short and easy to write, but may be conflated with other uses of \(k\) in a give problem whereas \(\frac{1}{4\pi\epsilon_0}\) assumes you are working in a particular system of units.

Incorrect answers you're likely to see

  • Two charges instead of one \[\cancel{V=\frac{kq_{1}q_{2}}{r}}\]
  • Distance squared in the denominator \[\cancel{V=\frac{kq}{r^2}}\]
  • Vector values \[\cancel{V=\frac{kq\, \hat r}{r}}\]

Possible follow-up questions to help with the disambiguation:

  • Relationship between potential and potential energy \(U = qV\)
  • Which function is the derivative of the other: \(1/r\) or \(1/r^2\)?
  • Which physical quantity (potential or electric field, potential energy or force) is the derivative of the other?
  • What is the electrostatic potential conceptually?
  • Which function falls off faster: \(1/r\) or \(1/r^2\)?
  • What are the dimensions of potential? Units?
  • Where is the zero of potential?

Wrap-up

  • This could be a good time to refer to the (correct) expression for the potential as an iconic equation, which will need to be further interpreted (”unpacked”) in particular physical situations. This is where the course is going next.
  • This SWBQ can also serve to help students learn about recall as a cognitive activity. While parts of the equations that students write may be incorrect, many other parts will be correct. Let the way in which you manage the class discussion model for the students how a professional goes about quickly disambiguating several different choices. And TELL the students that this is what you are doing. Deliberately invoke their metacognition.
  • Many students may not know that the electrostatic potential that we are talking about in this activity is the same quantity as what a voltmeter reads, in principle, but not in practice. You may need to talk about how a voltmeter actually works, rather than idealizing it. It helps to have a voltmeter with leads as a prop. Students often want to know about the “ground” lead. We often tie a long string to it (to symbolize making a really long wire) and send the TA out of the room with the string, “headed off to infinity” while discussing the importance of setting the zero of potential. The extra minute or two of humerous byplay gives the importance of the zero of potential a chance to sink in.

We use this small whiteboard question as a transition between The Distance Formula (Star Trek) activity, where students are learning about how to describe (algebraically) the geometric distance between two points, and the Electrostatic Potential Due to a Pair of Charges (with Series) activity, where students are using these results and the superposition principle to find the electrostatic potential due to two point charges.

This activity is the initial activity in the sequence Visualizing Scalar Fields addressing the representations of scalar fields in the context of electrostatics.

  • Found in: Static Fields, None course(s) Found in: Warm-Up, E&M Ring Cycle Sequence sequence(s)

Mathematica Activity

30 min.

Using Technology to Visualize Potentials
  • How to represent 3-d scalar fields in several different ways;
  • The symmetries of a some simple charge distributions such as a dipole and a quadrupole.

Small Group Activity

30 min.

Charged Sphere
Students use a plastic surface representing the potential due to a charged sphere to explore the electrostatic potential, equipotential lines, and the relationship between potential and electric field.